From fca1e294f6dce8ec5659233a6a21f5bd0ed5b4f2 Mon Sep 17 00:00:00 2001 From: Andrea Aquino Date: Tue, 29 Aug 2023 21:24:51 +0100 Subject: [PATCH] Fix parsing for expression tree, module level attrs, include on piped expressions and typed collection initializers (#57, #58, #59, #64) (#66) * Add support for module attributes * Add support for typed collection literals * Add support for expression trees * Treat include and require as keywords, allowing their use in piped expressions --- grammar.js | 24 +- src/grammar.json | 144 + src/node-types.json | 59 +- src/parser.c | 428196 ++++++++++++++++---------------- test/corpus/declarations.txt | 20 + test/corpus/expressions.txt | 123 +- test/corpus/literals.txt | 28 + 7 files changed, 218077 insertions(+), 210517 deletions(-) diff --git a/grammar.js b/grammar.js index 315b4ee..06df702 100644 --- a/grammar.js +++ b/grammar.js @@ -61,6 +61,10 @@ const rules = { 'new', 'print', 'namespace', + 'include', + 'include_once', + 'require', + 'require_once', $._primitive_type, $._collection_type, ), @@ -108,6 +112,8 @@ const rules = { choice( $._declaration, + $.module_attribute, + $.compound_statement, $.empty_statement, $.expression_statement, @@ -145,6 +151,14 @@ const rules = { $.const_declaration, ), + module_attribute: $ => seq( + '<<', + $.identifier, + ':', + com($.qualified_identifier, opt($.arguments), ','), + '>>' + ), + heredoc: $ => seq( '<<<', @@ -180,6 +194,7 @@ const rules = { $.collection, $._literal, $._variablish, + $.expression_tree, $.prefixed_string, $.parenthesized_expression, $.binary_expression, @@ -407,6 +422,11 @@ const rules = { ), ), + expression_tree: $ => seq( + field('visitor', $.identifier), + token(/`[^`]*`/), + ), + prefixed_string: $ => seq(field('prefix', $.identifier), $.string), // Types @@ -556,6 +576,7 @@ const rules = { collection: $ => seq( $.qualified_identifier, + opt($.type_arguments), '{', opt(com(choice($._expression, $.element_initializer), ',')), '}', @@ -1270,7 +1291,8 @@ module.exports = grammar({ [$.binary_expression, $.prefix_unary_expression, $.call_expression], [$._expression, $.parameter], [$._expression, $.type_specifier], - [$._expression, $.type_specifier, $.function_pointer], + [$._expression, $.collection, $.type_specifier, $.function_pointer], + [$._expression, $.collection, $.function_pointer], [$._expression, $.field_initializer], [$._expression, $.function_pointer], [$.scoped_identifier, $._type_constant], diff --git a/src/grammar.json b/src/grammar.json index 1ddd5d1..b421995 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -85,6 +85,22 @@ "type": "STRING", "value": "namespace" }, + { + "type": "STRING", + "value": "include" + }, + { + "type": "STRING", + "value": "include_once" + }, + { + "type": "STRING", + "value": "require" + }, + { + "type": "STRING", + "value": "require_once" + }, { "type": "SYMBOL", "name": "_primitive_type" @@ -266,6 +282,10 @@ "type": "SYMBOL", "name": "_declaration" }, + { + "type": "SYMBOL", + "name": "module_attribute" + }, { "type": "SYMBOL", "name": "compound_statement" @@ -389,6 +409,88 @@ } ] }, + "module_attribute": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<<" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ">>" + } + ] + }, "heredoc": { "type": "SEQ", "members": [ @@ -547,6 +649,10 @@ "type": "SYMBOL", "name": "_variablish" }, + { + "type": "SYMBOL", + "name": "expression_tree" + }, { "type": "SYMBOL", "name": "prefixed_string" @@ -1878,6 +1984,26 @@ ] } }, + "expression_tree": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "visitor", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "`[^`]*`" + } + } + ] + }, "prefixed_string": { "type": "SEQ", "members": [ @@ -3036,6 +3162,18 @@ "type": "SYMBOL", "name": "qualified_identifier" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "{" @@ -8634,9 +8772,15 @@ ], [ "_expression", + "collection", "type_specifier", "function_pointer" ], + [ + "_expression", + "collection", + "function_pointer" + ], [ "_expression", "field_initializer" diff --git a/src/node-types.json b/src/node-types.json index f33694b..cfa8ed7 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -89,6 +89,10 @@ "type": "enum_class_label", "named": true }, + { + "type": "expression_tree", + "named": true + }, { "type": "function_pointer", "named": true @@ -277,6 +281,10 @@ "type": "if_statement", "named": true }, + { + "type": "module_attribute", + "named": true + }, { "type": "return_statement", "named": true @@ -1132,6 +1140,10 @@ { "type": "element_initializer", "named": true + }, + { + "type": "type_arguments", + "named": true } ] } @@ -1567,6 +1579,22 @@ ] } }, + { + "type": "expression_tree", + "named": true, + "fields": { + "visitor": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, { "type": "extends_clause", "named": true, @@ -2325,6 +2353,29 @@ ] } }, + { + "type": "module_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + } + ] + } + }, { "type": "namespace_declaration", "named": true, @@ -4513,11 +4564,11 @@ }, { "type": "float", - "named": true + "named": false }, { "type": "float", - "named": false + "named": true }, { "type": "for", @@ -4697,11 +4748,11 @@ }, { "type": "string", - "named": false + "named": true }, { "type": "string", - "named": true + "named": false }, { "type": "super", diff --git a/src/parser.c b/src/parser.c index e4de2f4..575bd6d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6335 -#define LARGE_STATE_COUNT 1738 -#define SYMBOL_COUNT 364 +#define STATE_COUNT 6464 +#define LARGE_STATE_COUNT 1778 +#define SYMBOL_COUNT 367 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 186 +#define TOKEN_COUNT 187 #define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 29 +#define FIELD_COUNT 30 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 194 +#define PRODUCTION_ID_COUNT 195 enum { sym_identifier = 1, @@ -29,365 +29,368 @@ enum { anon_sym_new = 10, anon_sym_print = 11, anon_sym_namespace = 12, - anon_sym_BSLASH = 13, - anon_sym_COLON_COLON = 14, - anon_sym_self = 15, - anon_sym_parent = 16, - anon_sym_static = 17, - anon_sym_LT_LT_LT = 18, - anon_sym_RBRACE = 19, - anon_sym_LBRACE = 20, - anon_sym_SEMI = 21, - anon_sym_return = 22, - anon_sym_break = 23, - anon_sym_continue = 24, - anon_sym_throw = 25, - anon_sym_echo = 26, - anon_sym_COMMA = 27, - anon_sym_unset = 28, - anon_sym_LPAREN = 29, - anon_sym_RPAREN = 30, - anon_sym_concurrent = 31, - anon_sym_use = 32, - anon_sym_function = 33, - anon_sym_const = 34, - anon_sym_as = 35, - anon_sym_if = 36, - anon_sym_elseif = 37, - anon_sym_else = 38, - anon_sym_switch = 39, - anon_sym_case = 40, - anon_sym_COLON = 41, - anon_sym_default = 42, - anon_sym_foreach = 43, - anon_sym_as2 = 44, - anon_sym_EQ_GT = 45, - anon_sym_while = 46, - anon_sym_do = 47, - anon_sym_for = 48, - anon_sym_try = 49, - anon_sym_catch = 50, - anon_sym_finally = 51, - anon_sym_using = 52, - sym_float = 53, - sym_integer = 54, - anon_sym_true = 55, - anon_sym_True = 56, - anon_sym_TRUE = 57, - anon_sym_false = 58, - anon_sym_False = 59, - anon_sym_FALSE = 60, - anon_sym_null = 61, - anon_sym_Null = 62, - anon_sym_NULL = 63, - sym_string = 64, - anon_sym_AT = 65, - anon_sym_QMARK = 66, - anon_sym_TILDE = 67, - aux_sym_function_type_specifier_token1 = 68, - anon_sym_DOT_DOT_DOT = 69, - anon_sym_array = 70, - anon_sym_varray = 71, - anon_sym_darray = 72, - anon_sym_vec = 73, - anon_sym_dict = 74, - anon_sym_keyset = 75, - anon_sym_bool = 76, - anon_sym_float = 77, - anon_sym_int = 78, - anon_sym_num = 79, - anon_sym_string = 80, - anon_sym_arraykey = 81, - anon_sym_void = 82, - anon_sym_nonnull = 83, - anon_sym_mixed = 84, - anon_sym_dynamic = 85, - anon_sym_noreturn = 86, - anon_sym_nothing = 87, - anon_sym_resource = 88, - anon_sym_LT = 89, - anon_sym_GT = 90, - anon_sym_PLUS = 91, - anon_sym_DASH = 92, - anon_sym_reify = 93, - anon_sym_super = 94, - anon_sym_where = 95, - anon_sym_EQ = 96, - anon_sym_LBRACK = 97, - anon_sym_RBRACK = 98, - anon_sym_include = 99, - anon_sym_include_once = 100, - anon_sym_require = 101, - anon_sym_require_once = 102, - anon_sym_list = 103, - anon_sym_PIPE_GT = 104, - anon_sym_QMARK_QMARK = 105, - anon_sym_PIPE_PIPE = 106, - anon_sym_AMP_AMP = 107, - anon_sym_PIPE = 108, - anon_sym_CARET = 109, - anon_sym_AMP = 110, - anon_sym_EQ_EQ = 111, - anon_sym_BANG_EQ = 112, - anon_sym_EQ_EQ_EQ = 113, - anon_sym_BANG_EQ_EQ = 114, - anon_sym_LT_EQ = 115, - anon_sym_GT_EQ = 116, - anon_sym_LT_EQ_GT = 117, - anon_sym_LT_LT = 118, - anon_sym_GT_GT = 119, - anon_sym_DOT = 120, - anon_sym_STAR = 121, - anon_sym_SLASH = 122, - anon_sym_PERCENT = 123, - anon_sym_STAR_STAR = 124, - anon_sym_QMARK_COLON = 125, - anon_sym_QMARK_QMARK_EQ = 126, - anon_sym_DOT_EQ = 127, - anon_sym_PIPE_EQ = 128, - anon_sym_CARET_EQ = 129, - anon_sym_AMP_EQ = 130, - anon_sym_LT_LT_EQ = 131, - anon_sym_GT_GT_EQ = 132, - anon_sym_PLUS_EQ = 133, - anon_sym_DASH_EQ = 134, - anon_sym_STAR_EQ = 135, - anon_sym_SLASH_EQ = 136, - anon_sym_PERCENT_EQ = 137, - anon_sym_STAR_STAR_EQ = 138, - anon_sym_BANG = 139, - anon_sym_PLUS_PLUS = 140, - anon_sym_DASH_DASH = 141, - anon_sym_await = 142, - anon_sym_is = 143, - anon_sym_as3 = 144, - anon_sym_QMARKas = 145, - anon_sym_async = 146, - anon_sym_yield = 147, - anon_sym_EQ_EQ_GT = 148, - anon_sym_QMARK_DASH_GT = 149, - anon_sym_DASH_GT = 150, - anon_sym_ctx = 151, - anon_sym_trait = 152, - anon_sym_interface = 153, - anon_sym_class = 154, - anon_sym_insteadof = 155, - anon_sym_extends = 156, - anon_sym_implements = 157, - anon_sym_enum = 158, - anon_sym_abstract = 159, - anon_sym_POUND = 160, - sym_final_modifier = 161, - sym_xhp_modifier = 162, - anon_sym_public = 163, - anon_sym_protected = 164, - anon_sym_private = 165, - sym_inout_modifier = 166, - sym_xhp_identifier = 167, - sym_xhp_class_identifier = 168, - sym_xhp_category_identifier = 169, - sym_xhp_comment = 170, - sym_xhp_string = 171, - anon_sym_SLASH_GT = 172, - anon_sym_LT_SLASH = 173, - anon_sym_attribute = 174, - anon_sym_ATrequired = 175, - anon_sym_ATlateinit = 176, - sym_comment = 177, - anon_sym_children = 178, - anon_sym_category = 179, - sym__heredoc_start = 180, - sym__heredoc_start_newline = 181, - sym__heredoc_body = 182, - sym__heredoc_end_newline = 183, - sym__heredoc_end = 184, - sym__embedded_opening_brace = 185, - sym_script = 186, - sym_qualified_identifier = 187, - sym_scoped_identifier = 188, - sym_scope_identifier = 189, - sym_heredoc = 190, - sym_embedded_braced_expression = 191, - sym_braced_expression = 192, - sym__expression = 193, - sym_empty_statement = 194, - sym_expression_statement = 195, - sym_compound_statement = 196, - sym_return_statement = 197, - sym_break_statement = 198, - sym_continue_statement = 199, - sym_throw_statement = 200, - sym_echo_statement = 201, - sym_unset_statement = 202, - sym_concurrent_statement = 203, - sym_use_statement = 204, - sym_use_type = 205, - sym_use_clause = 206, - sym__namespace_identifier = 207, - sym_if_statement = 208, - sym_switch_statement = 209, - sym_switch_case = 210, - sym_switch_default = 211, - sym_foreach_statement = 212, - sym_while_statement = 213, - sym_do_statement = 214, - sym_for_statement = 215, - sym_try_statement = 216, - sym_catch_clause = 217, - sym_finally_clause = 218, - sym_using_statement = 219, - sym_true = 220, - sym_false = 221, - sym_null = 222, - sym_prefixed_string = 223, - sym_type_specifier = 224, - sym__type_modifier = 225, - sym_tuple_type_specifier = 226, - sym_function_type_specifier = 227, - sym_shape_type_specifier = 228, - sym_field_specifier = 229, - sym_type_constant = 230, - sym__type_constant = 231, - sym_type_arguments = 232, - sym_type_parameters = 233, - sym_type_parameter = 234, - sym_where_clause = 235, - sym_where_constraint = 236, - sym_array = 237, - sym_element_initializer = 238, - sym_tuple = 239, - sym_shape = 240, - sym_field_initializer = 241, - sym_collection = 242, - sym_include_expression = 243, - sym_require_expression = 244, - sym_parenthesized_expression = 245, - sym_subscript_expression = 246, - sym_list_expression = 247, - sym_binary_expression = 248, - sym_prefix_unary_expression = 249, - sym_postfix_unary_expression = 250, - sym_is_expression = 251, - sym_as_expression = 252, - sym_awaitable_expression = 253, - sym_yield_expression = 254, - sym_cast_expression = 255, - sym_ternary_expression = 256, - sym_lambda_expression = 257, - sym__single_parameter_parameters = 258, - sym__single_parameter = 259, - sym_call_expression = 260, - sym_new_expression = 261, - sym_arguments = 262, - sym_argument = 263, - sym_selection_expression = 264, - sym_alias_declaration = 265, - sym_function_declaration = 266, - sym__function_declaration_header = 267, - sym_capability_list = 268, - sym_capability = 269, - sym_parameters = 270, - sym_parameter = 271, - sym_trait_declaration = 272, - sym_interface_declaration = 273, - sym_class_declaration = 274, - sym_member_declarations = 275, - sym_trait_use_clause = 276, - sym_trait_select_clause = 277, - sym_trait_alias_clause = 278, - sym_extends_clause = 279, - sym_implements_clause = 280, - sym_require_extends_clause = 281, - sym_require_implements_clause = 282, - sym_method_declaration = 283, - sym__class_const_declaration = 284, - sym__class_const_declarator = 285, - sym_type_const_declaration = 286, - sym_context_const_declaration = 287, - sym_const_declaration = 288, - sym_const_declarator = 289, - sym_property_declaration = 290, - sym_property_declarator = 291, - sym_enum_declaration = 292, - sym_abstract_enum_class_declaration = 293, - sym_enum_class_declaration = 294, - sym_enum_class_label = 295, - sym_enumerator = 296, - sym_typed_enumerator = 297, - sym_namespace_declaration = 298, - sym__member_modifier = 299, - sym_abstract_modifier = 300, - sym_static_modifier = 301, - sym_visibility_modifier = 302, - sym_attribute_modifier = 303, - sym_variadic_modifier = 304, - sym_async_modifier = 305, - sym_await_modifier = 306, - sym_xhp_expression = 307, - sym_xhp_open = 308, - sym_xhp_open_close = 309, - sym_xhp_close = 310, - sym_xhp_attribute = 311, - sym_xhp_spread_expression = 312, - sym_xhp_attribute_declaration = 313, - sym_xhp_class_attribute = 314, - sym_xhp_enum_type = 315, - sym_function_pointer = 316, - sym_anonymous_function_expression = 317, - sym__anonymous_function_use_clause = 318, - sym_xhp_children_declaration = 319, - sym_xhp_category_declaration = 320, - sym__xhp_binary_expression = 321, - sym__xhp_postfix_unary_expression = 322, - sym__xhp_parenthesized_expression = 323, - aux_sym_script_repeat1 = 324, - aux_sym_qualified_identifier_repeat1 = 325, - aux_sym_heredoc_repeat1 = 326, - aux_sym_echo_statement_repeat1 = 327, - aux_sym_unset_statement_repeat1 = 328, - aux_sym_use_statement_repeat1 = 329, - aux_sym_if_statement_repeat1 = 330, - aux_sym_switch_statement_repeat1 = 331, - aux_sym_try_statement_repeat1 = 332, - aux_sym_type_specifier_repeat1 = 333, - aux_sym_tuple_type_specifier_repeat1 = 334, - aux_sym_function_type_specifier_repeat1 = 335, - aux_sym_shape_type_specifier_repeat1 = 336, - aux_sym_type_parameters_repeat1 = 337, - aux_sym_type_parameter_repeat1 = 338, - aux_sym_where_clause_repeat1 = 339, - aux_sym_array_repeat1 = 340, - aux_sym_shape_repeat1 = 341, - aux_sym_list_expression_repeat1 = 342, - aux_sym_arguments_repeat1 = 343, - aux_sym_capability_list_repeat1 = 344, - aux_sym_parameters_repeat1 = 345, - aux_sym_member_declarations_repeat1 = 346, - aux_sym_trait_use_clause_repeat1 = 347, - aux_sym_trait_select_clause_repeat1 = 348, - aux_sym_method_declaration_repeat1 = 349, - aux_sym__class_const_declaration_repeat1 = 350, - aux_sym_const_declaration_repeat1 = 351, - aux_sym_property_declaration_repeat1 = 352, - aux_sym_enum_declaration_repeat1 = 353, - aux_sym_abstract_enum_class_declaration_repeat1 = 354, - aux_sym_enum_class_declaration_repeat1 = 355, - aux_sym_attribute_modifier_repeat1 = 356, - aux_sym_xhp_expression_repeat1 = 357, - aux_sym_xhp_open_repeat1 = 358, - aux_sym_xhp_attribute_declaration_repeat1 = 359, - aux_sym_xhp_enum_type_repeat1 = 360, - aux_sym__anonymous_function_use_clause_repeat1 = 361, - aux_sym_xhp_children_declaration_repeat1 = 362, - aux_sym_xhp_category_declaration_repeat1 = 363, - alias_sym_array_type = 364, - alias_sym_contravariant_modifier = 365, - alias_sym_covariant_modifier = 366, - alias_sym_like_modifier = 367, - alias_sym_nullable_modifier = 368, - alias_sym_open_modifier = 369, - alias_sym_optional_modifier = 370, - alias_sym_soft_modifier = 371, + anon_sym_include = 13, + anon_sym_include_once = 14, + anon_sym_require = 15, + anon_sym_require_once = 16, + anon_sym_BSLASH = 17, + anon_sym_COLON_COLON = 18, + anon_sym_self = 19, + anon_sym_parent = 20, + anon_sym_static = 21, + anon_sym_LT_LT = 22, + anon_sym_COLON = 23, + anon_sym_COMMA = 24, + anon_sym_GT_GT = 25, + anon_sym_LT_LT_LT = 26, + anon_sym_RBRACE = 27, + anon_sym_LBRACE = 28, + anon_sym_SEMI = 29, + anon_sym_return = 30, + anon_sym_break = 31, + anon_sym_continue = 32, + anon_sym_throw = 33, + anon_sym_echo = 34, + anon_sym_unset = 35, + anon_sym_LPAREN = 36, + anon_sym_RPAREN = 37, + anon_sym_concurrent = 38, + anon_sym_use = 39, + anon_sym_function = 40, + anon_sym_const = 41, + anon_sym_as = 42, + anon_sym_if = 43, + anon_sym_elseif = 44, + anon_sym_else = 45, + anon_sym_switch = 46, + anon_sym_case = 47, + anon_sym_default = 48, + anon_sym_foreach = 49, + anon_sym_as2 = 50, + anon_sym_EQ_GT = 51, + anon_sym_while = 52, + anon_sym_do = 53, + anon_sym_for = 54, + anon_sym_try = 55, + anon_sym_catch = 56, + anon_sym_finally = 57, + anon_sym_using = 58, + sym_float = 59, + sym_integer = 60, + anon_sym_true = 61, + anon_sym_True = 62, + anon_sym_TRUE = 63, + anon_sym_false = 64, + anon_sym_False = 65, + anon_sym_FALSE = 66, + anon_sym_null = 67, + anon_sym_Null = 68, + anon_sym_NULL = 69, + sym_string = 70, + aux_sym_expression_tree_token1 = 71, + anon_sym_AT = 72, + anon_sym_QMARK = 73, + anon_sym_TILDE = 74, + aux_sym_function_type_specifier_token1 = 75, + anon_sym_DOT_DOT_DOT = 76, + anon_sym_array = 77, + anon_sym_varray = 78, + anon_sym_darray = 79, + anon_sym_vec = 80, + anon_sym_dict = 81, + anon_sym_keyset = 82, + anon_sym_bool = 83, + anon_sym_float = 84, + anon_sym_int = 85, + anon_sym_num = 86, + anon_sym_string = 87, + anon_sym_arraykey = 88, + anon_sym_void = 89, + anon_sym_nonnull = 90, + anon_sym_mixed = 91, + anon_sym_dynamic = 92, + anon_sym_noreturn = 93, + anon_sym_nothing = 94, + anon_sym_resource = 95, + anon_sym_LT = 96, + anon_sym_GT = 97, + anon_sym_PLUS = 98, + anon_sym_DASH = 99, + anon_sym_reify = 100, + anon_sym_super = 101, + anon_sym_where = 102, + anon_sym_EQ = 103, + anon_sym_LBRACK = 104, + anon_sym_RBRACK = 105, + anon_sym_list = 106, + anon_sym_PIPE_GT = 107, + anon_sym_QMARK_QMARK = 108, + anon_sym_PIPE_PIPE = 109, + anon_sym_AMP_AMP = 110, + anon_sym_PIPE = 111, + anon_sym_CARET = 112, + anon_sym_AMP = 113, + anon_sym_EQ_EQ = 114, + anon_sym_BANG_EQ = 115, + anon_sym_EQ_EQ_EQ = 116, + anon_sym_BANG_EQ_EQ = 117, + anon_sym_LT_EQ = 118, + anon_sym_GT_EQ = 119, + anon_sym_LT_EQ_GT = 120, + anon_sym_DOT = 121, + anon_sym_STAR = 122, + anon_sym_SLASH = 123, + anon_sym_PERCENT = 124, + anon_sym_STAR_STAR = 125, + anon_sym_QMARK_COLON = 126, + anon_sym_QMARK_QMARK_EQ = 127, + anon_sym_DOT_EQ = 128, + anon_sym_PIPE_EQ = 129, + anon_sym_CARET_EQ = 130, + anon_sym_AMP_EQ = 131, + anon_sym_LT_LT_EQ = 132, + anon_sym_GT_GT_EQ = 133, + anon_sym_PLUS_EQ = 134, + anon_sym_DASH_EQ = 135, + anon_sym_STAR_EQ = 136, + anon_sym_SLASH_EQ = 137, + anon_sym_PERCENT_EQ = 138, + anon_sym_STAR_STAR_EQ = 139, + anon_sym_BANG = 140, + anon_sym_PLUS_PLUS = 141, + anon_sym_DASH_DASH = 142, + anon_sym_await = 143, + anon_sym_is = 144, + anon_sym_as3 = 145, + anon_sym_QMARKas = 146, + anon_sym_async = 147, + anon_sym_yield = 148, + anon_sym_EQ_EQ_GT = 149, + anon_sym_QMARK_DASH_GT = 150, + anon_sym_DASH_GT = 151, + anon_sym_ctx = 152, + anon_sym_trait = 153, + anon_sym_interface = 154, + anon_sym_class = 155, + anon_sym_insteadof = 156, + anon_sym_extends = 157, + anon_sym_implements = 158, + anon_sym_enum = 159, + anon_sym_abstract = 160, + anon_sym_POUND = 161, + sym_final_modifier = 162, + sym_xhp_modifier = 163, + 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, }; static const char * const ts_symbol_names[] = { @@ -404,11 +407,19 @@ static const char * const ts_symbol_names[] = { [anon_sym_new] = "new", [anon_sym_print] = "print", [anon_sym_namespace] = "namespace", + [anon_sym_include] = "include", + [anon_sym_include_once] = "include_once", + [anon_sym_require] = "require", + [anon_sym_require_once] = "require_once", [anon_sym_BSLASH] = "\\", [anon_sym_COLON_COLON] = "::", [anon_sym_self] = "self", [anon_sym_parent] = "parent", [anon_sym_static] = "static", + [anon_sym_LT_LT] = "<<", + [anon_sym_COLON] = ":", + [anon_sym_COMMA] = ",", + [anon_sym_GT_GT] = ">>", [anon_sym_LT_LT_LT] = "<<<", [anon_sym_RBRACE] = "}", [anon_sym_LBRACE] = "{", @@ -418,7 +429,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_continue] = "continue", [anon_sym_throw] = "throw", [anon_sym_echo] = "echo", - [anon_sym_COMMA] = ",", [anon_sym_unset] = "unset", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", @@ -432,7 +442,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_else] = "else", [anon_sym_switch] = "switch", [anon_sym_case] = "case", - [anon_sym_COLON] = ":", [anon_sym_default] = "default", [anon_sym_foreach] = "foreach", [anon_sym_as2] = "as", @@ -456,6 +465,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_Null] = "Null", [anon_sym_NULL] = "NULL", [sym_string] = "string", + [aux_sym_expression_tree_token1] = "expression_tree_token1", [anon_sym_AT] = "@", [anon_sym_QMARK] = "\?", [anon_sym_TILDE] = "~", @@ -490,10 +500,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ] = "=", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [anon_sym_include] = "include", - [anon_sym_include_once] = "include_once", - [anon_sym_require] = "require", - [anon_sym_require_once] = "require_once", [anon_sym_list] = "list", [anon_sym_PIPE_GT] = "|>", [anon_sym_QMARK_QMARK] = "\?\?", @@ -509,8 +515,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_EQ] = "<=", [anon_sym_GT_EQ] = ">=", [anon_sym_LT_EQ_GT] = "<=>", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", [anon_sym_DOT] = ".", [anon_sym_STAR] = "*", [anon_sym_SLASH] = "/", @@ -581,6 +585,7 @@ static const char * const ts_symbol_names[] = { [sym_qualified_identifier] = "qualified_identifier", [sym_scoped_identifier] = "scoped_identifier", [sym_scope_identifier] = "scope_identifier", + [sym_module_attribute] = "module_attribute", [sym_heredoc] = "heredoc", [sym_embedded_braced_expression] = "embedded_braced_expression", [sym_braced_expression] = "braced_expression", @@ -614,6 +619,7 @@ static const char * const ts_symbol_names[] = { [sym_true] = "true", [sym_false] = "false", [sym_null] = "null", + [sym_expression_tree] = "expression_tree", [sym_prefixed_string] = "prefixed_string", [sym_type_specifier] = "type_specifier", [sym__type_modifier] = "_type_modifier", @@ -717,6 +723,7 @@ static const char * const ts_symbol_names[] = { [sym__xhp_parenthesized_expression] = "parenthesized_expression", [aux_sym_script_repeat1] = "script_repeat1", [aux_sym_qualified_identifier_repeat1] = "qualified_identifier_repeat1", + [aux_sym_module_attribute_repeat1] = "module_attribute_repeat1", [aux_sym_heredoc_repeat1] = "heredoc_repeat1", [aux_sym_echo_statement_repeat1] = "echo_statement_repeat1", [aux_sym_unset_statement_repeat1] = "unset_statement_repeat1", @@ -747,7 +754,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_enum_declaration_repeat1] = "enum_declaration_repeat1", [aux_sym_abstract_enum_class_declaration_repeat1] = "abstract_enum_class_declaration_repeat1", [aux_sym_enum_class_declaration_repeat1] = "enum_class_declaration_repeat1", - [aux_sym_attribute_modifier_repeat1] = "attribute_modifier_repeat1", [aux_sym_xhp_expression_repeat1] = "xhp_expression_repeat1", [aux_sym_xhp_open_repeat1] = "xhp_open_repeat1", [aux_sym_xhp_attribute_declaration_repeat1] = "xhp_attribute_declaration_repeat1", @@ -779,11 +785,19 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_new] = anon_sym_new, [anon_sym_print] = anon_sym_print, [anon_sym_namespace] = anon_sym_namespace, + [anon_sym_include] = anon_sym_include, + [anon_sym_include_once] = anon_sym_include_once, + [anon_sym_require] = anon_sym_require, + [anon_sym_require_once] = anon_sym_require_once, [anon_sym_BSLASH] = anon_sym_BSLASH, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_self] = anon_sym_self, [anon_sym_parent] = anon_sym_parent, [anon_sym_static] = anon_sym_static, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_LBRACE] = anon_sym_LBRACE, @@ -793,7 +807,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_continue] = anon_sym_continue, [anon_sym_throw] = anon_sym_throw, [anon_sym_echo] = anon_sym_echo, - [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_unset] = anon_sym_unset, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, @@ -807,7 +820,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_else] = anon_sym_else, [anon_sym_switch] = anon_sym_switch, [anon_sym_case] = anon_sym_case, - [anon_sym_COLON] = anon_sym_COLON, [anon_sym_default] = anon_sym_default, [anon_sym_foreach] = anon_sym_foreach, [anon_sym_as2] = anon_sym_as, @@ -831,6 +843,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_Null] = anon_sym_Null, [anon_sym_NULL] = anon_sym_NULL, [sym_string] = sym_string, + [aux_sym_expression_tree_token1] = aux_sym_expression_tree_token1, [anon_sym_AT] = anon_sym_AT, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_TILDE] = anon_sym_TILDE, @@ -865,10 +878,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ] = anon_sym_EQ, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_include] = anon_sym_include, - [anon_sym_include_once] = anon_sym_include_once, - [anon_sym_require] = anon_sym_require, - [anon_sym_require_once] = anon_sym_require_once, [anon_sym_list] = anon_sym_list, [anon_sym_PIPE_GT] = anon_sym_PIPE_GT, [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, @@ -884,8 +893,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_GT_EQ] = anon_sym_GT_EQ, [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_STAR] = anon_sym_STAR, [anon_sym_SLASH] = anon_sym_SLASH, @@ -956,6 +963,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_qualified_identifier] = sym_qualified_identifier, [sym_scoped_identifier] = sym_scoped_identifier, [sym_scope_identifier] = sym_scope_identifier, + [sym_module_attribute] = sym_module_attribute, [sym_heredoc] = sym_heredoc, [sym_embedded_braced_expression] = sym_embedded_braced_expression, [sym_braced_expression] = sym_braced_expression, @@ -989,6 +997,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_true] = sym_true, [sym_false] = sym_false, [sym_null] = sym_null, + [sym_expression_tree] = sym_expression_tree, [sym_prefixed_string] = sym_prefixed_string, [sym_type_specifier] = sym_type_specifier, [sym__type_modifier] = sym__type_modifier, @@ -1092,6 +1101,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__xhp_parenthesized_expression] = sym_parenthesized_expression, [aux_sym_script_repeat1] = aux_sym_script_repeat1, [aux_sym_qualified_identifier_repeat1] = aux_sym_qualified_identifier_repeat1, + [aux_sym_module_attribute_repeat1] = aux_sym_module_attribute_repeat1, [aux_sym_heredoc_repeat1] = aux_sym_heredoc_repeat1, [aux_sym_echo_statement_repeat1] = aux_sym_echo_statement_repeat1, [aux_sym_unset_statement_repeat1] = aux_sym_unset_statement_repeat1, @@ -1122,7 +1132,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_enum_declaration_repeat1] = aux_sym_enum_declaration_repeat1, [aux_sym_abstract_enum_class_declaration_repeat1] = aux_sym_abstract_enum_class_declaration_repeat1, [aux_sym_enum_class_declaration_repeat1] = aux_sym_enum_class_declaration_repeat1, - [aux_sym_attribute_modifier_repeat1] = aux_sym_attribute_modifier_repeat1, [aux_sym_xhp_expression_repeat1] = aux_sym_xhp_expression_repeat1, [aux_sym_xhp_open_repeat1] = aux_sym_xhp_open_repeat1, [aux_sym_xhp_attribute_declaration_repeat1] = aux_sym_xhp_attribute_declaration_repeat1, @@ -1193,6 +1202,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_include] = { + .visible = true, + .named = false, + }, + [anon_sym_include_once] = { + .visible = true, + .named = false, + }, + [anon_sym_require] = { + .visible = true, + .named = false, + }, + [anon_sym_require_once] = { + .visible = true, + .named = false, + }, [anon_sym_BSLASH] = { .visible = true, .named = false, @@ -1213,6 +1238,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, [anon_sym_LT_LT_LT] = { .visible = true, .named = false, @@ -1249,10 +1290,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, [anon_sym_unset] = { .visible = true, .named = false, @@ -1305,10 +1342,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, [anon_sym_default] = { .visible = true, .named = false, @@ -1401,6 +1434,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [aux_sym_expression_tree_token1] = { + .visible = false, + .named = false, + }, [anon_sym_AT] = { .visible = true, .named = false, @@ -1537,22 +1574,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_include] = { - .visible = true, - .named = false, - }, - [anon_sym_include_once] = { - .visible = true, - .named = false, - }, - [anon_sym_require] = { - .visible = true, - .named = false, - }, - [anon_sym_require_once] = { - .visible = true, - .named = false, - }, [anon_sym_list] = { .visible = true, .named = false, @@ -1613,14 +1634,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, [anon_sym_DOT] = { .visible = true, .named = false, @@ -1901,6 +1914,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_module_attribute] = { + .visible = true, + .named = true, + }, [sym_heredoc] = { .visible = true, .named = true, @@ -2034,6 +2051,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_expression_tree] = { + .visible = true, + .named = true, + }, [sym_prefixed_string] = { .visible = true, .named = true, @@ -2446,6 +2467,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_module_attribute_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_heredoc_repeat1] = { .visible = false, .named = false, @@ -2566,10 +2591,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_attribute_modifier_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_xhp_expression_repeat1] = { .visible = false, .named = false, @@ -2662,6 +2683,7 @@ enum { field_super = 27, field_type = 28, field_value = 29, + field_visitor = 30, }; static const char * const ts_field_names[] = { @@ -2695,194 +2717,196 @@ static const char * const ts_field_names[] = { [field_super] = "super", [field_type] = "type", [field_value] = "value", + [field_visitor] = "visitor", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 2}, - [5] = {.index = 5, .length = 1}, - [9] = {.index = 6, .length = 1}, - [10] = {.index = 7, .length = 2}, - [11] = {.index = 9, .length = 3}, - [12] = {.index = 12, .length = 1}, - [13] = {.index = 12, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 2}, + [6] = {.index = 6, .length = 1}, + [10] = {.index = 7, .length = 1}, + [11] = {.index = 8, .length = 2}, + [12] = {.index = 10, .length = 3}, + [13] = {.index = 13, .length = 1}, [14] = {.index = 13, .length = 1}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 2}, - [17] = {.index = 18, .length = 1}, - [18] = {.index = 19, .length = 2}, - [20] = {.index = 21, .length = 1}, - [21] = {.index = 22, .length = 3}, - [22] = {.index = 25, .length = 2}, - [23] = {.index = 27, .length = 2}, - [24] = {.index = 29, .length = 3}, - [25] = {.index = 32, .length = 2}, - [26] = {.index = 34, .length = 2}, - [27] = {.index = 36, .length = 2}, - [28] = {.index = 38, .length = 1}, - [29] = {.index = 39, .length = 2}, - [30] = {.index = 41, .length = 2}, - [31] = {.index = 43, .length = 1}, - [32] = {.index = 44, .length = 3}, - [33] = {.index = 44, .length = 3}, - [34] = {.index = 47, .length = 1}, - [35] = {.index = 48, .length = 4}, - [36] = {.index = 52, .length = 1}, + [15] = {.index = 14, .length = 1}, + [16] = {.index = 15, .length = 2}, + [17] = {.index = 17, .length = 2}, + [18] = {.index = 19, .length = 1}, + [19] = {.index = 20, .length = 2}, + [21] = {.index = 22, .length = 1}, + [22] = {.index = 23, .length = 3}, + [23] = {.index = 26, .length = 2}, + [24] = {.index = 28, .length = 2}, + [25] = {.index = 30, .length = 3}, + [26] = {.index = 33, .length = 2}, + [27] = {.index = 35, .length = 2}, + [28] = {.index = 37, .length = 2}, + [29] = {.index = 39, .length = 1}, + [30] = {.index = 40, .length = 2}, + [31] = {.index = 42, .length = 2}, + [32] = {.index = 44, .length = 1}, + [33] = {.index = 45, .length = 3}, + [34] = {.index = 45, .length = 3}, + [35] = {.index = 48, .length = 1}, + [36] = {.index = 49, .length = 4}, [37] = {.index = 53, .length = 1}, - [38] = {.index = 54, .length = 2}, - [39] = {.index = 56, .length = 2}, - [40] = {.index = 58, .length = 3}, - [41] = {.index = 13, .length = 1}, - [42] = {.index = 13, .length = 1}, - [44] = {.index = 61, .length = 2}, - [45] = {.index = 63, .length = 2}, - [46] = {.index = 65, .length = 3}, - [47] = {.index = 68, .length = 2}, - [48] = {.index = 70, .length = 1}, - [49] = {.index = 71, .length = 2}, - [50] = {.index = 73, .length = 2}, - [51] = {.index = 75, .length = 2}, - [52] = {.index = 77, .length = 1}, - [53] = {.index = 78, .length = 4}, - [54] = {.index = 82, .length = 4}, - [55] = {.index = 86, .length = 2}, - [56] = {.index = 0, .length = 1}, - [57] = {.index = 88, .length = 1}, - [58] = {.index = 89, .length = 2}, - [59] = {.index = 91, .length = 2}, - [60] = {.index = 93, .length = 2}, - [61] = {.index = 95, .length = 3}, - [62] = {.index = 98, .length = 2}, - [63] = {.index = 100, .length = 2}, - [64] = {.index = 102, .length = 4}, - [65] = {.index = 106, .length = 3}, - [66] = {.index = 106, .length = 3}, - [67] = {.index = 106, .length = 3}, - [68] = {.index = 38, .length = 1}, - [69] = {.index = 38, .length = 1}, - [71] = {.index = 109, .length = 3}, - [72] = {.index = 112, .length = 2}, - [73] = {.index = 114, .length = 3}, - [74] = {.index = 117, .length = 2}, - [75] = {.index = 119, .length = 2}, - [76] = {.index = 121, .length = 1}, - [78] = {.index = 122, .length = 2}, - [79] = {.index = 124, .length = 2}, - [80] = {.index = 126, .length = 2}, - [81] = {.index = 128, .length = 6}, - [82] = {.index = 134, .length = 1}, - [83] = {.index = 135, .length = 2}, - [84] = {.index = 137, .length = 3}, - [85] = {.index = 140, .length = 2}, - [86] = {.index = 142, .length = 2}, - [87] = {.index = 144, .length = 2}, - [88] = {.index = 146, .length = 2}, - [89] = {.index = 148, .length = 2}, - [90] = {.index = 150, .length = 2}, - [91] = {.index = 152, .length = 2}, - [92] = {.index = 154, .length = 3}, - [93] = {.index = 154, .length = 3}, - [94] = {.index = 154, .length = 3}, - [96] = {.index = 157, .length = 3}, - [97] = {.index = 160, .length = 3}, - [98] = {.index = 163, .length = 2}, - [99] = {.index = 165, .length = 2}, - [100] = {.index = 167, .length = 2}, - [101] = {.index = 169, .length = 2}, - [102] = {.index = 171, .length = 2}, - [103] = {.index = 173, .length = 3}, - [104] = {.index = 176, .length = 1}, - [105] = {.index = 177, .length = 3}, - [106] = {.index = 180, .length = 2}, - [107] = {.index = 182, .length = 2}, - [108] = {.index = 184, .length = 3}, - [109] = {.index = 187, .length = 2}, - [110] = {.index = 189, .length = 2}, - [111] = {.index = 191, .length = 2}, - [112] = {.index = 193, .length = 2}, - [113] = {.index = 195, .length = 2}, - [114] = {.index = 197, .length = 2}, - [115] = {.index = 199, .length = 2}, - [116] = {.index = 201, .length = 2}, - [117] = {.index = 203, .length = 2}, - [118] = {.index = 205, .length = 2}, - [119] = {.index = 207, .length = 3}, - [120] = {.index = 210, .length = 3}, - [121] = {.index = 213, .length = 2}, - [122] = {.index = 215, .length = 2}, - [123] = {.index = 217, .length = 3}, - [124] = {.index = 220, .length = 1}, - [125] = {.index = 221, .length = 3}, - [126] = {.index = 224, .length = 3}, - [127] = {.index = 227, .length = 1}, - [128] = {.index = 228, .length = 3}, - [129] = {.index = 231, .length = 4}, - [130] = {.index = 235, .length = 2}, - [131] = {.index = 237, .length = 2}, - [132] = {.index = 239, .length = 2}, - [133] = {.index = 241, .length = 2}, - [134] = {.index = 243, .length = 2}, - [135] = {.index = 245, .length = 2}, - [136] = {.index = 247, .length = 2}, - [137] = {.index = 249, .length = 1}, - [138] = {.index = 250, .length = 3}, - [139] = {.index = 253, .length = 5}, - [140] = {.index = 258, .length = 1}, - [141] = {.index = 259, .length = 3}, - [142] = {.index = 262, .length = 3}, - [143] = {.index = 265, .length = 3}, - [144] = {.index = 268, .length = 3}, - [145] = {.index = 271, .length = 2}, - [146] = {.index = 273, .length = 2}, - [147] = {.index = 275, .length = 2}, - [148] = {.index = 277, .length = 2}, - [149] = {.index = 279, .length = 4}, - [150] = {.index = 283, .length = 2}, - [151] = {.index = 285, .length = 2}, - [152] = {.index = 287, .length = 2}, - [153] = {.index = 289, .length = 1}, - [154] = {.index = 290, .length = 5}, - [155] = {.index = 295, .length = 1}, - [156] = {.index = 296, .length = 3}, - [157] = {.index = 299, .length = 3}, - [158] = {.index = 302, .length = 3}, - [159] = {.index = 305, .length = 3}, - [160] = {.index = 308, .length = 3}, - [161] = {.index = 311, .length = 3}, - [162] = {.index = 314, .length = 2}, - [163] = {.index = 316, .length = 2}, - [164] = {.index = 318, .length = 2}, - [165] = {.index = 320, .length = 1}, + [38] = {.index = 54, .length = 1}, + [39] = {.index = 55, .length = 2}, + [40] = {.index = 57, .length = 2}, + [41] = {.index = 59, .length = 3}, + [42] = {.index = 14, .length = 1}, + [43] = {.index = 14, .length = 1}, + [45] = {.index = 62, .length = 2}, + [46] = {.index = 64, .length = 2}, + [47] = {.index = 66, .length = 3}, + [48] = {.index = 69, .length = 2}, + [49] = {.index = 71, .length = 1}, + [50] = {.index = 72, .length = 2}, + [51] = {.index = 74, .length = 2}, + [52] = {.index = 76, .length = 2}, + [53] = {.index = 78, .length = 1}, + [54] = {.index = 79, .length = 4}, + [55] = {.index = 83, .length = 4}, + [56] = {.index = 87, .length = 2}, + [57] = {.index = 0, .length = 1}, + [58] = {.index = 89, .length = 1}, + [59] = {.index = 90, .length = 2}, + [60] = {.index = 92, .length = 2}, + [61] = {.index = 94, .length = 2}, + [62] = {.index = 96, .length = 3}, + [63] = {.index = 99, .length = 2}, + [64] = {.index = 101, .length = 2}, + [65] = {.index = 103, .length = 4}, + [66] = {.index = 107, .length = 3}, + [67] = {.index = 107, .length = 3}, + [68] = {.index = 107, .length = 3}, + [69] = {.index = 39, .length = 1}, + [70] = {.index = 39, .length = 1}, + [72] = {.index = 110, .length = 3}, + [73] = {.index = 113, .length = 2}, + [74] = {.index = 115, .length = 3}, + [75] = {.index = 118, .length = 2}, + [76] = {.index = 120, .length = 2}, + [77] = {.index = 122, .length = 1}, + [79] = {.index = 123, .length = 2}, + [80] = {.index = 125, .length = 2}, + [81] = {.index = 127, .length = 2}, + [82] = {.index = 129, .length = 6}, + [83] = {.index = 135, .length = 1}, + [84] = {.index = 136, .length = 2}, + [85] = {.index = 138, .length = 3}, + [86] = {.index = 141, .length = 2}, + [87] = {.index = 143, .length = 2}, + [88] = {.index = 145, .length = 2}, + [89] = {.index = 147, .length = 2}, + [90] = {.index = 149, .length = 2}, + [91] = {.index = 151, .length = 2}, + [92] = {.index = 153, .length = 2}, + [93] = {.index = 155, .length = 3}, + [94] = {.index = 155, .length = 3}, + [95] = {.index = 155, .length = 3}, + [97] = {.index = 158, .length = 3}, + [98] = {.index = 161, .length = 3}, + [99] = {.index = 164, .length = 2}, + [100] = {.index = 166, .length = 2}, + [101] = {.index = 168, .length = 2}, + [102] = {.index = 170, .length = 2}, + [103] = {.index = 172, .length = 2}, + [104] = {.index = 174, .length = 3}, + [105] = {.index = 177, .length = 1}, + [106] = {.index = 178, .length = 3}, + [107] = {.index = 181, .length = 2}, + [108] = {.index = 183, .length = 2}, + [109] = {.index = 185, .length = 3}, + [110] = {.index = 188, .length = 2}, + [111] = {.index = 190, .length = 2}, + [112] = {.index = 192, .length = 2}, + [113] = {.index = 194, .length = 2}, + [114] = {.index = 196, .length = 2}, + [115] = {.index = 198, .length = 2}, + [116] = {.index = 200, .length = 2}, + [117] = {.index = 202, .length = 2}, + [118] = {.index = 204, .length = 2}, + [119] = {.index = 206, .length = 2}, + [120] = {.index = 208, .length = 3}, + [121] = {.index = 211, .length = 3}, + [122] = {.index = 214, .length = 2}, + [123] = {.index = 216, .length = 2}, + [124] = {.index = 218, .length = 3}, + [125] = {.index = 221, .length = 1}, + [126] = {.index = 222, .length = 3}, + [127] = {.index = 225, .length = 3}, + [128] = {.index = 228, .length = 1}, + [129] = {.index = 229, .length = 3}, + [130] = {.index = 232, .length = 4}, + [131] = {.index = 236, .length = 2}, + [132] = {.index = 238, .length = 2}, + [133] = {.index = 240, .length = 2}, + [134] = {.index = 242, .length = 2}, + [135] = {.index = 244, .length = 2}, + [136] = {.index = 246, .length = 2}, + [137] = {.index = 248, .length = 2}, + [138] = {.index = 250, .length = 1}, + [139] = {.index = 251, .length = 3}, + [140] = {.index = 254, .length = 5}, + [141] = {.index = 259, .length = 1}, + [142] = {.index = 260, .length = 3}, + [143] = {.index = 263, .length = 3}, + [144] = {.index = 266, .length = 3}, + [145] = {.index = 269, .length = 3}, + [146] = {.index = 272, .length = 2}, + [147] = {.index = 274, .length = 2}, + [148] = {.index = 276, .length = 2}, + [149] = {.index = 278, .length = 2}, + [150] = {.index = 280, .length = 4}, + [151] = {.index = 284, .length = 2}, + [152] = {.index = 286, .length = 2}, + [153] = {.index = 288, .length = 2}, + [154] = {.index = 290, .length = 1}, + [155] = {.index = 291, .length = 5}, + [156] = {.index = 296, .length = 1}, + [157] = {.index = 297, .length = 3}, + [158] = {.index = 300, .length = 3}, + [159] = {.index = 303, .length = 3}, + [160] = {.index = 306, .length = 3}, + [161] = {.index = 309, .length = 3}, + [162] = {.index = 312, .length = 3}, + [163] = {.index = 315, .length = 2}, + [164] = {.index = 317, .length = 2}, + [165] = {.index = 319, .length = 2}, [166] = {.index = 321, .length = 1}, - [167] = {.index = 322, .length = 5}, - [168] = {.index = 327, .length = 5}, - [169] = {.index = 332, .length = 5}, - [170] = {.index = 337, .length = 5}, - [171] = {.index = 342, .length = 3}, - [172] = {.index = 345, .length = 3}, - [173] = {.index = 348, .length = 3}, - [174] = {.index = 351, .length = 3}, - [175] = {.index = 354, .length = 2}, - [176] = {.index = 356, .length = 1}, + [167] = {.index = 322, .length = 1}, + [168] = {.index = 323, .length = 5}, + [169] = {.index = 328, .length = 5}, + [170] = {.index = 333, .length = 5}, + [171] = {.index = 338, .length = 5}, + [172] = {.index = 343, .length = 3}, + [173] = {.index = 346, .length = 3}, + [174] = {.index = 349, .length = 3}, + [175] = {.index = 352, .length = 3}, + [176] = {.index = 355, .length = 2}, [177] = {.index = 357, .length = 1}, - [178] = {.index = 358, .length = 5}, - [179] = {.index = 363, .length = 5}, - [180] = {.index = 368, .length = 5}, - [181] = {.index = 373, .length = 5}, - [182] = {.index = 378, .length = 5}, - [183] = {.index = 383, .length = 3}, - [184] = {.index = 386, .length = 3}, - [185] = {.index = 389, .length = 1}, - [186] = {.index = 390, .length = 7}, - [187] = {.index = 397, .length = 5}, - [188] = {.index = 402, .length = 5}, - [189] = {.index = 407, .length = 1}, - [190] = {.index = 408, .length = 7}, - [191] = {.index = 415, .length = 5}, - [192] = {.index = 420, .length = 1}, + [178] = {.index = 358, .length = 1}, + [179] = {.index = 359, .length = 5}, + [180] = {.index = 364, .length = 5}, + [181] = {.index = 369, .length = 5}, + [182] = {.index = 374, .length = 5}, + [183] = {.index = 379, .length = 5}, + [184] = {.index = 384, .length = 3}, + [185] = {.index = 387, .length = 3}, + [186] = {.index = 390, .length = 1}, + [187] = {.index = 391, .length = 7}, + [188] = {.index = 398, .length = 5}, + [189] = {.index = 403, .length = 5}, + [190] = {.index = 408, .length = 1}, + [191] = {.index = 409, .length = 7}, + [192] = {.index = 416, .length = 5}, [193] = {.index = 421, .length = 1}, + [194] = {.index = 422, .length = 1}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2893,556 +2917,558 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [2] = {field_prefix, 0}, [3] = + {field_visitor, 0}, + [4] = {field_operand, 1}, {field_operator, 0}, - [5] = - {field_body, 1}, [6] = - {field_function, 0}, + {field_body, 1}, [7] = + {field_function, 0}, + [8] = {field_name, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [9] = + [10] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [12] = - {field_selection_operator, 1}, [13] = - {field_name, 1}, + {field_selection_operator, 1}, [14] = + {field_name, 1}, + [15] = {field_body, 2}, {field_name, 1}, - [16] = + [17] = {field_name, 1}, {field_type, 0}, - [18] = - {field_body, 2}, [19] = {field_body, 2}, + [20] = + {field_body, 2}, {field_condition, 1}, - [21] = - {field_enum_class, 0}, [22] = + {field_enum_class, 0}, + [23] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [25] = + [26] = {field_left, 0}, {field_right, 2}, - [27] = + [28] = {field_name, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [29] = + [30] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [32] = + [33] = {field_default_value, 2}, {field_name, 0}, - [34] = + [35] = {field_type, 1}, {field_value, 3}, - [36] = + [37] = {field_name, 2}, {field_type, 1}, - [38] = - {field_name, 2}, [39] = {field_name, 2}, + [40] = + {field_name, 2}, {field_type, 0}, - [41] = + [42] = {field_alias, 1}, {field_alias, 2}, - [43] = - {field_body, 3}, [44] = + {field_body, 3}, + [45] = {field_name, 0}, {field_value, 1}, {field_value, 2}, - [47] = - {field_type, 1}, [48] = + {field_type, 1}, + [49] = {field_body, 2}, {field_body, 3, .inherited = true}, {field_condition, 1}, {field_condition, 3, .inherited = true}, - [52] = - {field_value, 1}, [53] = - {field_type, 0, .inherited = true}, + {field_value, 1}, [54] = + {field_type, 0, .inherited = true}, + [55] = {field_body, 3}, {field_name, 1}, - [56] = + [57] = {field_body, 3}, {field_name, 2}, - [58] = + [59] = {field_constraint_operator, 1, .inherited = true}, {field_constraint_type, 1, .inherited = true}, {field_name, 0}, - [61] = + [62] = {field_default_value, 3}, {field_name, 1}, - [63] = + [64] = {field_name, 3}, {field_type, 1}, - [65] = + [66] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [68] = + [69] = {field_name, 3}, {field_type, 2}, - [70] = - {field_name, 3}, [71] = + {field_name, 3}, + [72] = {field_alias, 2}, {field_alias, 3}, - [73] = + [74] = {field_name, 1}, {field_return_type, 4}, - [75] = + [76] = {field_body, 4}, {field_return_type, 3}, - [77] = - {field_body, 4}, [78] = + {field_body, 4}, + [79] = {field_body, 2}, {field_condition, 1}, {field_else, 3}, {field_else, 4}, - [82] = + [83] = {field_body, 0, .inherited = true}, {field_body, 1, .inherited = true}, {field_condition, 0, .inherited = true}, {field_condition, 1, .inherited = true}, - [86] = + [87] = {field_body, 1}, {field_condition, 3}, - [88] = - {field_type, 0}, [89] = + {field_type, 0}, + [90] = {field_body, 4}, {field_name, 1}, - [91] = + [92] = {field_body, 4}, {field_name, 2}, - [93] = + [94] = {field_body, 4}, {field_name, 3}, - [95] = + [96] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [98] = + [99] = {field_body, 4}, {field_return_type, 2}, - [100] = + [101] = {field_constraint_operator, 0}, {field_constraint_type, 1}, - [102] = + [103] = {field_constraint_operator, 0, .inherited = true}, {field_constraint_operator, 1, .inherited = true}, {field_constraint_type, 0, .inherited = true}, {field_constraint_type, 1, .inherited = true}, - [106] = + [107] = {field_constraint_operator, 2, .inherited = true}, {field_constraint_type, 2, .inherited = true}, {field_name, 1}, - [109] = + [110] = {field_default_value, 4}, {field_name, 2}, {field_type, 1}, - [112] = + [113] = {field_default_value, 4}, {field_name, 2}, - [114] = + [115] = {field_default_value, 4}, {field_name, 2}, {field_type, 0}, - [117] = + [118] = {field_name, 4}, {field_type, 2}, - [119] = + [120] = {field_name, 4}, {field_type, 3}, - [121] = - {field_name, 4}, [122] = + {field_name, 4}, + [123] = {field_name, 1}, {field_return_type, 5}, - [124] = + [125] = {field_body, 5}, {field_return_type, 3}, - [126] = + [127] = {field_body, 5}, {field_return_type, 4}, - [128] = + [129] = {field_body, 2}, {field_body, 3, .inherited = true}, {field_condition, 1}, {field_condition, 3, .inherited = true}, {field_else, 4}, {field_else, 5}, - [134] = - {field_body, 5}, [135] = + {field_body, 5}, + [136] = {field_name, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [137] = + [138] = {field_constraint_left_type, 0}, {field_constraint_operator, 1}, {field_constraint_right_type, 2}, - [140] = + [141] = {field_body, 5}, {field_name, 1}, - [142] = + [143] = {field_name, 1}, {field_type, 3}, - [144] = + [145] = {field_body, 5}, {field_name, 2}, - [146] = + [147] = {field_body, 5}, {field_name, 3}, - [148] = + [149] = {field_body, 5}, {field_name, 4}, - [150] = + [151] = {field_name, 2}, {field_return_type, 5}, - [152] = + [153] = {field_as, 2}, {field_as, 3}, - [154] = + [155] = {field_constraint_operator, 3, .inherited = true}, {field_constraint_type, 3, .inherited = true}, {field_name, 2}, - [157] = + [158] = {field_default_value, 5}, {field_name, 3}, {field_type, 1}, - [160] = + [161] = {field_default_value, 5}, {field_name, 3}, {field_type, 2}, - [163] = + [164] = {field_default_value, 5}, {field_name, 3}, - [165] = + [166] = {field_name, 5}, {field_type, 3}, - [167] = + [168] = {field_name, 1}, {field_return_type, 6}, - [169] = + [170] = {field_body, 6}, {field_return_type, 4}, - [171] = + [172] = {field_body, 3}, {field_condition, 2}, - [173] = + [174] = {field_body, 6}, {field_collection, 2}, {field_value, 4}, - [176] = - {field_body, 6}, [177] = + {field_body, 6}, + [178] = {field_name, 2, .inherited = true}, {field_type, 1}, {field_value, 2, .inherited = true}, - [180] = + [181] = {field_default, 2}, {field_type, 0}, - [182] = + [183] = {field_name, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, - [184] = + [185] = {field_body, 3}, {field_name, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, - [187] = + [188] = {field_name, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [189] = + [190] = {field_body, 6}, {field_name, 1}, - [191] = + [192] = {field_name, 2}, {field_type, 4}, - [193] = + [194] = {field_body, 6}, {field_name, 2}, - [195] = + [196] = {field_body, 6}, {field_name, 3}, - [197] = + [198] = {field_body, 6}, {field_name, 4}, - [199] = + [200] = {field_body, 6}, {field_name, 5}, - [201] = + [202] = {field_name, 2}, {field_return_type, 6}, - [203] = + [204] = {field_body, 6}, {field_return_type, 5}, - [205] = + [206] = {field_as, 3}, {field_as, 4}, - [207] = + [208] = {field_default_value, 6}, {field_name, 4}, {field_type, 2}, - [210] = + [211] = {field_default_value, 6}, {field_name, 4}, {field_type, 3}, - [213] = + [214] = {field_default_value, 6}, {field_name, 4}, - [215] = + [216] = {field_name, 1}, {field_return_type, 7}, - [217] = + [218] = {field_body, 7}, {field_collection, 2}, {field_value, 5}, - [220] = - {field_body, 7}, [221] = + {field_body, 7}, + [222] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [224] = + [225] = {field_default, 3}, {field_name, 1}, {field_type, 0}, - [227] = - {field_type, 2}, [228] = + {field_type, 2}, + [229] = {field_name, 3, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [231] = + [232] = {field_as, 4}, {field_as, 5}, {field_name, 1}, {field_type, 3}, - [235] = + [236] = {field_name, 3}, {field_type, 5}, - [237] = + [238] = {field_body, 7}, {field_name, 2}, - [239] = + [240] = {field_body, 7}, {field_name, 3}, - [241] = + [242] = {field_body, 7}, {field_name, 4}, - [243] = + [244] = {field_body, 7}, {field_name, 5}, - [245] = + [246] = {field_body, 7}, {field_return_type, 5}, - [247] = + [248] = {field_name, 2}, {field_return_type, 7}, - [249] = - {field_return_type, 6}, [250] = + {field_return_type, 6}, + [251] = {field_default_value, 7}, {field_name, 5}, {field_type, 3}, - [253] = + [254] = {field_body, 8}, {field_collection, 2}, {field_key, 4}, {field_key, 5}, {field_value, 6}, - [258] = - {field_body, 8}, [259] = + {field_body, 8}, + [260] = {field_as, 3}, {field_as, 4}, {field_name, 2}, - [262] = + [263] = {field_name, 2}, {field_type, 3}, {field_type, 4}, - [265] = + [266] = {field_name, 2}, {field_super, 3}, {field_super, 4}, - [268] = + [269] = {field_context, 3}, {field_context, 4}, {field_name, 2}, - [271] = + [272] = {field_name, 3}, {field_type, 6}, - [273] = + [274] = {field_body, 8}, {field_name, 3}, - [275] = + [276] = {field_body, 8}, {field_name, 4}, - [277] = + [278] = {field_as, 4}, {field_as, 5}, - [279] = + [280] = {field_as, 5}, {field_as, 6}, {field_name, 2}, {field_type, 4}, - [283] = + [284] = {field_name, 4}, {field_type, 6}, - [285] = + [286] = {field_body, 8}, {field_name, 5}, - [287] = + [288] = {field_name, 2}, {field_return_type, 8}, - [289] = - {field_return_type, 7}, [290] = + {field_return_type, 7}, + [291] = {field_body, 9}, {field_collection, 2}, {field_key, 5}, {field_key, 6}, {field_value, 7}, - [295] = - {field_body, 9}, [296] = + {field_body, 9}, + [297] = {field_as, 4}, {field_as, 5}, {field_name, 2}, - [299] = + [300] = {field_name, 2}, {field_type, 4}, {field_type, 5}, - [302] = + [303] = {field_as, 4}, {field_as, 5}, {field_name, 3}, - [305] = + [306] = {field_name, 3}, {field_super, 4}, {field_super, 5}, - [308] = + [309] = {field_context, 4}, {field_context, 5}, {field_name, 3}, - [311] = + [312] = {field_name, 3}, {field_type, 4}, {field_type, 5}, - [314] = + [315] = {field_body, 9}, {field_name, 4}, - [316] = + [317] = {field_name, 4}, {field_type, 7}, - [318] = + [319] = {field_body, 9}, {field_name, 5}, - [320] = - {field_return_type, 8}, [321] = - {field_body, 10}, + {field_return_type, 8}, [322] = + {field_body, 10}, + [323] = {field_as, 3}, {field_as, 4}, {field_name, 2}, {field_type, 5}, {field_type, 6}, - [327] = + [328] = {field_as, 3}, {field_as, 4}, {field_context, 5}, {field_context, 6}, {field_name, 2}, - [332] = + [333] = {field_as, 5}, {field_as, 6}, {field_name, 2}, {field_super, 3}, {field_super, 4}, - [337] = + [338] = {field_context, 5}, {field_context, 6}, {field_name, 2}, {field_super, 3}, {field_super, 4}, - [342] = + [343] = {field_as, 5}, {field_as, 6}, {field_name, 3}, - [345] = + [346] = {field_name, 3}, {field_type, 5}, {field_type, 6}, - [348] = + [349] = {field_as, 5}, {field_as, 6}, {field_name, 4}, - [351] = + [352] = {field_name, 4}, {field_type, 5}, {field_type, 6}, - [354] = + [355] = {field_body, 10}, {field_name, 5}, - [356] = - {field_return_type, 9}, [357] = - {field_body, 11}, + {field_return_type, 9}, [358] = + {field_body, 11}, + [359] = {field_as, 4}, {field_as, 5}, {field_name, 2}, {field_type, 6}, {field_type, 7}, - [363] = + [364] = {field_as, 4}, {field_as, 5}, {field_context, 6}, {field_context, 7}, {field_name, 3}, - [368] = + [369] = {field_as, 6}, {field_as, 7}, {field_name, 3}, {field_super, 4}, {field_super, 5}, - [373] = + [374] = {field_context, 6}, {field_context, 7}, {field_name, 3}, {field_super, 4}, {field_super, 5}, - [378] = + [379] = {field_as, 4}, {field_as, 5}, {field_name, 3}, {field_type, 6}, {field_type, 7}, - [383] = + [384] = {field_as, 6}, {field_as, 7}, {field_name, 4}, - [386] = + [387] = {field_name, 4}, {field_type, 6}, {field_type, 7}, - [389] = - {field_return_type, 10}, [390] = + {field_return_type, 10}, + [391] = {field_as, 5}, {field_as, 6}, {field_context, 7}, @@ -3450,21 +3476,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_super, 3}, {field_super, 4}, - [397] = + [398] = {field_as, 5}, {field_as, 6}, {field_name, 3}, {field_type, 7}, {field_type, 8}, - [402] = + [403] = {field_as, 5}, {field_as, 6}, {field_name, 4}, {field_type, 7}, {field_type, 8}, - [407] = - {field_return_type, 11}, [408] = + {field_return_type, 11}, + [409] = {field_as, 6}, {field_as, 7}, {field_context, 8}, @@ -3472,75 +3498,75 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 3}, {field_super, 4}, {field_super, 5}, - [415] = + [416] = {field_as, 6}, {field_as, 7}, {field_name, 4}, {field_type, 8}, {field_type, 9}, - [420] = - {field_return_type, 12}, [421] = + {field_return_type, 12}, + [422] = {field_return_type, 13}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [6] = { + [7] = { [0] = alias_sym_soft_modifier, }, - [7] = { + [8] = { [0] = alias_sym_nullable_modifier, }, - [8] = { + [9] = { [0] = alias_sym_like_modifier, }, - [13] = { + [14] = { [2] = sym_identifier, }, - [19] = { + [20] = { [0] = alias_sym_array_type, }, - [33] = { + [34] = { [0] = sym_identifier, }, - [41] = { + [42] = { [0] = alias_sym_covariant_modifier, }, - [42] = { + [43] = { [0] = alias_sym_contravariant_modifier, }, - [43] = { + [44] = { [2] = alias_sym_open_modifier, }, - [56] = { + [57] = { [0] = sym_identifier, }, - [65] = { + [66] = { [0] = alias_sym_covariant_modifier, }, - [66] = { + [67] = { [0] = alias_sym_contravariant_modifier, }, - [68] = { + [69] = { [1] = alias_sym_covariant_modifier, }, - [69] = { + [70] = { [1] = alias_sym_contravariant_modifier, }, - [70] = { + [71] = { [1] = alias_sym_open_modifier, }, - [77] = { + [78] = { [3] = alias_sym_open_modifier, }, - [92] = { + [93] = { [1] = alias_sym_covariant_modifier, }, - [93] = { + [94] = { [1] = alias_sym_contravariant_modifier, }, - [95] = { + [96] = { [0] = alias_sym_optional_modifier, }, }; @@ -3559,517 +3585,517 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 7, - [9] = 2, + [9] = 7, [10] = 10, [11] = 10, [12] = 7, [13] = 10, - [14] = 10, - [15] = 7, - [16] = 10, + [14] = 7, + [15] = 10, + [16] = 7, [17] = 10, [18] = 7, [19] = 10, [20] = 10, - [21] = 10, - [22] = 7, + [21] = 7, + [22] = 10, [23] = 23, - [24] = 2, + [24] = 10, [25] = 10, [26] = 7, - [27] = 7, - [28] = 10, + [27] = 10, + [28] = 7, [29] = 7, [30] = 10, - [31] = 7, - [32] = 10, - [33] = 7, - [34] = 10, + [31] = 10, + [32] = 7, + [33] = 10, + [34] = 7, [35] = 7, - [36] = 7, - [37] = 7, + [36] = 10, + [37] = 2, [38] = 38, - [39] = 7, + [39] = 2, [40] = 40, - [41] = 10, + [41] = 7, [42] = 42, - [43] = 42, + [43] = 43, [44] = 44, [45] = 45, [46] = 46, - [47] = 47, + [47] = 44, [48] = 48, [49] = 49, [50] = 50, - [51] = 51, + [51] = 43, [52] = 52, - [53] = 50, - [54] = 46, - [55] = 55, + [53] = 46, + [54] = 54, + [55] = 42, [56] = 56, [57] = 57, - [58] = 45, - [59] = 42, + [58] = 58, + [59] = 59, [60] = 60, - [61] = 57, - [62] = 49, - [63] = 63, - [64] = 48, - [65] = 63, - [66] = 52, - [67] = 47, - [68] = 55, - [69] = 56, - [70] = 49, - [71] = 42, - [72] = 57, - [73] = 46, - [74] = 47, - [75] = 75, - [76] = 56, - [77] = 75, - [78] = 78, - [79] = 44, - [80] = 80, - [81] = 55, - [82] = 63, - [83] = 80, - [84] = 75, - [85] = 85, - [86] = 49, - [87] = 85, - [88] = 52, - [89] = 75, - [90] = 51, - [91] = 44, - [92] = 46, - [93] = 49, - [94] = 63, - [95] = 42, - [96] = 57, - [97] = 51, - [98] = 85, - [99] = 51, - [100] = 80, - [101] = 44, - [102] = 52, - [103] = 56, - [104] = 50, - [105] = 50, - [106] = 57, - [107] = 55, - [108] = 45, - [109] = 78, - [110] = 42, - [111] = 60, - [112] = 60, - [113] = 52, - [114] = 50, - [115] = 80, - [116] = 45, - [117] = 85, - [118] = 51, - [119] = 46, - [120] = 50, - [121] = 56, - [122] = 63, - [123] = 63, - [124] = 47, - [125] = 47, - [126] = 55, - [127] = 47, + [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] = 49, - [130] = 52, - [131] = 78, - [132] = 57, - [133] = 42, - [134] = 75, - [135] = 44, - [136] = 55, - [137] = 60, - [138] = 52, - [139] = 46, - [140] = 48, - [141] = 49, - [142] = 63, - [143] = 47, - [144] = 45, - [145] = 55, - [146] = 80, - [147] = 57, - [148] = 80, - [149] = 45, - [150] = 46, - [151] = 60, - [152] = 85, - [153] = 56, - [154] = 51, - [155] = 50, - [156] = 57, - [157] = 56, - [158] = 44, - [159] = 51, - [160] = 55, - [161] = 52, - [162] = 51, - [163] = 75, - [164] = 50, - [165] = 75, - [166] = 45, - [167] = 44, - [168] = 48, - [169] = 80, - [170] = 44, - [171] = 46, - [172] = 60, - [173] = 47, - [174] = 85, - [175] = 45, - [176] = 78, - [177] = 60, - [178] = 85, - [179] = 75, - [180] = 42, - [181] = 85, - [182] = 49, - [183] = 63, - [184] = 60, + [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] = 185, - [189] = 186, - [190] = 187, - [191] = 186, - [192] = 185, - [193] = 187, - [194] = 194, - [195] = 195, - [196] = 196, - [197] = 196, - [198] = 198, - [199] = 198, - [200] = 194, - [201] = 198, - [202] = 198, - [203] = 196, - [204] = 196, - [205] = 195, - [206] = 196, - [207] = 196, - [208] = 195, - [209] = 194, - [210] = 196, - [211] = 198, - [212] = 194, - [213] = 198, - [214] = 198, - [215] = 194, - [216] = 195, - [217] = 217, - [218] = 217, - [219] = 217, - [220] = 217, - [221] = 221, - [222] = 221, - [223] = 221, - [224] = 224, - [225] = 225, - [226] = 225, - [227] = 224, - [228] = 225, - [229] = 224, - [230] = 225, - [231] = 224, + [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] = 233, - [234] = 234, - [235] = 234, - [236] = 234, - [237] = 233, + [233] = 230, + [234] = 232, + [235] = 232, + [236] = 232, + [237] = 230, [238] = 238, - [239] = 234, - [240] = 238, - [241] = 232, - [242] = 232, - [243] = 232, - [244] = 233, - [245] = 234, - [246] = 233, - [247] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 238, + [243] = 240, + [244] = 240, + [245] = 241, + [246] = 238, + [247] = 239, [248] = 238, - [249] = 249, - [250] = 249, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, + [249] = 241, + [250] = 239, + [251] = 239, + [252] = 241, + [253] = 240, + [254] = 241, [255] = 255, [256] = 256, [257] = 257, [258] = 258, - [259] = 256, - [260] = 252, - [261] = 254, - [262] = 252, - [263] = 257, - [264] = 249, - [265] = 249, - [266] = 253, - [267] = 257, - [268] = 253, - [269] = 255, - [270] = 253, - [271] = 251, - [272] = 255, - [273] = 251, - [274] = 257, - [275] = 258, - [276] = 249, + [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] = 252, - [279] = 255, - [280] = 254, - [281] = 251, - [282] = 256, - [283] = 254, - [284] = 252, - [285] = 256, - [286] = 249, - [287] = 256, - [288] = 252, + [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] = 251, - [291] = 254, - [292] = 258, - [293] = 254, - [294] = 251, - [295] = 255, - [296] = 258, - [297] = 258, - [298] = 258, - [299] = 253, - [300] = 253, - [301] = 257, - [302] = 257, - [303] = 257, - [304] = 253, - [305] = 255, - [306] = 251, - [307] = 307, - [308] = 258, - [309] = 249, - [310] = 256, - [311] = 252, - [312] = 254, - [313] = 313, - [314] = 314, - [315] = 314, - [316] = 316, - [317] = 317, - [318] = 317, + [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] = 320, + [320] = 319, [321] = 321, [322] = 322, - [323] = 319, - [324] = 319, + [323] = 323, + [324] = 324, [325] = 325, - [326] = 317, - [327] = 325, - [328] = 328, + [326] = 326, + [327] = 327, + [328] = 325, [329] = 329, [330] = 330, - [331] = 319, - [332] = 316, - [333] = 321, - [334] = 325, + [331] = 331, + [332] = 322, + [333] = 333, + [334] = 334, [335] = 335, - [336] = 325, - [337] = 335, - [338] = 335, - [339] = 339, - [340] = 339, + [336] = 336, + [337] = 337, + [338] = 322, + [339] = 333, + [340] = 340, [341] = 322, - [342] = 320, - [343] = 339, - [344] = 317, - [345] = 345, + [342] = 342, + [343] = 334, + [344] = 333, + [345] = 337, [346] = 346, - [347] = 321, - [348] = 330, - [349] = 321, + [347] = 334, + [348] = 337, + [349] = 346, [350] = 350, - [351] = 322, - [352] = 320, - [353] = 328, - [354] = 354, - [355] = 329, - [356] = 356, - [357] = 357, - [358] = 322, - [359] = 359, - [360] = 345, - [361] = 361, - [362] = 346, - [363] = 320, - [364] = 357, - [365] = 339, - [366] = 335, - [367] = 350, - [368] = 356, - [369] = 361, - [370] = 354, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 372, - [380] = 371, + [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] = 375, - [384] = 373, + [383] = 383, + [384] = 384, [385] = 385, - [386] = 386, - [387] = 375, + [386] = 383, + [387] = 387, [388] = 388, - [389] = 378, - [390] = 372, + [389] = 389, + [390] = 390, [391] = 391, - [392] = 392, - [393] = 393, - [394] = 372, + [392] = 384, + [393] = 390, + [394] = 394, [395] = 395, - [396] = 395, - [397] = 397, + [396] = 396, + [397] = 391, [398] = 398, - [399] = 373, - [400] = 395, - [401] = 386, - [402] = 397, - [403] = 393, - [404] = 397, - [405] = 385, - [406] = 375, - [407] = 407, - [408] = 377, - [409] = 376, - [410] = 374, - [411] = 381, - [412] = 373, - [413] = 413, - [414] = 385, - [415] = 395, - [416] = 373, - [417] = 386, - [418] = 392, - [419] = 407, - [420] = 395, - [421] = 378, - [422] = 371, - [423] = 381, - [424] = 381, - [425] = 395, - [426] = 385, - [427] = 373, - [428] = 397, - [429] = 407, + [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] = 397, - [432] = 393, - [433] = 393, - [434] = 407, - [435] = 381, - [436] = 393, - [437] = 382, - [438] = 374, - [439] = 371, - [440] = 413, - [441] = 377, - [442] = 372, - [443] = 376, - [444] = 374, - [445] = 376, - [446] = 377, - [447] = 371, - [448] = 385, - [449] = 371, - [450] = 407, - [451] = 373, - [452] = 377, - [453] = 381, - [454] = 372, - [455] = 375, - [456] = 378, - [457] = 372, - [458] = 458, - [459] = 407, - [460] = 388, - [461] = 376, - [462] = 382, - [463] = 374, - [464] = 393, - [465] = 385, - [466] = 386, - [467] = 407, - [468] = 386, - [469] = 397, - [470] = 381, - [471] = 395, - [472] = 382, - [473] = 473, - [474] = 375, - [475] = 375, - [476] = 395, - [477] = 386, - [478] = 372, - [479] = 378, - [480] = 371, - [481] = 397, - [482] = 381, - [483] = 397, - [484] = 407, - [485] = 385, - [486] = 378, - [487] = 378, - [488] = 386, - [489] = 377, - [490] = 398, - [491] = 376, - [492] = 374, - [493] = 393, - [494] = 374, - [495] = 375, - [496] = 378, - [497] = 376, - [498] = 386, - [499] = 377, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, + [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] = 501, + [511] = 511, [512] = 512, [513] = 513, [514] = 514, - [515] = 515, + [515] = 513, [516] = 516, [517] = 517, [518] = 518, - [519] = 519, + [519] = 510, [520] = 520, [521] = 521, [522] = 522, @@ -4079,200 +4105,200 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [526] = 526, [527] = 527, [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, + [529] = 513, + [530] = 524, + [531] = 513, [532] = 532, - [533] = 533, + [533] = 526, [534] = 534, [535] = 535, [536] = 536, - [537] = 535, - [538] = 538, - [539] = 538, - [540] = 534, - [541] = 533, - [542] = 529, - [543] = 523, - [544] = 510, - [545] = 545, + [537] = 537, + [538] = 534, + [539] = 513, + [540] = 540, + [541] = 520, + [542] = 520, + [543] = 513, + [544] = 536, + [545] = 520, [546] = 546, - [547] = 518, - [548] = 508, - [549] = 505, - [550] = 503, - [551] = 551, - [552] = 551, - [553] = 553, - [554] = 535, - [555] = 535, - [556] = 553, - [557] = 532, - [558] = 531, - [559] = 530, - [560] = 528, - [561] = 527, - [562] = 526, - [563] = 563, - [564] = 524, - [565] = 565, - [566] = 522, - [567] = 519, - [568] = 517, - [569] = 516, - [570] = 515, - [571] = 571, - [572] = 514, - [573] = 513, - [574] = 510, + [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] = 501, - [577] = 551, - [578] = 578, - [579] = 579, - [580] = 505, - [581] = 509, - [582] = 523, - [583] = 529, - [584] = 533, - [585] = 534, - [586] = 586, - [587] = 563, - [588] = 538, - [589] = 535, - [590] = 531, - [591] = 530, - [592] = 528, - [593] = 527, - [594] = 526, - [595] = 508, - [596] = 502, - [597] = 524, - [598] = 522, - [599] = 518, - [600] = 519, - [601] = 601, - [602] = 517, - [603] = 516, - [604] = 515, - [605] = 514, - [606] = 513, - [607] = 536, - [608] = 509, - [609] = 504, - [610] = 506, - [611] = 502, - [612] = 535, - [613] = 521, - [614] = 579, - [615] = 531, - [616] = 530, - [617] = 528, - [618] = 527, - [619] = 526, - [620] = 524, - [621] = 522, - [622] = 519, - [623] = 517, - [624] = 516, - [625] = 515, - [626] = 626, - [627] = 532, - [628] = 514, - [629] = 513, - [630] = 501, - [631] = 509, - [632] = 506, - [633] = 633, - [634] = 504, - [635] = 635, - [636] = 578, - [637] = 535, - [638] = 502, - [639] = 510, - [640] = 521, - [641] = 641, + [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] = 504, - [644] = 644, - [645] = 645, - [646] = 538, - [647] = 536, - [648] = 518, - [649] = 563, - [650] = 534, - [651] = 578, - [652] = 533, - [653] = 579, - [654] = 529, - [655] = 508, - [656] = 518, - [657] = 523, - [658] = 506, - [659] = 505, - [660] = 510, - [661] = 536, - [662] = 551, - [663] = 521, - [664] = 664, - [665] = 563, - [666] = 578, - [667] = 667, - [668] = 578, - [669] = 563, - [670] = 563, - [671] = 508, + [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] = 535, - [674] = 508, - [675] = 518, - [676] = 676, - [677] = 536, - [678] = 678, - [679] = 578, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 510, - [684] = 536, - [685] = 510, - [686] = 536, - [687] = 578, - [688] = 563, - [689] = 578, - [690] = 508, - [691] = 518, - [692] = 692, - [693] = 563, - [694] = 510, - [695] = 536, - [696] = 696, + [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] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 697, - [708] = 697, - [709] = 697, - [710] = 706, - [711] = 705, - [712] = 703, + [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] = 714, - [715] = 715, - [716] = 716, + [714] = 707, + [715] = 707, + [716] = 713, [717] = 717, [718] = 718, [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, + [720] = 707, + [721] = 718, + [722] = 719, [723] = 723, [724] = 724, [725] = 725, @@ -4293,12 +4319,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [740] = 740, [741] = 741, [742] = 742, - [743] = 743, - [744] = 744, + [743] = 711, + [744] = 710, [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, + [746] = 711, + [747] = 711, + [748] = 710, [749] = 749, [750] = 750, [751] = 751, @@ -4308,9 +4334,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [755] = 755, [756] = 756, [757] = 757, - [758] = 758, - [759] = 698, - [760] = 760, + [758] = 711, + [759] = 759, + [760] = 710, [761] = 761, [762] = 762, [763] = 763, @@ -4323,25 +4349,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [770] = 770, [771] = 771, [772] = 772, - [773] = 700, - [774] = 699, - [775] = 700, - [776] = 699, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, [777] = 777, [778] = 778, - [779] = 700, + [779] = 779, [780] = 780, [781] = 781, - [782] = 699, + [782] = 782, [783] = 783, - [784] = 702, - [785] = 700, - [786] = 699, + [784] = 784, + [785] = 785, + [786] = 786, [787] = 787, [788] = 788, [789] = 789, [790] = 790, - [791] = 702, + [791] = 791, [792] = 792, [793] = 793, [794] = 794, @@ -4349,7 +4375,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [796] = 796, [797] = 797, [798] = 798, - [799] = 799, + [799] = 708, [800] = 800, [801] = 801, [802] = 802, @@ -4369,8 +4395,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [816] = 816, [817] = 817, [818] = 818, - [819] = 698, - [820] = 820, + [819] = 819, + [820] = 709, [821] = 821, [822] = 822, [823] = 823, @@ -4382,19 +4408,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [829] = 829, [830] = 830, [831] = 831, - [832] = 702, + [832] = 832, [833] = 833, - [834] = 701, + [834] = 834, [835] = 835, [836] = 836, [837] = 837, [838] = 838, - [839] = 839, - [840] = 701, + [839] = 710, + [840] = 840, [841] = 841, [842] = 842, [843] = 843, - [844] = 701, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, @@ -4413,18 +4439,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [860] = 860, [861] = 861, [862] = 862, - [863] = 863, - [864] = 864, + [863] = 708, + [864] = 709, [865] = 865, - [866] = 866, + [866] = 712, [867] = 867, [868] = 868, [869] = 869, [870] = 870, - [871] = 871, + [871] = 708, [872] = 872, [873] = 873, - [874] = 698, + [874] = 709, [875] = 875, [876] = 876, [877] = 877, @@ -4439,974 +4465,974 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [886] = 886, [887] = 887, [888] = 888, - [889] = 703, - [890] = 703, - [891] = 704, - [892] = 705, - [893] = 706, - [894] = 704, - [895] = 706, - [896] = 697, - [897] = 705, - [898] = 706, - [899] = 705, - [900] = 703, - [901] = 706, - [902] = 705, - [903] = 703, - [904] = 697, - [905] = 859, - [906] = 739, - [907] = 799, - [908] = 798, - [909] = 795, - [910] = 793, - [911] = 783, - [912] = 755, - [913] = 778, - [914] = 777, - [915] = 766, - [916] = 758, - [917] = 757, - [918] = 756, - [919] = 816, - [920] = 754, - [921] = 753, - [922] = 719, - [923] = 752, - [924] = 751, - [925] = 750, - [926] = 749, - [927] = 748, - [928] = 747, - [929] = 746, - [930] = 763, - [931] = 745, - [932] = 744, - [933] = 888, - [934] = 743, - [935] = 742, - [936] = 741, - [937] = 740, - [938] = 739, - [939] = 738, - [940] = 737, - [941] = 736, - [942] = 886, - [943] = 735, - [944] = 734, - [945] = 733, - [946] = 732, - [947] = 731, - [948] = 730, - [949] = 729, - [950] = 846, - [951] = 728, - [952] = 727, - [953] = 726, - [954] = 725, - [955] = 724, - [956] = 723, - [957] = 722, - [958] = 721, - [959] = 720, - [960] = 719, - [961] = 718, - [962] = 771, - [963] = 717, - [964] = 761, - [965] = 716, - [966] = 869, - [967] = 700, - [968] = 715, - [969] = 869, - [970] = 715, - [971] = 761, - [972] = 771, - [973] = 846, - [974] = 886, - [975] = 888, - [976] = 700, - [977] = 763, - [978] = 867, - [979] = 861, - [980] = 716, - [981] = 882, - [982] = 852, - [983] = 842, - [984] = 717, - [985] = 839, - [986] = 831, - [987] = 768, - [988] = 827, - [989] = 760, - [990] = 699, - [991] = 812, - [992] = 780, - [993] = 718, - [994] = 853, - [995] = 788, - [996] = 789, - [997] = 790, - [998] = 792, - [999] = 794, - [1000] = 796, - [1001] = 797, - [1002] = 800, - [1003] = 802, - [1004] = 806, - [1005] = 807, - [1006] = 714, - [1007] = 809, - [1008] = 810, - [1009] = 813, - [1010] = 814, - [1011] = 815, - [1012] = 821, - [1013] = 822, - [1014] = 823, - [1015] = 824, - [1016] = 804, - [1017] = 884, - [1018] = 811, - [1019] = 817, - [1020] = 826, - [1021] = 829, - [1022] = 818, - [1023] = 830, - [1024] = 861, - [1025] = 833, - [1026] = 820, - [1027] = 835, - [1028] = 836, - [1029] = 882, - [1030] = 837, - [1031] = 838, - [1032] = 713, - [1033] = 847, - [1034] = 848, - [1035] = 825, - [1036] = 849, - [1037] = 850, - [1038] = 828, - [1039] = 841, - [1040] = 720, - [1041] = 851, - [1042] = 843, - [1043] = 845, - [1044] = 885, - [1045] = 854, - [1046] = 862, - [1047] = 864, - [1048] = 855, - [1049] = 721, - [1050] = 856, - [1051] = 722, - [1052] = 857, - [1053] = 858, - [1054] = 871, - [1055] = 860, - [1056] = 863, - [1057] = 781, - [1058] = 865, - [1059] = 787, - [1060] = 723, - [1061] = 866, - [1062] = 868, - [1063] = 870, - [1064] = 872, - [1065] = 873, - [1066] = 875, - [1067] = 772, - [1068] = 876, - [1069] = 764, - [1070] = 877, - [1071] = 878, - [1072] = 762, - [1073] = 879, - [1074] = 880, - [1075] = 770, - [1076] = 881, - [1077] = 883, - [1078] = 884, - [1079] = 767, - [1080] = 887, - [1081] = 808, - [1082] = 769, - [1083] = 805, - [1084] = 765, - [1085] = 767, - [1086] = 765, - [1087] = 770, - [1088] = 805, - [1089] = 724, - [1090] = 762, - [1091] = 764, - [1092] = 772, - [1093] = 787, - [1094] = 781, - [1095] = 871, - [1096] = 864, - [1097] = 862, - [1098] = 845, - [1099] = 769, - [1100] = 843, - [1101] = 841, - [1102] = 828, - [1103] = 825, - [1104] = 820, - [1105] = 725, - [1106] = 818, - [1107] = 817, - [1108] = 726, - [1109] = 811, - [1110] = 804, - [1111] = 801, - [1112] = 799, - [1113] = 798, - [1114] = 795, - [1115] = 793, - [1116] = 783, - [1117] = 755, - [1118] = 778, - [1119] = 777, - [1120] = 766, - [1121] = 758, - [1122] = 757, - [1123] = 756, - [1124] = 816, - [1125] = 808, - [1126] = 754, - [1127] = 753, - [1128] = 727, - [1129] = 752, - [1130] = 728, - [1131] = 751, - [1132] = 750, - [1133] = 887, - [1134] = 749, - [1135] = 748, - [1136] = 747, - [1137] = 746, - [1138] = 823, - [1139] = 883, - [1140] = 745, - [1141] = 744, - [1142] = 741, - [1143] = 881, - [1144] = 880, - [1145] = 743, - [1146] = 742, - [1147] = 741, - [1148] = 740, - [1149] = 879, - [1150] = 801, - [1151] = 878, - [1152] = 852, - [1153] = 738, - [1154] = 842, - [1155] = 737, - [1156] = 736, - [1157] = 735, - [1158] = 729, - [1159] = 734, - [1160] = 733, - [1161] = 732, - [1162] = 731, - [1163] = 877, - [1164] = 730, - [1165] = 730, - [1166] = 729, - [1167] = 876, - [1168] = 875, - [1169] = 873, - [1170] = 813, - [1171] = 872, - [1172] = 731, - [1173] = 728, - [1174] = 727, - [1175] = 726, - [1176] = 870, - [1177] = 725, - [1178] = 732, - [1179] = 868, - [1180] = 724, - [1181] = 723, - [1182] = 733, - [1183] = 722, - [1184] = 866, - [1185] = 721, - [1186] = 865, - [1187] = 734, - [1188] = 863, - [1189] = 720, - [1190] = 719, - [1191] = 718, - [1192] = 717, - [1193] = 860, - [1194] = 716, - [1195] = 859, - [1196] = 735, - [1197] = 715, - [1198] = 736, - [1199] = 869, - [1200] = 761, - [1201] = 839, - [1202] = 858, - [1203] = 771, - [1204] = 846, - [1205] = 857, - [1206] = 886, - [1207] = 888, - [1208] = 763, - [1209] = 867, - [1210] = 856, - [1211] = 855, - [1212] = 854, - [1213] = 831, - [1214] = 861, - [1215] = 882, - [1216] = 852, - [1217] = 842, - [1218] = 737, - [1219] = 839, - [1220] = 831, - [1221] = 827, - [1222] = 738, - [1223] = 827, - [1224] = 760, - [1225] = 739, - [1226] = 812, - [1227] = 740, - [1228] = 780, - [1229] = 816, - [1230] = 742, - [1231] = 743, - [1232] = 885, - [1233] = 744, - [1234] = 745, - [1235] = 851, - [1236] = 699, - [1237] = 850, - [1238] = 746, - [1239] = 849, - [1240] = 803, - [1241] = 698, - [1242] = 848, - [1243] = 747, - [1244] = 760, - [1245] = 748, - [1246] = 847, - [1247] = 749, - [1248] = 750, - [1249] = 713, - [1250] = 751, - [1251] = 838, - [1252] = 752, - [1253] = 837, - [1254] = 836, - [1255] = 835, - [1256] = 833, - [1257] = 830, - [1258] = 768, - [1259] = 829, - [1260] = 826, - [1261] = 753, - [1262] = 824, - [1263] = 700, - [1264] = 812, - [1265] = 822, - [1266] = 821, - [1267] = 754, - [1268] = 701, - [1269] = 815, - [1270] = 814, - [1271] = 814, - [1272] = 813, - [1273] = 756, - [1274] = 702, - [1275] = 757, - [1276] = 810, - [1277] = 758, - [1278] = 699, - [1279] = 700, - [1280] = 699, - [1281] = 700, - [1282] = 809, - [1283] = 766, - [1284] = 714, - [1285] = 777, - [1286] = 778, - [1287] = 755, - [1288] = 783, - [1289] = 702, - [1290] = 793, - [1291] = 795, - [1292] = 798, - [1293] = 799, - [1294] = 801, - [1295] = 804, - [1296] = 811, - [1297] = 817, - [1298] = 807, - [1299] = 818, - [1300] = 820, - [1301] = 825, - [1302] = 853, - [1303] = 806, - [1304] = 802, - [1305] = 800, - [1306] = 828, - [1307] = 788, - [1308] = 841, - [1309] = 789, - [1310] = 843, - [1311] = 701, - [1312] = 845, - [1313] = 862, - [1314] = 780, - [1315] = 864, - [1316] = 790, - [1317] = 871, - [1318] = 792, - [1319] = 781, - [1320] = 787, - [1321] = 772, - [1322] = 764, - [1323] = 762, - [1324] = 794, - [1325] = 797, - [1326] = 796, - [1327] = 797, - [1328] = 770, - [1329] = 767, - [1330] = 765, - [1331] = 805, - [1332] = 769, - [1333] = 808, - [1334] = 887, - [1335] = 884, - [1336] = 883, - [1337] = 881, - [1338] = 796, - [1339] = 880, - [1340] = 879, - [1341] = 794, - [1342] = 878, - [1343] = 877, - [1344] = 698, - [1345] = 800, - [1346] = 876, - [1347] = 792, - [1348] = 802, - [1349] = 875, - [1350] = 790, - [1351] = 789, - [1352] = 806, - [1353] = 873, - [1354] = 807, - [1355] = 872, - [1356] = 788, - [1357] = 870, - [1358] = 868, - [1359] = 866, - [1360] = 865, - [1361] = 863, - [1362] = 860, - [1363] = 859, - [1364] = 714, - [1365] = 858, - [1366] = 809, - [1367] = 857, - [1368] = 856, - [1369] = 855, - [1370] = 810, - [1371] = 854, - [1372] = 885, - [1373] = 853, - [1374] = 867, - [1375] = 851, - [1376] = 850, - [1377] = 849, - [1378] = 848, - [1379] = 847, - [1380] = 713, - [1381] = 838, - [1382] = 837, - [1383] = 836, - [1384] = 835, - [1385] = 833, - [1386] = 830, - [1387] = 829, - [1388] = 826, - [1389] = 824, - [1390] = 699, + [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] = 803, - [1393] = 822, - [1394] = 821, - [1395] = 815, - [1396] = 858, - [1397] = 848, - [1398] = 848, - [1399] = 847, - [1400] = 765, - [1401] = 713, - [1402] = 805, - [1403] = 769, - [1404] = 838, - [1405] = 837, - [1406] = 808, - [1407] = 721, - [1408] = 722, - [1409] = 723, - [1410] = 836, - [1411] = 887, - [1412] = 884, - [1413] = 883, - [1414] = 881, - [1415] = 880, - [1416] = 699, - [1417] = 760, - [1418] = 879, - [1419] = 767, - [1420] = 827, - [1421] = 772, - [1422] = 770, - [1423] = 762, - [1424] = 724, - [1425] = 764, - [1426] = 787, - [1427] = 781, - [1428] = 725, - [1429] = 871, - [1430] = 864, - [1431] = 835, - [1432] = 862, - [1433] = 845, - [1434] = 833, - [1435] = 843, - [1436] = 830, - [1437] = 849, - [1438] = 841, - [1439] = 828, - [1440] = 878, - [1441] = 825, - [1442] = 850, - [1443] = 820, - [1444] = 818, - [1445] = 817, - [1446] = 877, - [1447] = 811, - [1448] = 851, - [1449] = 804, - [1450] = 801, - [1451] = 726, - [1452] = 799, - [1453] = 798, - [1454] = 876, - [1455] = 795, - [1456] = 793, - [1457] = 783, - [1458] = 755, - [1459] = 778, + [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] = 720, - [1462] = 719, - [1463] = 718, - [1464] = 777, - [1465] = 766, - [1466] = 758, - [1467] = 727, - [1468] = 831, - [1469] = 853, - [1470] = 788, - [1471] = 728, - [1472] = 789, - [1473] = 729, - [1474] = 790, - [1475] = 829, - [1476] = 826, - [1477] = 792, - [1478] = 824, - [1479] = 794, - [1480] = 823, - [1481] = 796, - [1482] = 822, - [1483] = 821, - [1484] = 797, - [1485] = 815, - [1486] = 814, - [1487] = 800, - [1488] = 813, - [1489] = 730, - [1490] = 810, - [1491] = 731, - [1492] = 802, - [1493] = 809, - [1494] = 806, - [1495] = 807, - [1496] = 717, - [1497] = 714, - [1498] = 809, - [1499] = 810, - [1500] = 813, - [1501] = 814, - [1502] = 815, - [1503] = 716, - [1504] = 715, - [1505] = 821, - [1506] = 714, - [1507] = 807, - [1508] = 822, - [1509] = 823, - [1510] = 824, - [1511] = 826, - [1512] = 869, - [1513] = 829, - [1514] = 830, - [1515] = 833, - [1516] = 757, - [1517] = 835, - [1518] = 836, - [1519] = 837, - [1520] = 838, - [1521] = 732, - [1522] = 713, - [1523] = 847, - [1524] = 812, - [1525] = 849, - [1526] = 850, - [1527] = 761, - [1528] = 851, - [1529] = 771, - [1530] = 885, - [1531] = 854, - [1532] = 846, - [1533] = 886, - [1534] = 888, - [1535] = 855, - [1536] = 856, - [1537] = 857, - [1538] = 806, - [1539] = 802, - [1540] = 800, - [1541] = 797, - [1542] = 796, - [1543] = 794, - [1544] = 859, - [1545] = 792, - [1546] = 860, - [1547] = 700, - [1548] = 863, - [1549] = 733, - [1550] = 763, - [1551] = 865, - [1552] = 867, - [1553] = 866, - [1554] = 790, - [1555] = 868, - [1556] = 735, - [1557] = 870, - [1558] = 872, - [1559] = 873, - [1560] = 736, - [1561] = 875, - [1562] = 876, - [1563] = 756, - [1564] = 877, - [1565] = 878, - [1566] = 879, - [1567] = 880, - [1568] = 881, - [1569] = 816, - [1570] = 883, - [1571] = 884, - [1572] = 887, - [1573] = 808, - [1574] = 769, - [1575] = 805, - [1576] = 789, - [1577] = 788, - [1578] = 765, - [1579] = 885, - [1580] = 767, - [1581] = 770, - [1582] = 762, - [1583] = 853, - [1584] = 764, - [1585] = 772, - [1586] = 737, - [1587] = 787, - [1588] = 738, - [1589] = 781, - [1590] = 854, - [1591] = 871, - [1592] = 864, - [1593] = 862, - [1594] = 845, - [1595] = 861, - [1596] = 843, - [1597] = 882, + [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] = 855, - [1600] = 828, - [1601] = 825, - [1602] = 852, - [1603] = 734, - [1604] = 820, - [1605] = 818, - [1606] = 817, - [1607] = 811, - [1608] = 804, - [1609] = 801, - [1610] = 739, - [1611] = 799, - [1612] = 798, - [1613] = 795, - [1614] = 793, - [1615] = 783, - [1616] = 755, - [1617] = 778, - [1618] = 777, - [1619] = 766, - [1620] = 758, - [1621] = 757, - [1622] = 756, - [1623] = 754, - [1624] = 780, - [1625] = 816, - [1626] = 875, - [1627] = 740, - [1628] = 753, - [1629] = 860, - [1630] = 754, - [1631] = 753, - [1632] = 873, - [1633] = 752, - [1634] = 751, - [1635] = 750, - [1636] = 749, - [1637] = 748, - [1638] = 747, - [1639] = 752, - [1640] = 751, - [1641] = 746, - [1642] = 856, - [1643] = 745, - [1644] = 744, - [1645] = 872, - [1646] = 812, - [1647] = 743, - [1648] = 699, - [1649] = 760, - [1650] = 827, - [1651] = 831, - [1652] = 742, - [1653] = 857, - [1654] = 741, - [1655] = 740, - [1656] = 750, - [1657] = 749, - [1658] = 739, - [1659] = 748, - [1660] = 738, - [1661] = 737, - [1662] = 839, - [1663] = 747, - [1664] = 736, - [1665] = 842, - [1666] = 735, - [1667] = 734, - [1668] = 733, - [1669] = 732, - [1670] = 839, - [1671] = 731, - [1672] = 730, - [1673] = 729, - [1674] = 870, - [1675] = 728, - [1676] = 727, - [1677] = 726, - [1678] = 852, - [1679] = 746, - [1680] = 725, - [1681] = 724, - [1682] = 745, - [1683] = 744, - [1684] = 723, - [1685] = 722, - [1686] = 721, - [1687] = 858, - [1688] = 868, - [1689] = 743, - [1690] = 742, - [1691] = 741, - [1692] = 720, - [1693] = 719, - [1694] = 859, - [1695] = 718, - [1696] = 717, - [1697] = 716, - [1698] = 882, - [1699] = 861, - [1700] = 866, - [1701] = 863, - [1702] = 715, - [1703] = 869, - [1704] = 761, - [1705] = 771, - [1706] = 846, - [1707] = 886, - [1708] = 888, - [1709] = 865, - [1710] = 700, - [1711] = 763, - [1712] = 867, - [1713] = 842, - [1714] = 1714, - [1715] = 1715, - [1716] = 1716, - [1717] = 1716, - [1718] = 1716, - [1719] = 1716, - [1720] = 1720, - [1721] = 1720, - [1722] = 1716, - [1723] = 1720, - [1724] = 1720, - [1725] = 1720, - [1726] = 1716, - [1727] = 1720, - [1728] = 1720, - [1729] = 1716, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1738, - [1739] = 1739, - [1740] = 699, - [1741] = 1741, - [1742] = 700, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1748, - [1754] = 1730, + [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] = 1714, - [1757] = 1757, - [1758] = 1758, - [1759] = 1735, + [1756] = 1756, + [1757] = 1756, + [1758] = 1755, + [1759] = 1755, [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1741, - [1764] = 1764, - [1765] = 1730, - [1766] = 1731, - [1767] = 1767, - [1768] = 1733, - [1769] = 1769, + [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] = 1730, - [1776] = 1738, - [1777] = 1731, - [1778] = 1733, + [1775] = 1775, + [1776] = 1776, + [1777] = 1777, + [1778] = 1778, [1779] = 1779, [1780] = 1780, - [1781] = 1733, - [1782] = 1782, - [1783] = 1748, + [1781] = 710, + [1782] = 711, + [1783] = 1783, [1784] = 1784, - [1785] = 1731, + [1785] = 1785, [1786] = 1786, [1787] = 1787, - [1788] = 1788, + [1788] = 1770, [1789] = 1789, [1790] = 1790, - [1791] = 1735, + [1791] = 1791, [1792] = 1792, [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, + [1794] = 1770, + [1795] = 1786, + [1796] = 1776, [1797] = 1797, [1798] = 1798, [1799] = 1799, [1800] = 1800, [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1732, - [1806] = 1744, - [1807] = 1735, - [1808] = 1808, + [1802] = 1780, + [1803] = 1754, + [1804] = 1770, + [1805] = 1805, + [1806] = 1777, + [1807] = 1807, + [1808] = 1772, [1809] = 1809, - [1810] = 1810, - [1811] = 1811, + [1810] = 1772, + [1811] = 1786, [1812] = 1812, [1813] = 1813, - [1814] = 1734, + [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 1749, + [1817] = 1790, [1818] = 1818, [1819] = 1819, [1820] = 1820, - [1821] = 1821, - [1822] = 1745, + [1821] = 1777, + [1822] = 1822, [1823] = 1823, [1824] = 1824, [1825] = 1825, - [1826] = 1737, - [1827] = 1736, + [1826] = 1826, + [1827] = 1827, [1828] = 1828, - [1829] = 1829, + [1829] = 1773, [1830] = 1830, [1831] = 1831, [1832] = 1832, - [1833] = 1833, + [1833] = 1776, [1834] = 1834, - [1835] = 1748, - [1836] = 1758, - [1837] = 1767, - [1838] = 1762, - [1839] = 1760, - [1840] = 1748, - [1841] = 1841, - [1842] = 1770, - [1843] = 1738, - [1844] = 1761, - [1845] = 1782, - [1846] = 1748, + [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] = 1738, + [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1782, + [1851] = 1851, [1852] = 1852, - [1853] = 1793, - [1854] = 1854, + [1853] = 1853, + [1854] = 1771, [1855] = 1855, - [1856] = 1856, + [1856] = 1776, [1857] = 1857, [1858] = 1858, [1859] = 1859, @@ -5414,8 +5440,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1861] = 1861, [1862] = 1862, [1863] = 1863, - [1864] = 1744, - [1865] = 1772, + [1864] = 1789, + [1865] = 1865, [1866] = 1866, [1867] = 1867, [1868] = 1868, @@ -5425,23 +5451,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1872] = 1872, [1873] = 1873, [1874] = 1874, - [1875] = 1875, - [1876] = 1794, - [1877] = 1877, + [1875] = 1801, + [1876] = 1876, + [1877] = 1797, [1878] = 1878, - [1879] = 1879, - [1880] = 1858, - [1881] = 1816, - [1882] = 1808, - [1883] = 1801, - [1884] = 1797, - [1885] = 1858, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, + [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] = 1858, + [1891] = 1891, [1892] = 1892, [1893] = 1893, [1894] = 1894, @@ -5451,915 +5477,915 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1901, - [1902] = 1774, - [1903] = 1773, - [1904] = 1771, + [1901] = 1863, + [1902] = 1902, + [1903] = 1903, + [1904] = 1826, [1905] = 1905, [1906] = 1906, - [1907] = 1786, - [1908] = 1787, + [1907] = 1907, + [1908] = 1908, [1909] = 1909, [1910] = 1910, - [1911] = 1811, - [1912] = 1810, - [1913] = 1804, - [1914] = 1792, - [1915] = 1790, - [1916] = 1798, - [1917] = 1799, - [1918] = 1769, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1820, + [1916] = 1847, + [1917] = 1831, + [1918] = 1832, [1919] = 1919, - [1920] = 1920, - [1921] = 1921, - [1922] = 1803, + [1920] = 1861, + [1921] = 1898, + [1922] = 1922, [1923] = 1923, [1924] = 1924, - [1925] = 1802, + [1925] = 1925, [1926] = 1926, - [1927] = 1858, + [1927] = 1815, [1928] = 1928, [1929] = 1929, - [1930] = 1858, - [1931] = 1931, - [1932] = 1779, + [1930] = 1930, + [1931] = 1868, + [1932] = 1898, [1933] = 1933, - [1934] = 1934, - [1935] = 1796, - [1936] = 1823, + [1934] = 1862, + [1935] = 1935, + [1936] = 1936, [1937] = 1937, - [1938] = 1858, + [1938] = 1871, [1939] = 1939, - [1940] = 1940, - [1941] = 1821, + [1940] = 1835, + [1941] = 1941, [1942] = 1942, - [1943] = 1824, - [1944] = 1818, - [1945] = 1832, - [1946] = 1834, - [1947] = 1833, + [1943] = 1898, + [1944] = 1944, + [1945] = 1945, + [1946] = 1839, + [1947] = 1947, [1948] = 1948, - [1949] = 1739, + [1949] = 1949, [1950] = 1950, - [1951] = 1951, + [1951] = 1873, [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 1952, - [1956] = 1950, - [1957] = 1957, - [1958] = 1954, - [1959] = 1959, - [1960] = 1841, + [1953] = 1869, + [1954] = 1822, + [1955] = 1858, + [1956] = 1870, + [1957] = 1790, + [1958] = 1958, + [1959] = 1866, + [1960] = 1898, [1961] = 1961, [1962] = 1962, - [1963] = 1741, - [1964] = 1964, + [1963] = 1963, + [1964] = 1874, [1965] = 1965, [1966] = 1966, - [1967] = 1967, - [1968] = 1954, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, + [1967] = 1848, + [1968] = 1849, + [1969] = 1850, + [1970] = 1851, + [1971] = 1898, + [1972] = 1836, [1973] = 1973, - [1974] = 1974, + [1974] = 1898, [1975] = 1975, [1976] = 1976, [1977] = 1977, - [1978] = 1847, - [1979] = 1964, - [1980] = 1974, - [1981] = 1954, - [1982] = 1967, - [1983] = 1782, - [1984] = 1961, - [1985] = 1985, - [1986] = 1986, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, + [1983] = 1816, + [1984] = 1984, + [1985] = 1827, + [1986] = 1867, [1987] = 1987, - [1988] = 1975, - [1989] = 1989, - [1990] = 1990, + [1988] = 1855, + [1989] = 1857, + [1990] = 1779, [1991] = 1991, - [1992] = 1992, - [1993] = 1967, - [1994] = 1967, + [1992] = 1813, + [1993] = 1823, + [1994] = 1994, [1995] = 1995, - [1996] = 1953, + [1996] = 1996, [1997] = 1997, - [1998] = 1967, + [1998] = 1996, [1999] = 1999, - [2000] = 1971, - [2001] = 1977, + [2000] = 2000, + [2001] = 2001, [2002] = 2002, - [2003] = 1976, + [2003] = 1997, [2004] = 2004, - [2005] = 1962, - [2006] = 1985, - [2007] = 1965, - [2008] = 1987, - [2009] = 1966, - [2010] = 1999, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2005, + [2010] = 2010, [2011] = 2011, [2012] = 2012, [2013] = 2013, [2014] = 2014, - [2015] = 1959, - [2016] = 1951, + [2015] = 2015, + [2016] = 2016, [2017] = 2017, [2018] = 2018, - [2019] = 1989, - [2020] = 2017, + [2019] = 2019, + [2020] = 2020, [2021] = 2021, [2022] = 2022, - [2023] = 1969, - [2024] = 2018, - [2025] = 1986, - [2026] = 2012, - [2027] = 1782, - [2028] = 2004, - [2029] = 2013, - [2030] = 2022, - [2031] = 1954, - [2032] = 1997, - [2033] = 1954, - [2034] = 1782, - [2035] = 1967, + [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] = 1967, - [2038] = 1967, - [2039] = 1973, - [2040] = 1995, - [2041] = 1990, - [2042] = 1897, - [2043] = 1954, - [2044] = 2014, - [2045] = 2011, - [2046] = 2021, - [2047] = 1954, - [2048] = 1992, - [2049] = 1997, - [2050] = 1999, - [2051] = 2051, - [2052] = 2052, - [2053] = 2053, - [2054] = 2051, - [2055] = 2022, - [2056] = 2018, - [2057] = 1752, - [2058] = 2052, - [2059] = 1969, - [2060] = 2011, - [2061] = 1950, - [2062] = 2062, - [2063] = 1824, - [2064] = 2004, - [2065] = 1986, - [2066] = 2051, - [2067] = 2067, - [2068] = 1977, - [2069] = 1990, - [2070] = 2053, - [2071] = 1951, - [2072] = 2053, - [2073] = 2014, - [2074] = 1971, - [2075] = 1751, - [2076] = 1965, - [2077] = 1975, - [2078] = 1991, - [2079] = 1770, - [2080] = 2013, - [2081] = 2051, - [2082] = 1745, - [2083] = 2062, - [2084] = 1976, - [2085] = 2051, - [2086] = 1959, - [2087] = 1746, - [2088] = 1966, - [2089] = 2052, - [2090] = 2052, - [2091] = 2053, - [2092] = 2053, - [2093] = 2051, - [2094] = 2051, - [2095] = 1770, - [2096] = 1985, - [2097] = 1952, - [2098] = 2053, - [2099] = 2053, - [2100] = 2100, - [2101] = 2052, - [2102] = 1972, - [2103] = 2017, - [2104] = 1989, - [2105] = 1995, - [2106] = 2052, - [2107] = 1871, - [2108] = 1749, - [2109] = 1992, - [2110] = 2053, - [2111] = 2051, - [2112] = 1961, - [2113] = 1770, - [2114] = 2012, - [2115] = 1953, - [2116] = 2052, - [2117] = 2021, - [2118] = 1973, - [2119] = 2119, - [2120] = 1974, - [2121] = 1964, - [2122] = 1987, - [2123] = 2123, - [2124] = 2124, - [2125] = 1757, - [2126] = 2124, - [2127] = 2127, - [2128] = 2127, - [2129] = 2123, - [2130] = 2124, - [2131] = 2131, - [2132] = 2132, - [2133] = 2127, - [2134] = 2134, - [2135] = 2124, - [2136] = 2136, - [2137] = 2123, - [2138] = 2123, - [2139] = 1760, - [2140] = 2127, - [2141] = 2141, - [2142] = 2141, - [2143] = 1735, - [2144] = 1733, - [2145] = 1755, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 1847, - [2150] = 2131, - [2151] = 1762, - [2152] = 2127, - [2153] = 2153, - [2154] = 1758, - [2155] = 2134, - [2156] = 1731, - [2157] = 2127, - [2158] = 2158, - [2159] = 1761, - [2160] = 2124, - [2161] = 2124, - [2162] = 2131, - [2163] = 2131, - [2164] = 1841, - [2165] = 2131, - [2166] = 1767, - [2167] = 2131, - [2168] = 2146, - [2169] = 2153, - [2170] = 1741, - [2171] = 2123, - [2172] = 2127, + [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] = 2123, - [2175] = 2127, - [2176] = 2173, - [2177] = 2124, - [2178] = 1764, - [2179] = 2131, - [2180] = 2131, - [2181] = 2123, - [2182] = 1732, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, + [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] = 1821, - [2189] = 1823, + [2188] = 2188, + [2189] = 2175, [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2190, - [2195] = 2195, - [2196] = 2196, - [2197] = 1803, + [2191] = 2187, + [2192] = 2170, + [2193] = 1809, + [2194] = 2175, + [2195] = 1805, + [2196] = 1876, + [2197] = 2173, [2198] = 2198, [2199] = 2199, - [2200] = 2200, - [2201] = 2183, - [2202] = 1871, - [2203] = 2198, - [2204] = 2204, - [2205] = 2205, - [2206] = 2195, - [2207] = 2204, - [2208] = 1833, - [2209] = 2209, - [2210] = 1834, - [2211] = 1832, - [2212] = 2190, - [2213] = 1818, - [2214] = 2214, - [2215] = 2183, - [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 2196, - [2222] = 1975, - [2223] = 1793, - [2224] = 2199, - [2225] = 1802, - [2226] = 1953, - [2227] = 2186, - [2228] = 1737, - [2229] = 2229, - [2230] = 2217, - [2231] = 2216, - [2232] = 2220, - [2233] = 2220, - [2234] = 2234, - [2235] = 2234, - [2236] = 2220, - [2237] = 2196, - [2238] = 2199, - [2239] = 1897, - [2240] = 1959, - [2241] = 2214, + [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] = 2199, - [2244] = 2220, - [2245] = 2196, - [2246] = 1950, - [2247] = 2185, - [2248] = 2234, - [2249] = 2217, - [2250] = 2242, - [2251] = 2200, - [2252] = 2193, - [2253] = 1795, - [2254] = 2186, - [2255] = 2229, - [2256] = 2193, - [2257] = 1989, - [2258] = 2190, - [2259] = 2192, - [2260] = 2260, - [2261] = 2017, - [2262] = 1969, - [2263] = 2217, - [2264] = 2219, - [2265] = 1986, - [2266] = 2216, - [2267] = 2183, - [2268] = 1796, - [2269] = 2192, - [2270] = 2198, - [2271] = 2193, - [2272] = 2196, - [2273] = 2200, - [2274] = 2260, - [2275] = 2199, - [2276] = 2192, - [2277] = 2214, - [2278] = 1797, - [2279] = 1801, - [2280] = 2185, - [2281] = 1808, - [2282] = 1816, - [2283] = 2260, - [2284] = 1794, - [2285] = 2193, - [2286] = 2200, - [2287] = 2195, - [2288] = 2288, - [2289] = 1714, - [2290] = 2214, - [2291] = 2214, - [2292] = 2204, - [2293] = 2293, - [2294] = 2185, - [2295] = 2195, - [2296] = 2229, - [2297] = 1828, - [2298] = 1831, - [2299] = 1736, - [2300] = 1829, - [2301] = 1825, - [2302] = 2185, - [2303] = 1815, - [2304] = 1811, - [2305] = 2199, - [2306] = 1810, - [2307] = 2196, - [2308] = 1804, - [2309] = 2293, - [2310] = 2260, - [2311] = 1745, - [2312] = 1961, - [2313] = 2288, - [2314] = 2229, - [2315] = 2195, - [2316] = 1799, - [2317] = 2196, - [2318] = 2199, - [2319] = 1813, - [2320] = 2293, - [2321] = 2293, - [2322] = 1812, - [2323] = 1734, - [2324] = 2293, - [2325] = 1769, - [2326] = 2260, - [2327] = 1798, - [2328] = 2219, - [2329] = 1749, - [2330] = 1792, - [2331] = 2288, - [2332] = 2204, - [2333] = 1790, - [2334] = 2190, - [2335] = 2288, - [2336] = 2190, - [2337] = 2220, - [2338] = 2204, - [2339] = 2234, - [2340] = 1787, - [2341] = 1772, - [2342] = 2260, - [2343] = 1789, - [2344] = 2293, - [2345] = 2190, - [2346] = 2196, - [2347] = 1897, - [2348] = 2199, - [2349] = 1784, - [2350] = 2229, - [2351] = 1990, - [2352] = 2219, - [2353] = 2186, - [2354] = 1997, - [2355] = 2204, - [2356] = 1992, - [2357] = 2195, - [2358] = 2229, - [2359] = 2219, - [2360] = 2216, - [2361] = 2200, - [2362] = 2004, - [2363] = 2183, - [2364] = 1788, - [2365] = 1897, - [2366] = 2288, - [2367] = 2018, - [2368] = 1976, - [2369] = 2022, - [2370] = 2021, - [2371] = 2214, - [2372] = 1951, - [2373] = 1830, - [2374] = 2217, - [2375] = 1965, - [2376] = 2014, - [2377] = 2013, - [2378] = 2012, - [2379] = 2192, - [2380] = 2185, - [2381] = 2186, - [2382] = 2216, - [2383] = 1999, - [2384] = 2198, - [2385] = 2183, - [2386] = 1987, - [2387] = 2234, - [2388] = 1985, - [2389] = 1819, - [2390] = 1977, - [2391] = 2198, - [2392] = 2193, - [2393] = 1974, - [2394] = 2288, - [2395] = 1786, - [2396] = 2205, - [2397] = 2200, - [2398] = 2192, - [2399] = 1771, - [2400] = 2193, - [2401] = 1773, - [2402] = 1774, - [2403] = 1779, - [2404] = 1780, - [2405] = 1952, - [2406] = 2220, - [2407] = 2219, - [2408] = 2216, - [2409] = 2192, - [2410] = 2183, - [2411] = 1966, - [2412] = 2186, - [2413] = 2193, - [2414] = 1971, - [2415] = 1964, - [2416] = 1973, - [2417] = 1738, - [2418] = 2184, - [2419] = 2200, - [2420] = 2192, - [2421] = 2220, - [2422] = 2260, - [2423] = 1809, - [2424] = 2198, - [2425] = 2200, - [2426] = 2219, - [2427] = 2260, - [2428] = 2198, - [2429] = 2234, - [2430] = 2234, - [2431] = 2288, - [2432] = 2293, - [2433] = 1800, - [2434] = 2186, - [2435] = 2185, - [2436] = 2219, - [2437] = 2229, - [2438] = 2216, - [2439] = 2183, - [2440] = 2217, - [2441] = 1995, - [2442] = 2217, - [2443] = 2186, - [2444] = 2216, - [2445] = 2214, - [2446] = 2293, - [2447] = 2011, - [2448] = 2214, - [2449] = 2234, - [2450] = 1820, - [2451] = 2185, - [2452] = 2195, - [2453] = 2288, - [2454] = 2204, - [2455] = 2455, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 1779, - [2462] = 2462, - [2463] = 1737, - [2464] = 2464, - [2465] = 2455, - [2466] = 2460, - [2467] = 2467, - [2468] = 2468, - [2469] = 2467, - [2470] = 2462, - [2471] = 2467, - [2472] = 1736, - [2473] = 2473, - [2474] = 2474, - [2475] = 1972, - [2476] = 2476, - [2477] = 2477, - [2478] = 2464, - [2479] = 2467, - [2480] = 2455, - [2481] = 2468, - [2482] = 2482, - [2483] = 2464, - [2484] = 2484, - [2485] = 2485, - [2486] = 2467, - [2487] = 1734, - [2488] = 1736, - [2489] = 2489, - [2490] = 1734, - [2491] = 2491, - [2492] = 2492, - [2493] = 2455, - [2494] = 2462, - [2495] = 2458, - [2496] = 2496, - [2497] = 2497, - [2498] = 2498, - [2499] = 2455, - [2500] = 2496, - [2501] = 2464, - [2502] = 1972, - [2503] = 2462, - [2504] = 1732, - [2505] = 2467, - [2506] = 2460, - [2507] = 2455, - [2508] = 2468, - [2509] = 2509, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2464, - [2514] = 2468, - [2515] = 2515, - [2516] = 2462, - [2517] = 2462, - [2518] = 2460, - [2519] = 2460, - [2520] = 2455, - [2521] = 1758, - [2522] = 2468, - [2523] = 1767, - [2524] = 2455, - [2525] = 2464, - [2526] = 2468, - [2527] = 2464, - [2528] = 1737, - [2529] = 2468, + [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] = 2468, - [2532] = 2464, - [2533] = 1762, - [2534] = 1760, - [2535] = 1779, - [2536] = 1972, - [2537] = 2537, - [2538] = 2467, - [2539] = 2462, - [2540] = 2467, - [2541] = 2541, + [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] = 2460, - [2544] = 1991, - [2545] = 1761, - [2546] = 1991, - [2547] = 1732, - [2548] = 2460, - [2549] = 2462, - [2550] = 2460, - [2551] = 1991, - [2552] = 2552, - [2553] = 1878, - [2554] = 1811, - [2555] = 1810, - [2556] = 1804, - [2557] = 2557, - [2558] = 2558, - [2559] = 1857, - [2560] = 1861, - [2561] = 1866, - [2562] = 1886, - [2563] = 2563, - [2564] = 1796, - [2565] = 2552, - [2566] = 1888, - [2567] = 1769, - [2568] = 1798, - [2569] = 1889, - [2570] = 1924, - [2571] = 1892, - [2572] = 1792, - [2573] = 1933, + [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] = 1909, - [2576] = 1923, - [2577] = 2558, - [2578] = 2578, - [2579] = 1794, + [2575] = 2575, + [2576] = 2576, + [2577] = 2527, + [2578] = 2531, + [2579] = 2526, [2580] = 2580, - [2581] = 2558, + [2581] = 2531, [2582] = 2582, - [2583] = 2557, - [2584] = 2563, - [2585] = 1834, - [2586] = 2580, - [2587] = 1833, - [2588] = 1793, - [2589] = 1869, - [2590] = 1934, - [2591] = 1860, - [2592] = 1772, - [2593] = 1868, - [2594] = 2582, - [2595] = 2595, - [2596] = 1948, - [2597] = 1942, - [2598] = 1774, - [2599] = 2599, - [2600] = 1939, - [2601] = 2552, - [2602] = 1773, - [2603] = 2603, - [2604] = 2603, - [2605] = 1771, - [2606] = 1786, - [2607] = 1787, - [2608] = 1852, - [2609] = 2582, - [2610] = 1870, - [2611] = 2558, - [2612] = 1900, - [2613] = 1816, - [2614] = 1790, - [2615] = 1808, - [2616] = 1801, - [2617] = 1797, - [2618] = 1901, - [2619] = 1854, - [2620] = 2620, - [2621] = 1910, - [2622] = 1872, - [2623] = 1735, - [2624] = 1799, - [2625] = 2625, - [2626] = 1850, - [2627] = 1905, - [2628] = 2595, - [2629] = 2582, - [2630] = 1873, - [2631] = 2558, - [2632] = 1849, - [2633] = 1856, - [2634] = 1940, - [2635] = 1899, - [2636] = 1879, - [2637] = 1887, - [2638] = 1855, - [2639] = 2582, - [2640] = 2580, - [2641] = 1867, - [2642] = 1859, - [2643] = 1893, - [2644] = 2558, - [2645] = 1802, - [2646] = 2603, + [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] = 2648, - [2649] = 1898, - [2650] = 1875, - [2651] = 1874, - [2652] = 2574, - [2653] = 1926, + [2648] = 710, + [2649] = 711, + [2650] = 1867, + [2651] = 1897, + [2652] = 2652, + [2653] = 1805, [2654] = 2654, - [2655] = 1921, - [2656] = 2582, - [2657] = 2563, - [2658] = 1862, - [2659] = 2574, - [2660] = 2582, - [2661] = 1920, - [2662] = 1890, - [2663] = 1877, - [2664] = 2625, - [2665] = 1906, - [2666] = 2574, - [2667] = 2582, - [2668] = 2648, - [2669] = 2625, - [2670] = 2595, - [2671] = 2671, - [2672] = 1821, - [2673] = 1823, - [2674] = 1894, - [2675] = 1895, - [2676] = 2557, - [2677] = 1896, - [2678] = 2678, - [2679] = 2558, - [2680] = 2680, - [2681] = 1803, - [2682] = 1919, - [2683] = 1863, - [2684] = 2647, - [2685] = 2647, - [2686] = 2580, - [2687] = 2552, - [2688] = 2563, - [2689] = 2557, - [2690] = 2595, - [2691] = 2563, - [2692] = 2603, - [2693] = 2557, - [2694] = 2558, - [2695] = 699, - [2696] = 1937, - [2697] = 700, - [2698] = 1931, - [2699] = 1928, - [2700] = 2595, - [2701] = 1929, - [2702] = 2552, - [2703] = 2580, - [2704] = 2580, - [2705] = 2552, - [2706] = 2563, - [2707] = 2557, - [2708] = 2552, - [2709] = 2557, - [2710] = 1818, - [2711] = 2595, - [2712] = 2595, - [2713] = 1832, - [2714] = 2563, - [2715] = 2580, - [2716] = 2716, - [2717] = 2717, - [2718] = 2717, - [2719] = 2717, - [2720] = 1733, - [2721] = 1731, - [2722] = 2717, - [2723] = 2717, - [2724] = 2724, - [2725] = 1871, - [2726] = 2716, - [2727] = 2717, - [2728] = 1738, - [2729] = 2717, - [2730] = 2730, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2734, + [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] = 2736, - [2737] = 2737, - [2738] = 2738, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2756, - [2757] = 2757, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 2761, - [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 1741, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2770, - [2771] = 699, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, - [2780] = 2780, - [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2784, - [2785] = 2785, - [2786] = 2786, - [2787] = 2787, - [2788] = 700, - [2789] = 2789, - [2790] = 2790, - [2791] = 2791, - [2792] = 2792, - [2793] = 2793, - [2794] = 2794, - [2795] = 2767, - [2796] = 2796, - [2797] = 2797, + [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] = 2799, - [2800] = 2800, - [2801] = 2801, + [2799] = 1874, + [2800] = 1855, + [2801] = 1857, [2802] = 2802, - [2803] = 2803, - [2804] = 2804, - [2805] = 2805, - [2806] = 2806, - [2807] = 2807, - [2808] = 2808, - [2809] = 2809, + [2803] = 1813, + [2804] = 1863, + [2805] = 1858, + [2806] = 1892, + [2807] = 2798, + [2808] = 2802, + [2809] = 1848, [2810] = 2810, [2811] = 2811, [2812] = 2812, @@ -6372,3519 +6398,3648 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2819] = 2819, [2820] = 2820, [2821] = 2821, - [2822] = 2818, + [2822] = 2822, [2823] = 2823, - [2824] = 2819, + [2824] = 711, [2825] = 2825, - [2826] = 2821, + [2826] = 2826, [2827] = 2827, - [2828] = 2823, + [2828] = 2828, [2829] = 2829, - [2830] = 2825, - [2831] = 1767, - [2832] = 2818, - [2833] = 2819, - [2834] = 2820, - [2835] = 2819, - [2836] = 2821, - [2837] = 2823, - [2838] = 2825, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2819, - [2842] = 2821, - [2843] = 2817, - [2844] = 2839, - [2845] = 2823, - [2846] = 1761, - [2847] = 2817, - [2848] = 2818, - [2849] = 2820, - [2850] = 2825, - [2851] = 2820, - [2852] = 2817, - [2853] = 2817, - [2854] = 2839, - [2855] = 2820, - [2856] = 2839, - [2857] = 2820, - [2858] = 2839, + [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] = 1760, - [2861] = 2818, - [2862] = 2817, - [2863] = 2818, - [2864] = 2825, - [2865] = 2839, - [2866] = 2817, - [2867] = 2839, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, [2868] = 2868, - [2869] = 2825, - [2870] = 2820, - [2871] = 2818, - [2872] = 2825, - [2873] = 1779, - [2874] = 2823, - [2875] = 2821, - [2876] = 2819, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, [2877] = 2877, - [2878] = 2819, - [2879] = 2821, - [2880] = 2823, - [2881] = 2821, - [2882] = 2823, + [2878] = 2878, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, [2883] = 2883, [2884] = 2884, - [2885] = 1811, + [2885] = 2885, [2886] = 2886, - [2887] = 1833, - [2888] = 1834, - [2889] = 1832, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, [2890] = 2890, [2891] = 2891, [2892] = 2892, [2893] = 2893, [2894] = 2894, - [2895] = 1771, - [2896] = 2890, - [2897] = 2894, - [2898] = 1769, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2896, [2899] = 2899, - [2900] = 2893, - [2901] = 2886, - [2902] = 2890, - [2903] = 2892, - [2904] = 2891, - [2905] = 2892, - [2906] = 2899, - [2907] = 1797, - [2908] = 1818, - [2909] = 2909, - [2910] = 2893, - [2911] = 2886, - [2912] = 1772, - [2913] = 2891, - [2914] = 2890, - [2915] = 2886, - [2916] = 1823, - [2917] = 2899, - [2918] = 2893, - [2919] = 2891, - [2920] = 2892, - [2921] = 2894, - [2922] = 1798, - [2923] = 2886, - [2924] = 1821, - [2925] = 2899, - [2926] = 1799, - [2927] = 2893, - [2928] = 2884, - [2929] = 2892, - [2930] = 2890, - [2931] = 2884, - [2932] = 2932, - [2933] = 2890, - [2934] = 2934, - [2935] = 1801, - [2936] = 2890, - [2937] = 1808, - [2938] = 1792, - [2939] = 1816, - [2940] = 2884, - [2941] = 1790, - [2942] = 2893, - [2943] = 2899, - [2944] = 2884, - [2945] = 2945, - [2946] = 2892, - [2947] = 2947, - [2948] = 1810, - [2949] = 2886, - [2950] = 2884, - [2951] = 1787, - [2952] = 2891, - [2953] = 1773, - [2954] = 2899, - [2955] = 2894, - [2956] = 1802, - [2957] = 2894, - [2958] = 1774, - [2959] = 1804, - [2960] = 2894, - [2961] = 2891, - [2962] = 2899, - [2963] = 2894, - [2964] = 2884, - [2965] = 1786, - [2966] = 2892, - [2967] = 2893, - [2968] = 2891, - [2969] = 2886, - [2970] = 2970, + [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] = 2972, + [2973] = 2964, [2974] = 2974, - [2975] = 2971, - [2976] = 2970, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2971, - [2983] = 2980, - [2984] = 2972, - [2985] = 2981, - [2986] = 2980, - [2987] = 2977, - [2988] = 2979, - [2989] = 2974, - [2990] = 2979, - [2991] = 2978, - [2992] = 2992, - [2993] = 2974, - [2994] = 2970, - [2995] = 2981, - [2996] = 2996, - [2997] = 2997, - [2998] = 2977, - [2999] = 2980, - [3000] = 2979, - [3001] = 2981, - [3002] = 2978, - [3003] = 2970, + [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] = 2970, - [3006] = 2981, - [3007] = 2981, - [3008] = 2977, - [3009] = 2971, - [3010] = 2977, - [3011] = 3011, - [3012] = 2970, - [3013] = 2978, - [3014] = 2972, - [3015] = 2979, - [3016] = 3016, - [3017] = 2980, - [3018] = 2971, - [3019] = 2972, - [3020] = 2974, + [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] = 2974, - [3023] = 2977, - [3024] = 2972, - [3025] = 2974, - [3026] = 2980, - [3027] = 2979, - [3028] = 3028, - [3029] = 2978, - [3030] = 2971, - [3031] = 2978, - [3032] = 2979, - [3033] = 2970, - [3034] = 2980, - [3035] = 2971, - [3036] = 2981, - [3037] = 2974, - [3038] = 2978, - [3039] = 2977, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 3041, - [3045] = 3042, - [3046] = 3043, - [3047] = 3042, - [3048] = 3048, - [3049] = 3049, - [3050] = 3041, - [3051] = 3049, - [3052] = 3040, - [3053] = 3053, - [3054] = 3054, - [3055] = 3054, - [3056] = 3049, - [3057] = 3042, - [3058] = 3043, - [3059] = 3053, - [3060] = 3048, - [3061] = 3049, - [3062] = 3042, - [3063] = 3048, - [3064] = 3041, - [3065] = 3040, - [3066] = 3048, - [3067] = 3048, - [3068] = 3041, - [3069] = 3043, - [3070] = 3048, - [3071] = 3040, - [3072] = 3054, - [3073] = 3043, - [3074] = 3042, - [3075] = 3053, - [3076] = 3054, - [3077] = 3053, - [3078] = 3053, - [3079] = 3049, - [3080] = 3042, - [3081] = 3049, - [3082] = 3053, - [3083] = 3054, - [3084] = 3053, - [3085] = 3040, - [3086] = 3049, - [3087] = 3087, - [3088] = 3041, - [3089] = 3043, - [3090] = 3040, - [3091] = 3054, - [3092] = 3041, - [3093] = 3048, - [3094] = 3043, - [3095] = 3040, - [3096] = 3054, - [3097] = 3054, - [3098] = 3042, - [3099] = 3048, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3104, - [3105] = 3105, + [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] = 3107, - [3108] = 3108, - [3109] = 3109, + [3107] = 3106, + [3108] = 3091, + [3109] = 3094, [3110] = 3110, - [3111] = 3105, - [3112] = 3112, - [3113] = 3113, - [3114] = 3114, - [3115] = 3106, - [3116] = 3116, - [3117] = 3117, - [3118] = 3113, - [3119] = 3119, - [3120] = 3120, - [3121] = 3121, - [3122] = 3122, - [3123] = 3114, - [3124] = 3124, - [3125] = 3117, - [3126] = 3126, - [3127] = 3127, - [3128] = 3121, - [3129] = 3129, - [3130] = 3130, - [3131] = 3105, - [3132] = 3121, - [3133] = 3130, - [3134] = 3134, - [3135] = 3135, - [3136] = 3136, - [3137] = 3137, - [3138] = 3109, - [3139] = 3130, - [3140] = 3101, - [3141] = 3141, - [3142] = 3130, - [3143] = 3141, - [3144] = 3144, - [3145] = 3145, - [3146] = 3114, - [3147] = 3101, - [3148] = 3116, - [3149] = 3107, - [3150] = 3150, - [3151] = 3151, + [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] = 3102, - [3156] = 3130, - [3157] = 3144, - [3158] = 3109, - [3159] = 3114, - [3160] = 3116, + [3155] = 3155, + [3156] = 3156, + [3157] = 3157, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, [3161] = 3161, - [3162] = 3104, - [3163] = 3124, + [3162] = 3162, + [3163] = 3163, [3164] = 3164, - [3165] = 3117, - [3166] = 3119, - [3167] = 3141, - [3168] = 3164, - [3169] = 3103, + [3165] = 3153, + [3166] = 3166, + [3167] = 3167, + [3168] = 3168, + [3169] = 3157, [3170] = 3170, - [3171] = 3113, - [3172] = 3105, - [3173] = 3129, - [3174] = 3122, - [3175] = 3108, - [3176] = 3103, - [3177] = 3177, - [3178] = 3178, - [3179] = 3179, - [3180] = 3113, - [3181] = 3109, - [3182] = 3182, - [3183] = 3120, - [3184] = 3122, - [3185] = 3124, - [3186] = 3145, - [3187] = 3187, - [3188] = 3129, - [3189] = 3105, - [3190] = 3116, - [3191] = 3134, - [3192] = 3178, - [3193] = 3127, - [3194] = 3178, - [3195] = 3195, - [3196] = 3122, - [3197] = 3197, - [3198] = 3121, - [3199] = 3102, - [3200] = 3200, - [3201] = 3201, - [3202] = 3150, - [3203] = 3107, - [3204] = 3101, + [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] = 3206, - [3207] = 3127, - [3208] = 3136, - [3209] = 3126, - [3210] = 3179, - [3211] = 3108, - [3212] = 3153, - [3213] = 3116, - [3214] = 3108, + [3206] = 3175, + [3207] = 3162, + [3208] = 3163, + [3209] = 3205, + [3210] = 3210, + [3211] = 3211, + [3212] = 3159, + [3213] = 3157, + [3214] = 3214, [3215] = 3215, - [3216] = 3136, - [3217] = 3117, - [3218] = 3200, - [3219] = 3150, - [3220] = 3177, - [3221] = 3103, - [3222] = 3222, - [3223] = 3106, - [3224] = 3109, - [3225] = 3113, - [3226] = 3226, - [3227] = 3145, - [3228] = 3113, - [3229] = 3141, - [3230] = 3150, - [3231] = 3104, - [3232] = 3104, - [3233] = 3106, - [3234] = 3114, - [3235] = 3144, - [3236] = 3108, - [3237] = 3150, - [3238] = 3113, - [3239] = 3239, - [3240] = 3109, - [3241] = 3137, + [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] = 3122, - [3244] = 3129, - [3245] = 3105, - [3246] = 3205, - [3247] = 3102, - [3248] = 3141, - [3249] = 3127, - [3250] = 3120, - [3251] = 3134, - [3252] = 3107, - [3253] = 3101, - [3254] = 3136, - [3255] = 3255, - [3256] = 3109, - [3257] = 3107, - [3258] = 3102, - [3259] = 3127, - [3260] = 3117, - [3261] = 3103, - [3262] = 3126, - [3263] = 3120, - [3264] = 3161, - [3265] = 3205, - [3266] = 3178, + [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] = 3122, - [3269] = 3153, - [3270] = 3145, - [3271] = 3116, - [3272] = 3106, - [3273] = 3104, - [3274] = 3200, - [3275] = 3205, - [3276] = 3179, - [3277] = 3153, - [3278] = 3136, - [3279] = 3136, - [3280] = 3104, - [3281] = 3281, - [3282] = 3106, - [3283] = 3153, - [3284] = 3126, - [3285] = 3126, - [3286] = 3179, - [3287] = 3127, - [3288] = 3179, - [3289] = 3101, - [3290] = 3107, - [3291] = 3291, - [3292] = 3200, - [3293] = 3126, - [3294] = 3108, - [3295] = 3295, + [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] = 3102, - [3298] = 3114, + [3297] = 3297, + [3298] = 3170, [3299] = 3299, - [3300] = 3129, - [3301] = 3200, - [3302] = 3150, - [3303] = 3117, - [3304] = 3122, - [3305] = 3305, - [3306] = 3178, - [3307] = 3145, - [3308] = 3255, - [3309] = 3145, + [3300] = 3300, + [3301] = 3229, + [3302] = 3241, + [3303] = 3256, + [3304] = 3170, + [3305] = 3185, + [3306] = 3172, + [3307] = 3174, + [3308] = 3229, + [3309] = 3309, [3310] = 3310, - [3311] = 3117, - [3312] = 3312, - [3313] = 3129, - [3314] = 3205, - [3315] = 3153, - [3316] = 3200, - [3317] = 3205, - [3318] = 3179, - [3319] = 3319, - [3320] = 3153, - [3321] = 3110, - [3322] = 3134, - [3323] = 3121, - [3324] = 3103, - [3325] = 3129, - [3326] = 3126, - [3327] = 3327, - [3328] = 3144, - [3329] = 3136, - [3330] = 3121, - [3331] = 3104, - [3332] = 3178, - [3333] = 3121, - [3334] = 3106, - [3335] = 3108, - [3336] = 3336, - [3337] = 3127, - [3338] = 3179, - [3339] = 3130, - [3340] = 3141, - [3341] = 3101, - [3342] = 3107, - [3343] = 3124, - [3344] = 3102, + [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] = 3205, - [3347] = 3105, - [3348] = 3141, - [3349] = 3114, - [3350] = 3145, - [3351] = 3130, - [3352] = 3352, - [3353] = 3116, - [3354] = 3150, - [3355] = 3178, - [3356] = 3177, - [3357] = 3357, - [3358] = 3358, - [3359] = 3103, - [3360] = 3200, - [3361] = 3105, - [3362] = 3362, - [3363] = 3363, - [3364] = 3364, - [3365] = 3365, - [3366] = 3366, - [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 1745, - [3371] = 1749, - [3372] = 1732, - [3373] = 1737, - [3374] = 3366, - [3375] = 1736, - [3376] = 1762, - [3377] = 3365, - [3378] = 3363, - [3379] = 3362, - [3380] = 1734, - [3381] = 1758, - [3382] = 3382, - [3383] = 3382, - [3384] = 1749, - [3385] = 1733, - [3386] = 3363, - [3387] = 1735, - [3388] = 3382, - [3389] = 3382, - [3390] = 3365, - [3391] = 1745, - [3392] = 3366, - [3393] = 3382, - [3394] = 3382, - [3395] = 1731, - [3396] = 1741, - [3397] = 3382, - [3398] = 3382, - [3399] = 3382, - [3400] = 3400, - [3401] = 3382, - [3402] = 3362, - [3403] = 1762, - [3404] = 1738, - [3405] = 1758, - [3406] = 1767, - [3407] = 3407, - [3408] = 3408, - [3409] = 1779, - [3410] = 1761, - [3411] = 1760, - [3412] = 1732, - [3413] = 1816, - [3414] = 1786, - [3415] = 1771, - [3416] = 1833, - [3417] = 1834, - [3418] = 3418, - [3419] = 1821, - [3420] = 1832, - [3421] = 1773, - [3422] = 1818, - [3423] = 1823, - [3424] = 1802, - [3425] = 1774, - [3426] = 1787, - [3427] = 1810, - [3428] = 1797, - [3429] = 1801, - [3430] = 1808, - [3431] = 1772, - [3432] = 1737, - [3433] = 1804, - [3434] = 1734, - [3435] = 3435, - [3436] = 1811, - [3437] = 1792, - [3438] = 3368, - [3439] = 1736, - [3440] = 1798, - [3441] = 1790, - [3442] = 1799, - [3443] = 1769, - [3444] = 3444, - [3445] = 3445, - [3446] = 3446, - [3447] = 3447, - [3448] = 3448, - [3449] = 3449, - [3450] = 3450, - [3451] = 3451, - [3452] = 3452, - [3453] = 3453, - [3454] = 3444, - [3455] = 3455, - [3456] = 3455, - [3457] = 3455, - [3458] = 3451, + [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] = 3455, - [3461] = 3455, - [3462] = 3455, + [3460] = 3456, + [3461] = 3456, + [3462] = 3456, [3463] = 3463, - [3464] = 3464, + [3464] = 3456, [3465] = 3465, - [3466] = 3455, - [3467] = 3467, - [3468] = 3366, - [3469] = 3363, - [3470] = 3470, - [3471] = 3362, - [3472] = 3472, - [3473] = 3365, - [3474] = 3474, - [3475] = 3474, - [3476] = 3474, - [3477] = 3474, - [3478] = 3474, - [3479] = 3474, - [3480] = 3474, - [3481] = 3366, - [3482] = 3482, - [3483] = 3363, - [3484] = 3365, - [3485] = 3485, - [3486] = 3486, - [3487] = 3486, - [3488] = 3488, - [3489] = 3485, - [3490] = 3482, - [3491] = 3362, + [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] = 3493, - [3494] = 1749, - [3495] = 1745, - [3496] = 1762, - [3497] = 1758, - [3498] = 3498, - [3499] = 3499, - [3500] = 3500, - [3501] = 3501, - [3502] = 3500, + [3493] = 1820, + [3494] = 1775, + [3495] = 1835, + [3496] = 1871, + [3497] = 1857, + [3498] = 1855, + [3499] = 1873, + [3500] = 3426, + [3501] = 1869, + [3502] = 1870, [3503] = 3503, - [3504] = 3499, - [3505] = 3498, - [3506] = 3499, - [3507] = 3503, - [3508] = 3500, - [3509] = 3501, - [3510] = 3503, - [3511] = 3503, - [3512] = 3501, - [3513] = 3501, - [3514] = 3498, - [3515] = 3498, - [3516] = 3503, - [3517] = 3498, - [3518] = 3500, - [3519] = 3501, - [3520] = 3503, - [3521] = 3500, - [3522] = 3501, - [3523] = 3499, - [3524] = 3499, - [3525] = 3500, - [3526] = 3499, - [3527] = 3499, - [3528] = 3501, - [3529] = 3503, - [3530] = 3498, - [3531] = 3500, - [3532] = 3498, - [3533] = 3533, + [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] = 3533, - [3536] = 3534, - [3537] = 3537, - [3538] = 3534, - [3539] = 3539, - [3540] = 3534, - [3541] = 3533, + [3535] = 3427, + [3536] = 3536, + [3537] = 3531, + [3538] = 3536, + [3539] = 3534, + [3540] = 3540, + [3541] = 3428, [3542] = 3542, - [3543] = 3542, - [3544] = 3544, - [3545] = 3533, - [3546] = 3533, - [3547] = 3537, - [3548] = 3537, - [3549] = 3537, - [3550] = 3537, - [3551] = 3534, - [3552] = 3537, - [3553] = 3544, - [3554] = 3533, - [3555] = 3533, - [3556] = 3542, - [3557] = 3534, - [3558] = 3534, - [3559] = 3544, - [3560] = 3537, - [3561] = 1733, - [3562] = 3562, - [3563] = 3563, - [3564] = 3564, - [3565] = 1731, - [3566] = 3566, - [3567] = 3567, - [3568] = 3564, - [3569] = 3564, - [3570] = 3570, - [3571] = 3571, - [3572] = 3570, - [3573] = 3570, - [3574] = 697, - [3575] = 3567, - [3576] = 3564, - [3577] = 3562, - [3578] = 3570, - [3579] = 3567, - [3580] = 3570, - [3581] = 3562, - [3582] = 3570, - [3583] = 3571, + [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] = 1741, - [3586] = 3562, - [3587] = 3571, - [3588] = 3588, - [3589] = 3567, - [3590] = 3567, - [3591] = 3564, - [3592] = 3571, - [3593] = 3562, - [3594] = 3571, - [3595] = 1735, - [3596] = 3564, - [3597] = 3567, - [3598] = 3564, - [3599] = 3570, - [3600] = 3562, - [3601] = 3571, - [3602] = 3562, - [3603] = 3571, - [3604] = 3567, - [3605] = 1738, - [3606] = 3606, - [3607] = 3607, - [3608] = 3608, - [3609] = 3606, - [3610] = 3610, + [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] = 3606, - [3613] = 1745, - [3614] = 1749, + [3612] = 1772, + [3613] = 3613, + [3614] = 3614, [3615] = 3615, [3616] = 3616, - [3617] = 3606, - [3618] = 3618, - [3619] = 3619, + [3617] = 3617, + [3618] = 3614, + [3619] = 3616, [3620] = 3620, - [3621] = 3619, - [3622] = 3619, - [3623] = 3620, - [3624] = 3618, - [3625] = 3625, - [3626] = 3619, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 3630, - [3631] = 3631, - [3632] = 3625, + [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] = 3620, - [3635] = 3633, - [3636] = 3628, - [3637] = 3637, - [3638] = 3627, - [3639] = 3639, - [3640] = 3640, - [3641] = 3639, - [3642] = 3628, - [3643] = 3637, - [3644] = 3639, - [3645] = 3645, - [3646] = 3646, - [3647] = 3639, - [3648] = 3625, - [3649] = 3628, - [3650] = 3637, - [3651] = 3619, - [3652] = 3620, - [3653] = 3645, - [3654] = 3637, + [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] = 1758, - [3657] = 3640, - [3658] = 1741, - [3659] = 3618, - [3660] = 3633, - [3661] = 697, - [3662] = 3633, - [3663] = 3625, - [3664] = 3633, - [3665] = 3625, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 1785, + [3660] = 3658, + [3661] = 1789, + [3662] = 3662, + [3663] = 3663, + [3664] = 3658, + [3665] = 1778, [3666] = 3666, - [3667] = 3639, - [3668] = 3640, - [3669] = 3618, - [3670] = 3640, - [3671] = 3637, - [3672] = 3628, - [3673] = 3619, - [3674] = 3618, - [3675] = 3627, - [3676] = 3640, - [3677] = 3620, - [3678] = 3619, - [3679] = 3640, - [3680] = 1762, - [3681] = 1741, - [3682] = 3620, - [3683] = 3628, - [3684] = 3637, - [3685] = 3625, - [3686] = 3637, - [3687] = 3620, - [3688] = 3628, - [3689] = 3640, - [3690] = 3633, + [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] = 3625, - [3693] = 3633, - [3694] = 3630, - [3695] = 3639, - [3696] = 3696, - [3697] = 3639, - [3698] = 3618, - [3699] = 3618, - [3700] = 3630, - [3701] = 3453, - [3702] = 3446, - [3703] = 3703, + [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] = 1761, + [3705] = 3692, [3706] = 3706, [3707] = 3707, - [3708] = 3708, - [3709] = 3709, - [3710] = 1733, - [3711] = 3711, - [3712] = 3709, - [3713] = 3610, - [3714] = 1760, - [3715] = 3715, - [3716] = 3709, - [3717] = 3717, - [3718] = 1745, - [3719] = 3719, - [3720] = 3720, - [3721] = 3721, - [3722] = 1741, - [3723] = 1731, - [3724] = 3724, - [3725] = 3725, - [3726] = 3726, - [3727] = 3727, - [3728] = 3728, - [3729] = 1767, - [3730] = 3730, - [3731] = 1749, - [3732] = 3732, - [3733] = 3733, - [3734] = 3734, - [3735] = 3735, - [3736] = 3736, - [3737] = 3737, - [3738] = 3709, - [3739] = 3739, - [3740] = 3703, - [3741] = 3717, - [3742] = 3739, - [3743] = 3610, + [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] = 3745, - [3746] = 3707, - [3747] = 3747, - [3748] = 3726, - [3749] = 1779, - [3750] = 3750, - [3751] = 1769, + [3745] = 3704, + [3746] = 3670, + [3747] = 3691, + [3748] = 3669, + [3749] = 3669, + [3750] = 3694, + [3751] = 3751, [3752] = 3752, - [3753] = 1811, + [3753] = 3753, [3754] = 3754, [3755] = 3755, - [3756] = 1804, + [3756] = 3756, [3757] = 3757, - [3758] = 3758, + [3758] = 1797, [3759] = 3759, - [3760] = 3760, - [3761] = 3760, + [3760] = 1801, + [3761] = 3761, [3762] = 3762, [3763] = 3763, - [3764] = 3760, - [3765] = 3765, + [3764] = 3764, + [3765] = 3756, [3766] = 3766, - [3767] = 3752, - [3768] = 3758, + [3767] = 3767, + [3768] = 3768, [3769] = 3769, - [3770] = 3769, - [3771] = 3771, - [3772] = 3752, - [3773] = 3765, - [3774] = 3774, - [3775] = 3771, + [3770] = 3666, + [3771] = 1805, + [3772] = 3772, + [3773] = 3773, + [3774] = 3666, + [3775] = 1789, [3776] = 3776, [3777] = 3777, [3778] = 3778, - [3779] = 3755, - [3780] = 1816, - [3781] = 1808, - [3782] = 3759, - [3783] = 3766, - [3784] = 3758, - [3785] = 1801, - [3786] = 1797, - [3787] = 1762, - [3788] = 3777, - [3789] = 1758, - [3790] = 3754, - [3791] = 3778, - [3792] = 3752, - [3793] = 3793, - [3794] = 3769, + [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] = 3766, - [3797] = 3760, - [3798] = 3798, + [3796] = 3516, + [3797] = 3759, + [3798] = 3507, [3799] = 3799, - [3800] = 3798, - [3801] = 3762, - [3802] = 3754, - [3803] = 3754, - [3804] = 3793, - [3805] = 3793, - [3806] = 3798, - [3807] = 3793, - [3808] = 3777, - [3809] = 3777, - [3810] = 1737, - [3811] = 3754, - [3812] = 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] = 3776, - [3815] = 3771, - [3816] = 3778, - [3817] = 3799, - [3818] = 3798, - [3819] = 3766, - [3820] = 1790, - [3821] = 3795, - [3822] = 3822, - [3823] = 3763, - [3824] = 3793, - [3825] = 3825, - [3826] = 3793, - [3827] = 3754, - [3828] = 1818, - [3829] = 3795, - [3830] = 3763, - [3831] = 3759, - [3832] = 3769, - [3833] = 3822, - [3834] = 3758, - [3835] = 3777, - [3836] = 3798, - [3837] = 1832, - [3838] = 3795, - [3839] = 1834, - [3840] = 3771, - [3841] = 3776, - [3842] = 1810, - [3843] = 3765, - [3844] = 3758, - [3845] = 3769, - [3846] = 1798, + [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] = 3760, - [3849] = 3765, - [3850] = 1833, - [3851] = 3822, - [3852] = 3755, - [3853] = 1736, - [3854] = 3799, - [3855] = 3855, - [3856] = 3856, - [3857] = 3825, - [3858] = 3825, - [3859] = 3766, - [3860] = 3754, - [3861] = 3776, - [3862] = 1792, - [3863] = 3771, - [3864] = 3752, - [3865] = 3771, - [3866] = 3866, - [3867] = 3765, - [3868] = 3825, - [3869] = 3762, - [3870] = 3799, - [3871] = 3847, - [3872] = 3872, - [3873] = 3752, - [3874] = 3874, - [3875] = 3752, - [3876] = 3771, - [3877] = 3825, - [3878] = 3878, - [3879] = 3799, - [3880] = 3759, - [3881] = 3758, - [3882] = 3795, - [3883] = 3759, - [3884] = 1772, - [3885] = 3822, - [3886] = 3777, - [3887] = 1734, - [3888] = 3888, - [3889] = 3763, - [3890] = 3776, - [3891] = 1823, - [3892] = 1821, - [3893] = 3762, - [3894] = 3759, - [3895] = 3758, - [3896] = 3765, - [3897] = 3795, - [3898] = 3760, - [3899] = 3765, - [3900] = 3769, - [3901] = 3825, - [3902] = 3822, - [3903] = 1732, - [3904] = 3769, - [3905] = 3776, - [3906] = 3763, - [3907] = 3759, - [3908] = 3822, - [3909] = 3825, - [3910] = 3910, - [3911] = 3776, - [3912] = 3755, - [3913] = 3795, - [3914] = 3847, - [3915] = 3793, - [3916] = 3822, - [3917] = 3799, - [3918] = 1799, - [3919] = 3847, - [3920] = 3847, - [3921] = 3766, - [3922] = 3777, - [3923] = 1802, - [3924] = 3766, - [3925] = 3778, - [3926] = 3847, - [3927] = 3755, - [3928] = 1774, - [3929] = 1773, - [3930] = 1771, - [3931] = 3847, - [3932] = 1786, - [3933] = 1787, - [3934] = 3760, - [3935] = 3935, - [3936] = 3936, - [3937] = 3937, - [3938] = 3938, - [3939] = 3939, - [3940] = 3937, - [3941] = 3941, - [3942] = 3938, - [3943] = 3943, - [3944] = 3937, - [3945] = 3938, - [3946] = 3937, - [3947] = 3943, - [3948] = 3938, - [3949] = 3949, - [3950] = 3937, - [3951] = 3938, - [3952] = 3937, - [3953] = 3941, - [3954] = 3938, - [3955] = 3943, + [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] = 3957, - [3958] = 3958, - [3959] = 3938, - [3960] = 3960, - [3961] = 3961, - [3962] = 3962, - [3963] = 3963, - [3964] = 3691, - [3965] = 3965, - [3966] = 3941, - [3967] = 3965, - [3968] = 3941, - [3969] = 3958, - [3970] = 3960, - [3971] = 3962, - [3972] = 3963, - [3973] = 3956, - [3974] = 698, - [3975] = 3941, - [3976] = 3943, - [3977] = 701, - [3978] = 3960, - [3979] = 3962, - [3980] = 3943, - [3981] = 3963, - [3982] = 3941, - [3983] = 3965, - [3984] = 702, - [3985] = 3943, - [3986] = 3960, - [3987] = 1921, - [3988] = 3962, - [3989] = 1906, - [3990] = 1910, - [3991] = 3963, - [3992] = 1855, - [3993] = 1899, - [3994] = 1870, - [3995] = 3957, + [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] = 3965, - [3998] = 3941, - [3999] = 3937, - [4000] = 3936, - [4001] = 3960, - [4002] = 4002, - [4003] = 3962, - [4004] = 3963, - [4005] = 4005, - [4006] = 4002, - [4007] = 4007, - [4008] = 4002, - [4009] = 3960, - [4010] = 3960, - [4011] = 3962, - [4012] = 3941, - [4013] = 3963, + [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] = 3965, - [4016] = 3957, - [4017] = 3962, - [4018] = 4002, - [4019] = 3949, - [4020] = 4020, - [4021] = 3943, + [4015] = 4015, + [4016] = 4016, + [4017] = 4017, + [4018] = 4015, + [4019] = 4017, + [4020] = 4015, + [4021] = 4017, [4022] = 4022, - [4023] = 4023, - [4024] = 4024, + [4023] = 4015, + [4024] = 4017, [4025] = 4025, [4026] = 4026, - [4027] = 3957, - [4028] = 3943, - [4029] = 4029, - [4030] = 4030, - [4031] = 3957, - [4032] = 3963, - [4033] = 4033, + [4027] = 4015, + [4028] = 4013, + [4029] = 4016, + [4030] = 4017, + [4031] = 4031, + [4032] = 4032, + [4033] = 4015, [4034] = 4034, - [4035] = 3936, + [4035] = 4035, [4036] = 4036, [4037] = 4037, - [4038] = 3961, + [4038] = 4022, [4039] = 4039, [4040] = 4040, - [4041] = 4041, - [4042] = 4042, - [4043] = 3445, - [4044] = 3936, - [4045] = 4045, - [4046] = 4046, - [4047] = 3961, + [4041] = 4013, + [4042] = 4035, + [4043] = 4043, + [4044] = 4022, + [4045] = 712, + [4046] = 3680, + [4047] = 4031, [4048] = 4048, - [4049] = 4049, - [4050] = 4050, - [4051] = 4051, - [4052] = 3936, - [4053] = 4053, - [4054] = 3961, + [4049] = 4032, + [4050] = 4031, + [4051] = 3509, + [4052] = 4016, + [4053] = 4022, + [4054] = 4054, [4055] = 4055, - [4056] = 4056, - [4057] = 1830, - [4058] = 3936, - [4059] = 3939, - [4060] = 3961, - [4061] = 3449, - [4062] = 3936, - [4063] = 3961, - [4064] = 4064, - [4065] = 4065, - [4066] = 3961, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4071, - [4077] = 4077, + [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] = 4079, + [4079] = 4034, [4080] = 4080, - [4081] = 4069, - [4082] = 4073, - [4083] = 4083, + [4081] = 4013, + [4082] = 4034, + [4083] = 4014, [4084] = 4084, - [4085] = 4069, + [4085] = 4026, [4086] = 4086, - [4087] = 4075, - [4088] = 4088, - [4089] = 4089, + [4087] = 1860, + [4088] = 4014, + [4089] = 4048, [4090] = 4090, - [4091] = 4070, - [4092] = 4092, - [4093] = 4093, - [4094] = 4078, - [4095] = 4080, - [4096] = 4096, - [4097] = 4078, - [4098] = 4098, - [4099] = 4099, - [4100] = 4100, - [4101] = 4100, + [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] = 4096, - [4104] = 4074, + [4103] = 4103, + [4104] = 4104, [4105] = 4105, - [4106] = 4098, - [4107] = 4107, - [4108] = 4077, + [4106] = 4014, + [4107] = 4048, + [4108] = 4032, [4109] = 4109, - [4110] = 4069, - [4111] = 4079, - [4112] = 4078, - [4113] = 4113, - [4114] = 4093, - [4115] = 4115, - [4116] = 4116, - [4117] = 4068, + [4110] = 4055, + [4111] = 4022, + [4112] = 4112, + [4113] = 4048, + [4114] = 4032, + [4115] = 4055, + [4116] = 4043, + [4117] = 4063, [4118] = 4118, [4119] = 4119, - [4120] = 4120, - [4121] = 4090, + [4120] = 4035, + [4121] = 4035, [4122] = 4122, - [4123] = 4123, - [4124] = 4124, - [4125] = 4125, - [4126] = 4078, - [4127] = 4127, - [4128] = 4128, - [4129] = 4129, - [4130] = 4073, - [4131] = 4071, - [4132] = 4070, - [4133] = 4074, - [4134] = 4077, - [4135] = 4135, - [4136] = 4136, - [4137] = 4084, - [4138] = 4138, + [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] = 4140, - [4141] = 4099, - [4142] = 4069, - [4143] = 4069, - [4144] = 4144, - [4145] = 4096, - [4146] = 4079, - [4147] = 4078, - [4148] = 4148, - [4149] = 4100, + [4140] = 4055, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 4034, + [4145] = 4022, + [4146] = 4146, + [4147] = 4147, + [4148] = 708, + [4149] = 4149, [4150] = 4150, - [4151] = 4102, - [4152] = 4152, - [4153] = 4148, - [4154] = 4098, + [4151] = 4031, + [4152] = 4043, + [4153] = 4109, + [4154] = 4105, [4155] = 4155, - [4156] = 4090, + [4156] = 4156, [4157] = 4157, - [4158] = 4158, - [4159] = 4092, + [4158] = 4014, + [4159] = 4031, [4160] = 4160, - [4161] = 4150, - [4162] = 4162, + [4161] = 3511, + [4162] = 4016, [4163] = 4163, - [4164] = 4164, - [4165] = 4069, - [4166] = 4099, - [4167] = 4093, - [4168] = 4102, - [4169] = 4105, - [4170] = 4170, - [4171] = 4109, - [4172] = 4113, - [4173] = 4109, - [4174] = 4174, - [4175] = 4175, + [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] = 4152, - [4178] = 4092, + [4177] = 4177, + [4178] = 4178, [4179] = 4179, [4180] = 4180, - [4181] = 4181, + [4181] = 718, [4182] = 4182, [4183] = 4183, [4184] = 4184, - [4185] = 4090, + [4185] = 4185, [4186] = 4186, - [4187] = 4129, - [4188] = 4135, - [4189] = 4138, - [4190] = 4139, - [4191] = 4191, - [4192] = 4068, - [4193] = 4068, - [4194] = 4144, - [4195] = 4113, + [4187] = 4187, + [4188] = 4188, + [4189] = 4189, + [4190] = 4190, + [4191] = 4167, + [4192] = 4192, + [4193] = 4167, + [4194] = 4194, + [4195] = 4195, [4196] = 4196, - [4197] = 4067, + [4197] = 4197, [4198] = 4198, [4199] = 4199, - [4200] = 4200, - [4201] = 4191, - [4202] = 4202, - [4203] = 4068, - [4204] = 4067, - [4205] = 4162, - [4206] = 4164, - [4207] = 4170, - [4208] = 4208, - [4209] = 4209, - [4210] = 4129, - [4211] = 703, - [4212] = 4075, - [4213] = 705, - [4214] = 4135, - [4215] = 706, - [4216] = 4176, - [4217] = 4181, + [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] = 4191, - [4220] = 4148, - [4221] = 4138, - [4222] = 4084, - [4223] = 4139, - [4224] = 4150, - [4225] = 4105, - [4226] = 4152, - [4227] = 705, - [4228] = 1830, - [4229] = 704, - [4230] = 706, - [4231] = 703, - [4232] = 4144, - [4233] = 4181, - [4234] = 4191, - [4235] = 4176, - [4236] = 4170, - [4237] = 4181, - [4238] = 4164, - [4239] = 4162, - [4240] = 4152, - [4241] = 4176, - [4242] = 4067, - [4243] = 4150, - [4244] = 4162, - [4245] = 4144, - [4246] = 4139, - [4247] = 4148, - [4248] = 4138, - [4249] = 4170, - [4250] = 4135, - [4251] = 4129, - [4252] = 4113, - [4253] = 4109, - [4254] = 4105, - [4255] = 4164, - [4256] = 4102, - [4257] = 4099, - [4258] = 4079, - [4259] = 4162, - [4260] = 4077, - [4261] = 4074, - [4262] = 4070, - [4263] = 4071, - [4264] = 4067, - [4265] = 4073, - [4266] = 4096, - [4267] = 4100, - [4268] = 4098, - [4269] = 4093, - [4270] = 4092, - [4271] = 4090, - [4272] = 4090, - [4273] = 4092, - [4274] = 4148, - [4275] = 4150, - [4276] = 4093, - [4277] = 4144, - [4278] = 4152, - [4279] = 4279, - [4280] = 4098, - [4281] = 4139, - [4282] = 4138, - [4283] = 4191, - [4284] = 4100, - [4285] = 4191, - [4286] = 4181, - [4287] = 4096, - [4288] = 4176, - [4289] = 4170, - [4290] = 4135, - [4291] = 4164, - [4292] = 4162, - [4293] = 4067, - [4294] = 4144, - [4295] = 4139, - [4296] = 4138, - [4297] = 4135, - [4298] = 4129, - [4299] = 4068, - [4300] = 4129, + [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] = 4113, - [4303] = 4109, - [4304] = 4105, - [4305] = 4080, - [4306] = 4102, - [4307] = 4175, - [4308] = 4099, - [4309] = 4078, - [4310] = 4191, - [4311] = 4075, - [4312] = 4073, - [4313] = 4071, - [4314] = 4079, - [4315] = 4113, - [4316] = 4070, - [4317] = 4077, - [4318] = 4074, - [4319] = 4070, - [4320] = 4074, - [4321] = 4071, - [4322] = 4073, - [4323] = 4077, - [4324] = 4080, - [4325] = 4079, - [4326] = 4109, - [4327] = 4068, - [4328] = 4096, - [4329] = 4105, - [4330] = 4181, - [4331] = 4100, - [4332] = 4098, - [4333] = 4102, - [4334] = 4093, - [4335] = 4092, - [4336] = 4099, - [4337] = 4090, - [4338] = 4152, - [4339] = 4150, - [4340] = 4148, - [4341] = 4148, - [4342] = 4084, - [4343] = 4150, - [4344] = 4152, - [4345] = 4099, - [4346] = 4176, - [4347] = 4088, - [4348] = 4102, - [4349] = 4170, - [4350] = 4164, - [4351] = 4105, - [4352] = 4093, - [4353] = 4096, - [4354] = 4079, - [4355] = 4109, - [4356] = 4135, - [4357] = 4181, - [4358] = 4176, - [4359] = 4113, - [4360] = 4138, - [4361] = 4139, - [4362] = 4136, - [4363] = 4077, - [4364] = 4067, - [4365] = 4100, - [4366] = 4074, - [4367] = 4170, - [4368] = 4070, - [4369] = 4144, - [4370] = 4071, - [4371] = 4164, - [4372] = 4073, - [4373] = 4092, - [4374] = 4098, - [4375] = 4129, - [4376] = 4162, + [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] = 4378, + [4378] = 4195, [4379] = 4379, - [4380] = 4378, - [4381] = 4381, - [4382] = 4382, - [4383] = 4383, - [4384] = 4384, - [4385] = 4385, - [4386] = 4386, - [4387] = 4387, - [4388] = 4388, - [4389] = 4389, - [4390] = 4390, - [4391] = 4391, + [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] = 4394, - [4395] = 4395, - [4396] = 4396, - [4397] = 4397, - [4398] = 4398, - [4399] = 4383, - [4400] = 4400, - [4401] = 4384, - [4402] = 4386, - [4403] = 4387, - [4404] = 4388, - [4405] = 4392, - [4406] = 4406, - [4407] = 4407, - [4408] = 4408, - [4409] = 3446, - [4410] = 4410, - [4411] = 4411, - [4412] = 4412, - [4413] = 4389, - [4414] = 4390, - [4415] = 4415, + [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] = 4417, - [4418] = 4418, - [4419] = 4393, - [4420] = 4420, + [4417] = 4171, + [4418] = 4194, + [4419] = 4283, + [4420] = 4177, [4421] = 4421, - [4422] = 4411, - [4423] = 4379, - [4424] = 4383, - [4425] = 4384, - [4426] = 4386, - [4427] = 4427, - [4428] = 4428, - [4429] = 4387, - [4430] = 4388, - [4431] = 4378, - [4432] = 4395, - [4433] = 4389, - [4434] = 4390, - [4435] = 4435, - [4436] = 4436, - [4437] = 4437, - [4438] = 4438, + [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] = 4440, - [4441] = 4383, - [4442] = 4384, - [4443] = 4386, - [4444] = 4444, - [4445] = 4394, - [4446] = 4387, - [4447] = 4392, - [4448] = 4448, - [4449] = 4449, - [4450] = 4450, - [4451] = 4451, - [4452] = 4452, - [4453] = 4388, - [4454] = 4393, - [4455] = 4395, - [4456] = 4456, - [4457] = 4389, - [4458] = 4390, + [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] = 4460, - [4461] = 4461, - [4462] = 4397, - [4463] = 4463, - [4464] = 4398, - [4465] = 4394, - [4466] = 4383, - [4467] = 4467, - [4468] = 4416, - [4469] = 4384, - [4470] = 4418, - [4471] = 4420, - [4472] = 4421, - [4473] = 4386, - [4474] = 4387, - [4475] = 4388, - [4476] = 4436, + [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] = 4478, - [4479] = 4397, - [4480] = 4389, - [4481] = 4390, - [4482] = 4467, - [4483] = 4463, + [4478] = 814, + [4479] = 821, + [4480] = 761, + [4481] = 805, + [4482] = 4482, + [4483] = 4483, [4484] = 4484, - [4485] = 4461, + [4485] = 731, [4486] = 4486, - [4487] = 4487, - [4488] = 4488, - [4489] = 4489, - [4490] = 4460, - [4491] = 4391, - [4492] = 4398, - [4493] = 4467, - [4494] = 4463, + [4487] = 740, + [4488] = 752, + [4489] = 755, + [4490] = 756, + [4491] = 4491, + [4492] = 840, + [4493] = 836, + [4494] = 765, [4495] = 4495, - [4496] = 4461, - [4497] = 4497, - [4498] = 4460, - [4499] = 4456, - [4500] = 4456, - [4501] = 4501, - [4502] = 4502, - [4503] = 4383, - [4504] = 4504, - [4505] = 4384, - [4506] = 4451, - [4507] = 4439, - [4508] = 4386, - [4509] = 4497, - [4510] = 4387, - [4511] = 4388, - [4512] = 4389, - [4513] = 4438, - [4514] = 4390, + [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] = 4517, - [4518] = 4385, - [4519] = 4436, - [4520] = 4435, - [4521] = 4452, - [4522] = 4487, - [4523] = 4486, - [4524] = 4416, + [4517] = 783, + [4518] = 4518, + [4519] = 4519, + [4520] = 762, + [4521] = 4521, + [4522] = 785, + [4523] = 4523, + [4524] = 788, [4525] = 4525, - [4526] = 4451, - [4527] = 4444, - [4528] = 4418, - [4529] = 4412, - [4530] = 4421, - [4531] = 4410, - [4532] = 4420, - [4533] = 4408, - [4534] = 4407, - [4535] = 4406, - [4536] = 4420, - [4537] = 4418, - [4538] = 4421, - [4539] = 4539, - [4540] = 4416, - [4541] = 4435, + [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] = 4543, - [4544] = 4400, + [4543] = 797, + [4544] = 4544, [4545] = 4545, [4546] = 4546, - [4547] = 4377, - [4548] = 4436, + [4547] = 4547, + [4548] = 800, [4549] = 4549, - [4550] = 4517, + [4550] = 803, [4551] = 4551, - [4552] = 4398, + [4552] = 4552, [4553] = 4553, - [4554] = 4438, - [4555] = 4439, - [4556] = 4539, - [4557] = 4557, - [4558] = 4489, - [4559] = 4542, - [4560] = 4543, - [4561] = 4545, - [4562] = 4546, - [4563] = 4377, - [4564] = 4549, - [4565] = 4397, - [4566] = 4495, - [4567] = 4551, - [4568] = 4486, - [4569] = 4487, - [4570] = 4515, - [4571] = 4571, - [4572] = 4539, - [4573] = 4412, - [4574] = 4437, - [4575] = 4410, - [4576] = 4395, - [4577] = 4393, - [4578] = 4497, - [4579] = 4392, - [4580] = 4497, - [4581] = 4408, - [4582] = 4407, - [4583] = 4542, - [4584] = 4543, - [4585] = 4545, - [4586] = 4546, - [4587] = 4400, - [4588] = 4385, - [4589] = 4394, - [4590] = 4377, - [4591] = 4549, - [4592] = 4406, - [4593] = 4551, - [4594] = 4594, - [4595] = 4478, - [4596] = 4539, - [4597] = 4477, - [4598] = 4385, - [4599] = 4487, - [4600] = 4391, - [4601] = 4601, - [4602] = 4467, - [4603] = 4486, - [4604] = 4463, - [4605] = 807, - [4606] = 853, - [4607] = 788, - [4608] = 4391, - [4609] = 789, - [4610] = 790, - [4611] = 4542, - [4612] = 4543, - [4613] = 792, - [4614] = 794, - [4615] = 796, - [4616] = 4545, - [4617] = 4546, - [4618] = 4377, - [4619] = 4549, - [4620] = 797, - [4621] = 4406, - [4622] = 4407, - [4623] = 800, - [4624] = 802, - [4625] = 4625, - [4626] = 806, - [4627] = 4408, - [4628] = 4628, - [4629] = 4551, - [4630] = 875, - [4631] = 714, - [4632] = 809, - [4633] = 810, - [4634] = 813, - [4635] = 4411, - [4636] = 814, - [4637] = 815, - [4638] = 4638, - [4639] = 821, - [4640] = 822, - [4641] = 823, - [4642] = 4642, - [4643] = 4643, - [4644] = 4410, - [4645] = 4539, - [4646] = 4460, - [4647] = 824, - [4648] = 826, - [4649] = 829, + [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] = 830, - [4652] = 4412, - [4653] = 4461, - [4654] = 4379, - [4655] = 833, - [4656] = 835, - [4657] = 4400, + [4651] = 4651, + [4652] = 880, + [4653] = 4559, + [4654] = 4552, + [4655] = 4551, + [4656] = 882, + [4657] = 883, [4658] = 4658, - [4659] = 836, - [4660] = 837, - [4661] = 838, - [4662] = 4542, - [4663] = 4543, - [4664] = 4545, - [4665] = 4378, - [4666] = 713, - [4667] = 4546, - [4668] = 4377, + [4659] = 4659, + [4660] = 884, + [4661] = 4544, + [4662] = 885, + [4663] = 886, + [4664] = 4542, + [4665] = 888, + [4666] = 892, + [4667] = 4534, + [4668] = 4668, [4669] = 4669, - [4670] = 4549, - [4671] = 4551, - [4672] = 4456, - [4673] = 4673, - [4674] = 847, - [4675] = 848, - [4676] = 849, - [4677] = 850, - [4678] = 4539, - [4679] = 4539, - [4680] = 851, - [4681] = 4456, - [4682] = 4394, + [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] = 4392, - [4685] = 885, - [4686] = 854, - [4687] = 855, - [4688] = 856, - [4689] = 857, - [4690] = 858, - [4691] = 4393, - [4692] = 4395, - [4693] = 859, - [4694] = 4452, - [4695] = 860, - [4696] = 863, - [4697] = 865, - [4698] = 866, - [4699] = 4397, - [4700] = 868, - [4701] = 4398, - [4702] = 4451, - [4703] = 4450, - [4704] = 870, - [4705] = 4416, - [4706] = 872, - [4707] = 4418, - [4708] = 4420, - [4709] = 4421, - [4710] = 873, - [4711] = 4542, - [4712] = 4543, - [4713] = 4436, - [4714] = 871, - [4715] = 876, - [4716] = 4545, - [4717] = 4546, - [4718] = 877, - [4719] = 4377, - [4720] = 4449, - [4721] = 878, - [4722] = 4549, - [4723] = 879, - [4724] = 4724, - [4725] = 880, - [4726] = 881, - [4727] = 883, - [4728] = 4400, - [4729] = 4448, - [4730] = 4467, - [4731] = 4463, - [4732] = 884, - [4733] = 4461, - [4734] = 887, - [4735] = 4460, - [4736] = 808, - [4737] = 4456, - [4738] = 769, - [4739] = 4551, - [4740] = 805, - [4741] = 765, - [4742] = 767, - [4743] = 4451, - [4744] = 770, - [4745] = 4745, - [4746] = 4444, - [4747] = 4747, - [4748] = 4748, - [4749] = 4539, - [4750] = 762, - [4751] = 4486, - [4752] = 764, - [4753] = 4487, - [4754] = 772, - [4755] = 4406, - [4756] = 787, - [4757] = 781, - [4758] = 4758, - [4759] = 4444, - [4760] = 720, - [4761] = 4761, - [4762] = 4762, - [4763] = 4407, - [4764] = 4408, - [4765] = 864, - [4766] = 4412, - [4767] = 862, - [4768] = 4410, - [4769] = 845, - [4770] = 4408, - [4771] = 4407, - [4772] = 4406, - [4773] = 4410, - [4774] = 843, - [4775] = 841, - [4776] = 828, - [4777] = 825, - [4778] = 820, - [4779] = 818, - [4780] = 817, - [4781] = 4400, - [4782] = 811, - [4783] = 4412, - [4784] = 4497, - [4785] = 4785, - [4786] = 4451, - [4787] = 4427, - [4788] = 4788, - [4789] = 804, - [4790] = 4790, - [4791] = 801, - [4792] = 4792, - [4793] = 799, + [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] = 798, - [4796] = 4385, - [4797] = 4788, + [4795] = 4551, + [4796] = 4552, + [4797] = 4797, [4798] = 4798, - [4799] = 4436, - [4800] = 795, + [4799] = 4546, + [4800] = 4800, [4801] = 4801, - [4802] = 793, - [4803] = 783, - [4804] = 755, - [4805] = 4486, - [4806] = 4487, - [4807] = 778, - [4808] = 4792, - [4809] = 777, - [4810] = 766, - [4811] = 758, - [4812] = 757, - [4813] = 756, - [4814] = 816, - [4815] = 4497, - [4816] = 754, - [4817] = 753, + [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] = 4460, - [4820] = 752, - [4821] = 4821, + [4819] = 846, + [4820] = 850, + [4821] = 4816, [4822] = 4822, - [4823] = 4823, - [4824] = 751, - [4825] = 4461, - [4826] = 750, - [4827] = 4827, - [4828] = 749, - [4829] = 4463, - [4830] = 4794, - [4831] = 4831, - [4832] = 4832, - [4833] = 4467, - [4834] = 748, - [4835] = 4385, - [4836] = 4836, - [4837] = 747, - [4838] = 746, - [4839] = 4412, - [4840] = 745, - [4841] = 744, - [4842] = 743, - [4843] = 742, - [4844] = 741, - [4845] = 4391, - [4846] = 740, - [4847] = 739, - [4848] = 4410, - [4849] = 4785, - [4850] = 738, - [4851] = 737, - [4852] = 736, - [4853] = 4683, + [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] = 4658, - [4857] = 735, - [4858] = 4601, - [4859] = 4859, - [4860] = 734, - [4861] = 733, - [4862] = 4557, - [4863] = 732, - [4864] = 4411, - [4865] = 4865, - [4866] = 4408, - [4867] = 731, - [4868] = 4407, - [4869] = 730, - [4870] = 729, - [4871] = 728, - [4872] = 4411, - [4873] = 727, - [4874] = 726, - [4875] = 4406, - [4876] = 725, - [4877] = 724, - [4878] = 723, - [4879] = 4836, - [4880] = 4880, - [4881] = 4440, - [4882] = 4831, - [4883] = 4382, - [4884] = 722, - [4885] = 721, - [4886] = 761, - [4887] = 4887, - [4888] = 719, - [4889] = 4794, - [4890] = 4400, - [4891] = 4379, - [4892] = 718, - [4893] = 717, + [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] = 4439, - [4896] = 4438, - [4897] = 716, - [4898] = 715, - [4899] = 4899, - [4900] = 4788, - [4901] = 4396, - [4902] = 4378, - [4903] = 869, - [4904] = 4801, - [4905] = 4444, - [4906] = 4792, - [4907] = 4451, - [4908] = 4818, - [4909] = 4391, - [4910] = 4910, - [4911] = 780, - [4912] = 4821, - [4913] = 4822, - [4914] = 771, - [4915] = 846, - [4916] = 4436, - [4917] = 886, - [4918] = 888, - [4919] = 4451, - [4920] = 763, - [4921] = 867, - [4922] = 861, - [4923] = 882, - [4924] = 852, - [4925] = 842, - [4926] = 839, - [4927] = 831, - [4928] = 827, - [4929] = 760, - [4930] = 812, - [4931] = 4395, - [4932] = 803, - [4933] = 4497, - [4934] = 4452, - [4935] = 768, - [4936] = 4378, - [4937] = 4421, - [4938] = 4420, - [4939] = 4827, - [4940] = 4418, - [4941] = 4391, - [4942] = 4794, - [4943] = 4416, - [4944] = 4944, - [4945] = 4831, - [4946] = 4836, + [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] = 4411, - [4950] = 4785, - [4951] = 4683, - [4952] = 4379, - [4953] = 4953, - [4954] = 4378, + [4949] = 4949, + [4950] = 4950, + [4951] = 4951, + [4952] = 4952, + [4953] = 4544, + [4954] = 4551, [4955] = 4955, - [4956] = 4658, - [4957] = 4957, - [4958] = 4601, - [4959] = 4557, - [4960] = 4960, - [4961] = 4961, + [4956] = 4483, + [4957] = 4552, + [4958] = 4958, + [4959] = 4959, + [4960] = 4495, + [4961] = 4559, [4962] = 4962, - [4963] = 4456, - [4964] = 4440, - [4965] = 4965, - [4966] = 4542, - [4967] = 4460, - [4968] = 4461, - [4969] = 4827, - [4970] = 4382, - [4971] = 4971, - [4972] = 4463, - [4973] = 4788, - [4974] = 4822, - [4975] = 4801, - [4976] = 4467, - [4977] = 4792, - [4978] = 4818, - [4979] = 4821, - [4980] = 4980, - [4981] = 4543, - [4982] = 4821, - [4983] = 4822, - [4984] = 4827, - [4985] = 4794, - [4986] = 4831, - [4987] = 4836, - [4988] = 4379, + [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] = 4785, - [4991] = 4683, - [4992] = 4411, - [4993] = 4658, - [4994] = 4601, - [4995] = 4382, - [4996] = 4557, - [4997] = 4997, - [4998] = 4551, + [4990] = 4947, + [4991] = 4991, + [4992] = 4992, + [4993] = 4903, + [4994] = 4804, + [4995] = 4542, + [4996] = 4742, + [4997] = 4719, + [4998] = 4597, [4999] = 4999, - [5000] = 5000, - [5001] = 5001, - [5002] = 4440, - [5003] = 4486, - [5004] = 4487, - [5005] = 4818, - [5006] = 4382, - [5007] = 4439, - [5008] = 4438, + [5000] = 4566, + [5001] = 4641, + [5002] = 4514, + [5003] = 4669, + [5004] = 4952, + [5005] = 5005, + [5006] = 4552, + [5007] = 5007, + [5008] = 4483, [5009] = 5009, - [5010] = 4398, - [5011] = 4497, - [5012] = 4378, - [5013] = 4383, - [5014] = 4436, - [5015] = 4545, - [5016] = 4788, - [5017] = 4435, - [5018] = 4801, - [5019] = 5019, - [5020] = 4792, - [5021] = 4397, - [5022] = 5022, - [5023] = 4818, - [5024] = 5024, + [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] = 4440, - [5027] = 4821, - [5028] = 5028, - [5029] = 4822, - [5030] = 5030, - [5031] = 4827, - [5032] = 5032, - [5033] = 4794, - [5034] = 4831, - [5035] = 5035, - [5036] = 5036, + [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] = 4836, - [5039] = 5039, - [5040] = 4785, - [5041] = 4683, - [5042] = 5042, + [5038] = 4599, + [5039] = 4597, + [5040] = 5040, + [5041] = 5041, + [5042] = 4566, [5043] = 5043, - [5044] = 4658, - [5045] = 4601, + [5044] = 4508, + [5045] = 4508, [5046] = 5046, - [5047] = 4557, - [5048] = 5048, - [5049] = 4379, + [5047] = 5047, + [5048] = 4641, + [5049] = 5049, [5050] = 5050, [5051] = 5051, - [5052] = 5052, - [5053] = 4384, - [5054] = 5054, - [5055] = 4437, - [5056] = 4386, - [5057] = 4440, - [5058] = 4421, - [5059] = 4382, - [5060] = 4546, - [5061] = 4792, - [5062] = 4393, - [5063] = 4420, - [5064] = 4379, - [5065] = 4418, - [5066] = 4801, - [5067] = 4788, - [5068] = 4557, - [5069] = 4416, - [5070] = 4801, - [5071] = 4792, - [5072] = 4601, - [5073] = 4658, - [5074] = 4385, - [5075] = 4818, - [5076] = 4821, - [5077] = 4394, + [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] = 4683, - [5080] = 4822, - [5081] = 4785, - [5082] = 5082, - [5083] = 4827, - [5084] = 5084, - [5085] = 4794, - [5086] = 4549, - [5087] = 4831, - [5088] = 4836, - [5089] = 4390, - [5090] = 4831, - [5091] = 4836, - [5092] = 5092, - [5093] = 4794, - [5094] = 5094, - [5095] = 4389, - [5096] = 4827, - [5097] = 5097, - [5098] = 5098, - [5099] = 4785, - [5100] = 4822, - [5101] = 4683, - [5102] = 4658, - [5103] = 4392, - [5104] = 4821, - [5105] = 4601, - [5106] = 4392, - [5107] = 4818, - [5108] = 4411, + [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] = 4792, - [5111] = 4557, - [5112] = 4391, - [5113] = 4788, + [5110] = 4566, + [5111] = 4641, + [5112] = 4669, + [5113] = 5113, [5114] = 5114, [5115] = 5115, - [5116] = 4801, + [5116] = 4526, [5117] = 5117, - [5118] = 5118, - [5119] = 5119, + [5118] = 4526, + [5119] = 4952, [5120] = 5120, - [5121] = 4394, - [5122] = 4788, + [5121] = 5005, + [5122] = 5122, [5123] = 5123, [5124] = 5124, [5125] = 5125, - [5126] = 4398, - [5127] = 5127, - [5128] = 5128, - [5129] = 5129, - [5130] = 4393, - [5131] = 4387, - [5132] = 4440, - [5133] = 4388, - [5134] = 4395, - [5135] = 5135, - [5136] = 5136, - [5137] = 5137, - [5138] = 4397, - [5139] = 4382, - [5140] = 5140, - [5141] = 5141, - [5142] = 5142, - [5143] = 5143, - [5144] = 5144, - [5145] = 5142, + [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] = 5147, - [5148] = 5148, - [5149] = 5149, + [5147] = 4616, + [5148] = 4949, + [5149] = 4797, [5150] = 5150, - [5151] = 5151, - [5152] = 5152, - [5153] = 5153, - [5154] = 5154, - [5155] = 5155, + [5151] = 4651, + [5152] = 5016, + [5153] = 5014, + [5154] = 4650, + [5155] = 4534, [5156] = 5156, - [5157] = 5154, - [5158] = 5158, - [5159] = 5159, - [5160] = 5150, - [5161] = 5156, + [5157] = 4523, + [5158] = 4521, + [5159] = 4966, + [5160] = 4591, + [5161] = 5161, [5162] = 5162, - [5163] = 5163, - [5164] = 5144, - [5165] = 5165, - [5166] = 5166, + [5163] = 4599, + [5164] = 4857, + [5165] = 4985, + [5166] = 4947, [5167] = 5167, - [5168] = 5154, - [5169] = 5169, - [5170] = 5156, - [5171] = 5151, - [5172] = 5154, - [5173] = 5153, - [5174] = 5156, - [5175] = 5175, - [5176] = 5142, - [5177] = 5154, + [5168] = 4508, + [5169] = 4903, + [5170] = 5170, + [5171] = 4742, + [5172] = 4719, + [5173] = 4597, + [5174] = 4598, + [5175] = 4596, + [5176] = 4561, + [5177] = 4566, [5178] = 5178, - [5179] = 5179, - [5180] = 5180, - [5181] = 5181, - [5182] = 5182, - [5183] = 5146, - [5184] = 5184, - [5185] = 5156, - [5186] = 5150, - [5187] = 5187, + [5179] = 4641, + [5180] = 5011, + [5181] = 4546, + [5182] = 4592, + [5183] = 4669, + [5184] = 5010, + [5185] = 5007, + [5186] = 4952, + [5187] = 5005, [5188] = 5188, - [5189] = 5189, - [5190] = 5190, - [5191] = 5191, - [5192] = 5192, - [5193] = 5154, - [5194] = 5156, - [5195] = 5195, + [5189] = 4616, + [5190] = 5007, + [5191] = 5005, + [5192] = 5010, + [5193] = 4952, + [5194] = 4982, + [5195] = 5011, [5196] = 5196, - [5197] = 5156, + [5197] = 5197, [5198] = 5198, - [5199] = 5199, - [5200] = 5181, - [5201] = 5151, - [5202] = 5202, + [5199] = 5015, + [5200] = 4669, + [5201] = 4477, + [5202] = 4641, [5203] = 5203, - [5204] = 5182, - [5205] = 5141, - [5206] = 5189, - [5207] = 5181, - [5208] = 5208, - [5209] = 5209, - [5210] = 5210, - [5211] = 5211, - [5212] = 5212, - [5213] = 5213, - [5214] = 5159, - [5215] = 5158, - [5216] = 5216, - [5217] = 5155, - [5218] = 5218, - [5219] = 5219, - [5220] = 5220, - [5221] = 5221, - [5222] = 5222, - [5223] = 5221, - [5224] = 5224, - [5225] = 5225, - [5226] = 5226, - [5227] = 5189, - [5228] = 5228, + [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] = 5230, - [5231] = 5218, - [5232] = 5189, - [5233] = 5152, - [5234] = 5213, - [5235] = 5235, - [5236] = 5236, - [5237] = 5202, - [5238] = 5208, - [5239] = 5143, - [5240] = 5236, - [5241] = 5241, - [5242] = 5202, - [5243] = 5143, - [5244] = 5244, - [5245] = 5151, - [5246] = 5149, - [5247] = 5230, - [5248] = 5248, - [5249] = 5182, - [5250] = 5250, - [5251] = 5150, + [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] = 5147, - [5254] = 5147, - [5255] = 5255, - [5256] = 5256, - [5257] = 5149, - [5258] = 5195, - [5259] = 5163, - [5260] = 5260, - [5261] = 5152, - [5262] = 5262, - [5263] = 5153, - [5264] = 5148, - [5265] = 5265, - [5266] = 5266, - [5267] = 5199, - [5268] = 5268, + [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] = 5150, - [5271] = 5144, - [5272] = 5142, - [5273] = 5147, - [5274] = 3364, - [5275] = 5151, - [5276] = 5276, + [5270] = 5270, + [5271] = 5271, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, + [5275] = 5275, + [5276] = 5269, [5277] = 5277, - [5278] = 5189, + [5278] = 5278, [5279] = 5279, [5280] = 5280, - [5281] = 5266, + [5281] = 5281, [5282] = 5282, [5283] = 5283, - [5284] = 5241, + [5284] = 5284, [5285] = 5285, [5286] = 5286, - [5287] = 5155, - [5288] = 5262, - [5289] = 5289, + [5287] = 5287, + [5288] = 5288, + [5289] = 5271, [5290] = 5290, [5291] = 5291, - [5292] = 5154, + [5292] = 5292, [5293] = 5293, - [5294] = 5159, + [5294] = 5294, [5295] = 5295, - [5296] = 5262, - [5297] = 5199, - [5298] = 5268, - [5299] = 5279, - [5300] = 5188, - [5301] = 5241, - [5302] = 5282, - [5303] = 5286, - [5304] = 5208, + [5296] = 5296, + [5297] = 5291, + [5298] = 5293, + [5299] = 5299, + [5300] = 5300, + [5301] = 5291, + [5302] = 5302, + [5303] = 5293, + [5304] = 5304, [5305] = 5305, - [5306] = 5188, - [5307] = 5307, + [5306] = 5306, + [5307] = 5291, [5308] = 5308, - [5309] = 5213, - [5310] = 5181, - [5311] = 5293, - [5312] = 5312, + [5309] = 5293, + [5310] = 5310, + [5311] = 5311, + [5312] = 5306, [5313] = 5313, - [5314] = 5314, - [5315] = 5315, - [5316] = 5221, - [5317] = 5317, - [5318] = 5318, - [5319] = 5158, - [5320] = 5320, + [5314] = 5296, + [5315] = 5291, + [5316] = 5316, + [5317] = 5304, + [5318] = 5293, + [5319] = 5313, + [5320] = 5291, [5321] = 5321, - [5322] = 5322, - [5323] = 5218, - [5324] = 5324, - [5325] = 5286, - [5326] = 3451, + [5322] = 5293, + [5323] = 5323, + [5324] = 5316, + [5325] = 5325, + [5326] = 5326, [5327] = 5327, - [5328] = 5149, - [5329] = 5329, - [5330] = 5152, + [5328] = 5284, + [5329] = 5310, + [5330] = 5274, [5331] = 5331, - [5332] = 5236, + [5332] = 5332, [5333] = 5333, - [5334] = 5279, - [5335] = 5269, - [5336] = 5282, - [5337] = 5143, - [5338] = 5202, - [5339] = 5182, - [5340] = 5265, - [5341] = 5268, - [5342] = 5260, - [5343] = 5255, - [5344] = 5252, - [5345] = 5195, - [5346] = 5266, - [5347] = 5347, - [5348] = 5163, - [5349] = 5349, - [5350] = 5350, - [5351] = 5262, - [5352] = 5333, - [5353] = 5329, - [5354] = 5148, - [5355] = 5355, - [5356] = 5356, - [5357] = 5357, - [5358] = 5199, - [5359] = 5144, - [5360] = 5142, - [5361] = 5262, - [5362] = 5277, - [5363] = 5236, - [5364] = 5210, - [5365] = 5365, + [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] = 5141, - [5368] = 5196, - [5369] = 5198, + [5367] = 5367, + [5368] = 5368, + [5369] = 5369, [5370] = 5370, - [5371] = 5295, - [5372] = 5372, - [5373] = 5269, - [5374] = 5252, - [5375] = 5375, - [5376] = 5265, - [5377] = 5235, - [5378] = 5203, - [5379] = 5279, + [5371] = 5336, + [5372] = 5339, + [5373] = 5373, + [5374] = 5374, + [5375] = 5269, + [5376] = 5272, + [5377] = 5377, + [5378] = 5327, + [5379] = 5379, [5380] = 5380, - [5381] = 5322, - [5382] = 5382, - [5383] = 5383, - [5384] = 5199, - [5385] = 5385, - [5386] = 5386, - [5387] = 5279, - [5388] = 5388, - [5389] = 5389, - [5390] = 5277, - [5391] = 5158, - [5392] = 5241, - [5393] = 5286, - [5394] = 5241, - [5395] = 5213, + [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] = 5260, - [5398] = 5266, - [5399] = 5399, - [5400] = 5286, - [5401] = 5146, - [5402] = 5221, - [5403] = 5255, - [5404] = 5404, - [5405] = 5327, - [5406] = 5230, - [5407] = 5268, - [5408] = 5276, - [5409] = 5218, - [5410] = 5142, - [5411] = 5144, - [5412] = 5198, - [5413] = 5252, - [5414] = 5169, - [5415] = 5356, - [5416] = 5416, - [5417] = 5203, - [5418] = 5196, - [5419] = 5195, - [5420] = 5295, - [5421] = 5285, - [5422] = 5283, - [5423] = 5423, - [5424] = 5382, - [5425] = 5425, - [5426] = 5141, - [5427] = 5396, - [5428] = 5396, - [5429] = 5366, - [5430] = 5307, - [5431] = 5282, - [5432] = 5218, - [5433] = 5327, - [5434] = 5149, - [5435] = 5196, - [5436] = 5155, - [5437] = 5198, - [5438] = 5230, - [5439] = 5439, - [5440] = 5189, - [5441] = 5203, - [5442] = 5159, - [5443] = 5295, - [5444] = 5144, - [5445] = 5142, - [5446] = 5276, - [5447] = 5282, - [5448] = 5210, - [5449] = 5449, - [5450] = 5220, - [5451] = 5169, - [5452] = 5268, - [5453] = 5141, - [5454] = 5266, - [5455] = 5148, - [5456] = 5163, - [5457] = 5195, - [5458] = 5366, - [5459] = 5382, - [5460] = 5210, - [5461] = 5181, + [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] = 5396, - [5464] = 5181, - [5465] = 5151, - [5466] = 5327, - [5467] = 5199, - [5468] = 5468, - [5469] = 5150, - [5470] = 5276, - [5471] = 5181, - [5472] = 5148, - [5473] = 5473, - [5474] = 5189, - [5475] = 5475, - [5476] = 5169, - [5477] = 5162, - [5478] = 5213, - [5479] = 5159, - [5480] = 5163, - [5481] = 5155, - [5482] = 5153, - [5483] = 5483, - [5484] = 5236, - [5485] = 5221, - [5486] = 5230, - [5487] = 5158, - [5488] = 5202, - [5489] = 5489, - [5490] = 5153, - [5491] = 3368, - [5492] = 5218, - [5493] = 5262, - [5494] = 5189, - [5495] = 5151, - [5496] = 5143, - [5497] = 5382, - [5498] = 5158, - [5499] = 5396, - [5500] = 5198, - [5501] = 5147, - [5502] = 5149, - [5503] = 5327, - [5504] = 5276, - [5505] = 5203, - [5506] = 5506, - [5507] = 5277, - [5508] = 5153, - [5509] = 5152, - [5510] = 5210, - [5511] = 5269, - [5512] = 5366, - [5513] = 5169, - [5514] = 5153, - [5515] = 5515, - [5516] = 5196, - [5517] = 5152, - [5518] = 5518, - [5519] = 5159, - [5520] = 5295, - [5521] = 5280, - [5522] = 5221, - [5523] = 5250, - [5524] = 5226, - [5525] = 5152, - [5526] = 5265, - [5527] = 5144, - [5528] = 5142, + [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] = 5382, - [5531] = 5147, - [5532] = 5150, - [5533] = 5151, + [5530] = 5339, + [5531] = 5286, + [5532] = 5287, + [5533] = 5282, [5534] = 5534, - [5535] = 5279, - [5536] = 5208, - [5537] = 5295, - [5538] = 5307, - [5539] = 5396, - [5540] = 5203, - [5541] = 5265, - [5542] = 5241, - [5543] = 5143, - [5544] = 5202, - [5545] = 5189, - [5546] = 5149, - [5547] = 5141, - [5548] = 5327, - [5549] = 5286, - [5550] = 5199, - [5551] = 5198, - [5552] = 5196, - [5553] = 5285, - [5554] = 5230, - [5555] = 5276, - [5556] = 5147, - [5557] = 5155, - [5558] = 5155, - [5559] = 5262, - [5560] = 5158, - [5561] = 5213, - [5562] = 5366, - [5563] = 5141, - [5564] = 5181, - [5565] = 5169, - [5566] = 5255, - [5567] = 5195, - [5568] = 5221, - [5569] = 5279, - [5570] = 5163, - [5571] = 5210, - [5572] = 5230, - [5573] = 5241, - [5574] = 5148, - [5575] = 5218, - [5576] = 5266, - [5577] = 5260, + [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] = 5286, - [5580] = 5268, - [5581] = 5159, - [5582] = 5282, - [5583] = 5277, - [5584] = 5265, - [5585] = 5269, - [5586] = 5221, - [5587] = 5250, - [5588] = 5269, - [5589] = 5382, - [5590] = 5265, - [5591] = 5277, - [5592] = 5196, + [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] = 5143, - [5595] = 5260, - [5596] = 5307, - [5597] = 5396, - [5598] = 5195, - [5599] = 5255, - [5600] = 5163, - [5601] = 5252, - [5602] = 5260, - [5603] = 5148, - [5604] = 5604, - [5605] = 5250, + [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] = 5285, - [5608] = 5269, - [5609] = 5255, - [5610] = 5252, - [5611] = 5198, - [5612] = 5266, - [5613] = 5255, - [5614] = 5382, - [5615] = 5366, - [5616] = 5210, - [5617] = 5203, - [5618] = 5202, - [5619] = 5619, - [5620] = 5295, - [5621] = 5327, - [5622] = 5144, - [5623] = 5169, - [5624] = 5366, - [5625] = 5268, - [5626] = 5260, - [5627] = 5277, - [5628] = 5213, - [5629] = 5282, - [5630] = 5167, - [5631] = 5276, - [5632] = 5252, - [5633] = 5633, - [5634] = 5634, - [5635] = 5635, - [5636] = 5636, - [5637] = 5637, - [5638] = 5638, - [5639] = 5639, - [5640] = 5640, + [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] = 5642, - [5643] = 5643, - [5644] = 5644, - [5645] = 5645, + [5642] = 5277, + [5643] = 5290, + [5644] = 5271, + [5645] = 5304, [5646] = 5646, - [5647] = 5647, + [5647] = 5507, [5648] = 5648, - [5649] = 5645, - [5650] = 5650, - [5651] = 5651, - [5652] = 5652, + [5649] = 5542, + [5650] = 5516, + [5651] = 5338, + [5652] = 5380, [5653] = 5653, [5654] = 5654, - [5655] = 5655, - [5656] = 5656, - [5657] = 5657, - [5658] = 5658, + [5655] = 5467, + [5656] = 5325, + [5657] = 5313, + [5658] = 5308, [5659] = 5659, - [5660] = 5660, - [5661] = 5661, - [5662] = 5662, + [5660] = 5364, + [5661] = 5406, + [5662] = 5286, [5663] = 5663, [5664] = 5664, [5665] = 5665, - [5666] = 5666, - [5667] = 5667, - [5668] = 5639, - [5669] = 5669, + [5666] = 5554, + [5667] = 5306, + [5668] = 5366, + [5669] = 5534, [5670] = 5670, - [5671] = 5635, - [5672] = 5651, - [5673] = 5673, + [5671] = 5269, + [5672] = 5534, + [5673] = 5316, [5674] = 5674, - [5675] = 5675, + [5675] = 5269, [5676] = 5676, - [5677] = 5647, - [5678] = 5678, - [5679] = 5679, + [5677] = 5274, + [5678] = 5326, + [5679] = 5310, [5680] = 5680, [5681] = 5681, - [5682] = 5680, - [5683] = 5683, - [5684] = 5638, - [5685] = 5685, - [5686] = 5686, - [5687] = 5687, - [5688] = 5688, - [5689] = 5689, - [5690] = 5690, - [5691] = 5673, - [5692] = 5644, - [5693] = 5693, - [5694] = 5694, - [5695] = 5695, + [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] = 5634, + [5697] = 5697, [5698] = 5698, - [5699] = 5699, - [5700] = 5700, - [5701] = 5645, - [5702] = 5702, - [5703] = 5640, - [5704] = 5704, - [5705] = 5705, - [5706] = 5642, - [5707] = 5643, - [5708] = 5667, - [5709] = 5686, - [5710] = 5644, - [5711] = 5711, - [5712] = 5646, - [5713] = 5713, - [5714] = 5687, + [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] = 5648, - [5717] = 5717, - [5718] = 5657, - [5719] = 5650, - [5720] = 5653, - [5721] = 5721, - [5722] = 5722, + [5716] = 5467, + [5717] = 5304, + [5718] = 5463, + [5719] = 5719, + [5720] = 5285, + [5721] = 5277, + [5722] = 5323, [5723] = 5723, - [5724] = 5638, - [5725] = 5665, - [5726] = 5654, - [5727] = 5727, - [5728] = 5656, - [5729] = 5729, - [5730] = 5730, - [5731] = 5731, - [5732] = 5660, - [5733] = 5694, - [5734] = 5734, - [5735] = 5663, + [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] = 5665, - [5738] = 5647, + [5737] = 5377, + [5738] = 5336, [5739] = 5739, - [5740] = 5639, - [5741] = 5741, - [5742] = 5742, - [5743] = 5635, - [5744] = 5744, - [5745] = 5673, - [5746] = 5675, - [5747] = 5747, - [5748] = 5705, - [5749] = 5717, - [5750] = 5679, - [5751] = 5751, - [5752] = 5681, - [5753] = 5683, + [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] = 5685, - [5756] = 5675, - [5757] = 5658, - [5758] = 5688, - [5759] = 5689, - [5760] = 5744, - [5761] = 5761, + [5755] = 5507, + [5756] = 5283, + [5757] = 5277, + [5758] = 5758, + [5759] = 5284, + [5760] = 5274, + [5761] = 5542, [5762] = 5762, - [5763] = 5693, + [5763] = 5763, [5764] = 5764, - [5765] = 5695, - [5766] = 5696, + [5765] = 5765, + [5766] = 5766, [5767] = 5767, - [5768] = 5698, - [5769] = 5767, - [5770] = 5700, - [5771] = 5644, - [5772] = 5702, - [5773] = 5640, - [5774] = 5659, - [5775] = 5661, - [5776] = 5642, - [5777] = 5664, - [5778] = 5646, - [5779] = 5666, - [5780] = 5767, - [5781] = 5764, - [5782] = 5648, - [5783] = 5645, - [5784] = 5674, - [5785] = 5676, - [5786] = 5717, + [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] = 5678, - [5789] = 5654, - [5790] = 5680, - [5791] = 5762, + [5788] = 5788, + [5789] = 5789, + [5790] = 5790, + [5791] = 5791, [5792] = 5792, - [5793] = 5663, + [5793] = 5762, [5794] = 5794, - [5795] = 5665, - [5796] = 5761, - [5797] = 5694, - [5798] = 5744, - [5799] = 5751, - [5800] = 5635, - [5801] = 5673, - [5802] = 5675, + [5795] = 5787, + [5796] = 5796, + [5797] = 5797, + [5798] = 5798, + [5799] = 5799, + [5800] = 5775, + [5801] = 5801, + [5802] = 5802, [5803] = 5803, - [5804] = 5747, - [5805] = 5638, + [5804] = 5804, + [5805] = 5805, [5806] = 5806, - [5807] = 5681, - [5808] = 5653, - [5809] = 5685, + [5807] = 5807, + [5808] = 5808, + [5809] = 5809, [5810] = 5810, - [5811] = 5657, - [5812] = 5689, - [5813] = 5764, - [5814] = 5711, + [5811] = 5811, + [5812] = 5812, + [5813] = 5813, + [5814] = 5814, [5815] = 5815, - [5816] = 5693, - [5817] = 5647, - [5818] = 5695, - [5819] = 5696, - [5820] = 5762, - [5821] = 5698, - [5822] = 5751, - [5823] = 5700, - [5824] = 5824, - [5825] = 5702, - [5826] = 5640, + [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] = 5642, - [5830] = 5667, - [5831] = 5646, + [5829] = 5829, + [5830] = 5830, + [5831] = 5770, [5832] = 5832, - [5833] = 5702, + [5833] = 5833, [5834] = 5834, - [5835] = 5648, - [5836] = 5761, - [5837] = 5837, - [5838] = 5838, - [5839] = 5705, - [5840] = 5686, - [5841] = 5722, - [5842] = 5654, - [5843] = 5651, - [5844] = 5723, - [5845] = 5845, - [5846] = 5663, - [5847] = 5704, - [5848] = 5665, + [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] = 5705, - [5851] = 5851, - [5852] = 5687, - [5853] = 5635, - [5854] = 5673, - [5855] = 5675, - [5856] = 5647, - [5857] = 5857, - [5858] = 5858, - [5859] = 5730, - [5860] = 5860, - [5861] = 5685, - [5862] = 5862, - [5863] = 5655, - [5864] = 5689, - [5865] = 5704, - [5866] = 5663, - [5867] = 5643, - [5868] = 5693, - [5869] = 5731, - [5870] = 5695, - [5871] = 5696, - [5872] = 5700, - [5873] = 5698, - [5874] = 5688, - [5875] = 5700, - [5876] = 5736, - [5877] = 5702, - [5878] = 5640, - [5879] = 5762, - [5880] = 5880, - [5881] = 5642, - [5882] = 5739, - [5883] = 5646, - [5884] = 5741, - [5885] = 5885, - [5886] = 5742, - [5887] = 5648, - [5888] = 5634, - [5889] = 5704, - [5890] = 5658, - [5891] = 5660, - [5892] = 5892, - [5893] = 5659, - [5894] = 5654, - [5895] = 5661, - [5896] = 5664, - [5897] = 5897, - [5898] = 5663, - [5899] = 5899, - [5900] = 5665, - [5901] = 5666, - [5902] = 5902, - [5903] = 5903, + [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] = 5635, - [5906] = 5673, - [5907] = 5675, - [5908] = 5645, - [5909] = 5909, - [5910] = 5651, - [5911] = 5679, + [5905] = 5905, + [5906] = 5906, + [5907] = 5907, + [5908] = 5908, + [5909] = 5776, + [5910] = 5910, + [5911] = 5911, [5912] = 5912, - [5913] = 5685, - [5914] = 5656, - [5915] = 5915, - [5916] = 5689, - [5917] = 5650, - [5918] = 5654, - [5919] = 5667, - [5920] = 5693, - [5921] = 5674, - [5922] = 5695, - [5923] = 5696, - [5924] = 5676, - [5925] = 5698, - [5926] = 5678, - [5927] = 5700, - [5928] = 5680, - [5929] = 5702, - [5930] = 5640, - [5931] = 5931, - [5932] = 5644, - [5933] = 5642, + [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] = 5646, - [5936] = 5698, + [5935] = 5810, + [5936] = 5811, [5937] = 5937, - [5938] = 5667, - [5939] = 5648, - [5940] = 5686, - [5941] = 5764, - [5942] = 5942, - [5943] = 5687, - [5944] = 5657, - [5945] = 5653, - [5946] = 5654, - [5947] = 5947, - [5948] = 5948, - [5949] = 5713, - [5950] = 5663, + [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] = 5665, - [5953] = 5634, - [5954] = 5742, - [5955] = 5955, - [5956] = 5722, - [5957] = 5635, - [5958] = 5673, - [5959] = 5675, - [5960] = 5723, - [5961] = 5961, - [5962] = 5739, - [5963] = 5963, - [5964] = 5964, - [5965] = 5685, - [5966] = 5730, - [5967] = 5731, - [5968] = 5689, - [5969] = 5736, + [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] = 5693, - [5973] = 5651, - [5974] = 5695, - [5975] = 5696, - [5976] = 5739, - [5977] = 5698, - [5978] = 5713, - [5979] = 5700, - [5980] = 5655, - [5981] = 5702, - [5982] = 5982, - [5983] = 5742, - [5984] = 5655, - [5985] = 5665, - [5986] = 5711, - [5987] = 5987, - [5988] = 5988, - [5989] = 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] = 5991, - [5992] = 5747, + [5991] = 5813, + [5992] = 5814, [5993] = 5993, - [5994] = 5647, - [5995] = 5655, - [5996] = 5996, + [5994] = 5816, + [5995] = 5827, + [5996] = 5818, [5997] = 5997, - [5998] = 5998, - [5999] = 5999, - [6000] = 6000, - [6001] = 6001, - [6002] = 5681, - [6003] = 5645, - [6004] = 5942, - [6005] = 5644, - [6006] = 5904, - [6007] = 5658, - [6008] = 6008, - [6009] = 5641, - [6010] = 5637, - [6011] = 5680, - [6012] = 5659, - [6013] = 5675, - [6014] = 5661, - [6015] = 5897, - [6016] = 5722, - [6017] = 5664, - [6018] = 5704, - [6019] = 5638, - [6020] = 5651, - [6021] = 5767, - [6022] = 5666, - [6023] = 5711, - [6024] = 5696, - [6025] = 5761, - [6026] = 5705, - [6027] = 6027, - [6028] = 6028, - [6029] = 5686, - [6030] = 5674, - [6031] = 5676, - [6032] = 5678, - [6033] = 5987, + [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] = 5680, - [6036] = 5990, - [6037] = 5723, - [6038] = 5744, - [6039] = 5638, - [6040] = 5651, - [6041] = 5713, - [6042] = 5997, - [6043] = 6043, - [6044] = 5961, - [6045] = 6000, - [6046] = 6046, - [6047] = 5686, - [6048] = 5687, - [6049] = 5942, - [6050] = 6050, - [6051] = 5904, - [6052] = 6052, - [6053] = 5656, - [6054] = 5641, - [6055] = 5637, - [6056] = 6056, - [6057] = 6057, - [6058] = 6058, - [6059] = 5897, - [6060] = 6060, - [6061] = 5660, - [6062] = 5736, - [6063] = 5741, - [6064] = 5731, - [6065] = 5730, - [6066] = 5687, - [6067] = 5667, - [6068] = 6068, - [6069] = 6069, - [6070] = 5686, - [6071] = 5650, - [6072] = 6072, - [6073] = 5845, - [6074] = 5687, - [6075] = 5751, - [6076] = 5722, - [6077] = 5987, - [6078] = 5723, + [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] = 5711, - [6081] = 5730, - [6082] = 5997, - [6083] = 6000, - [6084] = 5731, - [6085] = 5659, - [6086] = 5942, - [6087] = 5904, - [6088] = 5713, - [6089] = 6089, - [6090] = 5641, - [6091] = 5637, - [6092] = 6000, - [6093] = 6093, - [6094] = 5897, - [6095] = 5695, - [6096] = 5730, - [6097] = 5731, - [6098] = 5723, - [6099] = 5736, - [6100] = 5683, - [6101] = 5909, - [6102] = 5667, - [6103] = 5638, - [6104] = 5971, - [6105] = 5648, - [6106] = 5722, - [6107] = 5739, - [6108] = 5678, - [6109] = 5717, - [6110] = 5742, - [6111] = 5987, - [6112] = 5634, - [6113] = 5990, - [6114] = 5657, + [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] = 5997, - [6117] = 6000, + [6116] = 5791, + [6117] = 6086, [6118] = 6118, - [6119] = 5678, - [6120] = 5942, - [6121] = 5904, - [6122] = 5997, - [6123] = 5674, - [6124] = 5641, - [6125] = 5637, - [6126] = 5747, - [6127] = 5653, - [6128] = 5897, - [6129] = 5751, - [6130] = 5646, - [6131] = 5744, - [6132] = 5736, - [6133] = 5761, - [6134] = 5762, - [6135] = 5764, - [6136] = 5717, - [6137] = 5767, - [6138] = 5747, - [6139] = 5685, - [6140] = 5655, - [6141] = 5658, - [6142] = 5659, - [6143] = 5639, - [6144] = 6144, - [6145] = 5987, - [6146] = 5661, - [6147] = 5990, - [6148] = 5717, - [6149] = 5664, - [6150] = 5997, - [6151] = 6000, - [6152] = 5666, - [6153] = 5658, - [6154] = 5942, - [6155] = 5904, - [6156] = 5688, - [6157] = 5694, - [6158] = 5641, - [6159] = 5637, - [6160] = 5694, - [6161] = 5971, - [6162] = 5897, - [6163] = 5674, - [6164] = 5676, - [6165] = 5711, - [6166] = 5987, - [6167] = 5644, - [6168] = 5699, - [6169] = 5678, - [6170] = 5653, - [6171] = 5657, - [6172] = 5680, - [6173] = 5711, - [6174] = 5647, - [6175] = 5713, - [6176] = 5704, - [6177] = 5689, - [6178] = 5713, - [6179] = 5987, - [6180] = 5676, - [6181] = 5990, - [6182] = 6182, - [6183] = 5739, - [6184] = 5997, - [6185] = 6000, - [6186] = 5705, - [6187] = 5767, - [6188] = 5942, - [6189] = 5904, - [6190] = 6190, - [6191] = 6191, - [6192] = 5641, - [6193] = 5637, - [6194] = 5643, - [6195] = 6195, - [6196] = 5897, - [6197] = 5645, - [6198] = 5642, + [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] = 6200, + [6200] = 5785, [6201] = 6201, - [6202] = 5679, - [6203] = 5849, - [6204] = 6204, - [6205] = 5705, - [6206] = 5680, - [6207] = 5664, - [6208] = 5676, - [6209] = 5704, - [6210] = 5694, - [6211] = 5722, - [6212] = 5723, - [6213] = 5990, - [6214] = 5742, - [6215] = 6215, - [6216] = 6216, - [6217] = 5634, - [6218] = 6118, - [6219] = 6219, - [6220] = 5988, - [6221] = 5937, - [6222] = 5902, - [6223] = 5832, - [6224] = 5674, - [6225] = 5636, - [6226] = 5729, - [6227] = 5747, - [6228] = 5948, - [6229] = 6215, - [6230] = 5730, - [6231] = 5731, - [6232] = 6118, - [6233] = 5653, - [6234] = 5988, - [6235] = 5937, - [6236] = 5902, - [6237] = 5832, - [6238] = 5636, - [6239] = 5729, - [6240] = 5751, - [6241] = 5693, - [6242] = 6215, - [6243] = 5664, - [6244] = 5990, - [6245] = 6118, - [6246] = 5661, - [6247] = 5988, - [6248] = 5937, - [6249] = 5902, - [6250] = 5832, - [6251] = 5636, - [6252] = 5729, - [6253] = 5764, - [6254] = 6215, - [6255] = 6215, - [6256] = 5659, - [6257] = 6257, - [6258] = 6118, - [6259] = 5658, - [6260] = 5988, - [6261] = 5937, - [6262] = 5902, - [6263] = 5832, - [6264] = 5636, - [6265] = 5729, - [6266] = 5657, - [6267] = 5762, - [6268] = 6215, - [6269] = 5761, - [6270] = 5736, - [6271] = 6118, - [6272] = 5666, - [6273] = 5988, - [6274] = 5937, - [6275] = 5902, - [6276] = 5832, - [6277] = 5636, - [6278] = 5729, - [6279] = 5640, - [6280] = 5931, - [6281] = 6215, - [6282] = 5744, - [6283] = 5747, - [6284] = 6118, - [6285] = 5971, - [6286] = 5988, + [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] = 5902, - [6289] = 5832, - [6290] = 5636, - [6291] = 5729, - [6292] = 6028, - [6293] = 5633, - [6294] = 6215, - [6295] = 6115, - [6296] = 5996, - [6297] = 5988, - [6298] = 5744, - [6299] = 5899, - [6300] = 5792, - [6301] = 6115, - [6302] = 5996, - [6303] = 5899, - [6304] = 5792, - [6305] = 6115, - [6306] = 5996, - [6307] = 5899, - [6308] = 5792, - [6309] = 6115, - [6310] = 5996, - [6311] = 5899, - [6312] = 5792, - [6313] = 6115, - [6314] = 5996, - [6315] = 5899, - [6316] = 5792, - [6317] = 6115, - [6318] = 5996, - [6319] = 5899, - [6320] = 5792, - [6321] = 5761, - [6322] = 5762, - [6323] = 5764, - [6324] = 5751, - [6325] = 5655, - [6326] = 5767, - [6327] = 5747, - [6328] = 5739, - [6329] = 5742, - [6330] = 5717, - [6331] = 5634, - [6332] = 5694, - [6333] = 5666, - [6334] = 5661, + [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) { @@ -9892,330 +10047,331 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(82); - if (lookahead == '!') ADVANCE(198); + if (eof) ADVANCE(83); + if (lookahead == '!') ADVANCE(200); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); + if (lookahead == '#') ADVANCE(209); if (lookahead == '$') ADVANCE(14); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(174); - if (lookahead == '/') ADVANCE(180); - if (lookahead == '0') ADVANCE(111); - if (lookahead == ':') ADVANCE(103); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(130); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(121); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(84); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(125); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(176); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(118); + if (lookahead == ':') ADVANCE(101); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(138); + if (lookahead == '=') ADVANCE(153); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '@') ADVANCE(129); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '^') ADVANCE(165); + if (lookahead == '`') ADVANCE(49); + if (lookahead == 'a') ADVANCE(85); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '}') ADVANCE(107); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); - if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(120); + if (('A' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(198); + if (lookahead == '!') ADVANCE(200); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); + if (lookahead == '#') ADVANCE(209); if (lookahead == '$') ADVANCE(14); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(111); - if (lookahead == ':') ADVANCE(104); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(120); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(85); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(125); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(178); + if (lookahead == '/') ADVANCE(181); + if (lookahead == '0') ADVANCE(118); + if (lookahead == ':') ADVANCE(102); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(86); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '}') ADVANCE(107); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(120); if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(198); + if (lookahead == '!') ADVANCE(200); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); + if (lookahead == '#') ADVANCE(209); if (lookahead == '$') ADVANCE(14); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(111); - if (lookahead == ':') ADVANCE(72); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(121); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(85); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '~') ADVANCE(125); + if (lookahead == '(') ADVANCE(110); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(178); + if (lookahead == '/') ADVANCE(181); + if (lookahead == '0') ADVANCE(118); + if (lookahead == ':') ADVANCE(73); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '@') ADVANCE(129); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(86); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(120); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(198); + if (lookahead == '!') ADVANCE(200); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); + if (lookahead == '#') ADVANCE(209); if (lookahead == '$') ADVANCE(14); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(111); - if (lookahead == ':') ADVANCE(72); - if (lookahead == '<') ADVANCE(131); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(120); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(86); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '~') ADVANCE(125); + if (lookahead == '(') ADVANCE(110); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(178); + if (lookahead == '/') ADVANCE(181); + if (lookahead == '0') ADVANCE(118); + if (lookahead == ':') ADVANCE(73); + if (lookahead == '<') ADVANCE(139); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(87); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(120); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 4: if (lookahead == '!') ADVANCE(44); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); - if (lookahead == '$') ADVANCE(77); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '#') ADVANCE(209); + if (lookahead == '$') ADVANCE(78); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(173); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '/') ADVANCE(181); if (lookahead == ':') ADVANCE(41); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(146); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(87); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(154); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '^') ADVANCE(165); + if (lookahead == '`') ADVANCE(49); + if (lookahead == 'a') ADVANCE(88); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('_' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 5: if (lookahead == '!') ADVANCE(44); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '#') ADVANCE(209); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); - if (lookahead == ':') ADVANCE(102); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(57); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(87); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); + if (lookahead == ':') ADVANCE(100); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(153); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '^') ADVANCE(165); + if (lookahead == '`') ADVANCE(49); + if (lookahead == 'a') ADVANCE(88); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '}') ADVANCE(107); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + if (('A' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 6: if (lookahead == '!') ADVANCE(44); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); + if (lookahead == '#') ADVANCE(209); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '(') ADVANCE(110); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); if (lookahead == ':') ADVANCE(41); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(84); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(153); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '^') ADVANCE(165); + if (lookahead == '`') ADVANCE(49); + if (lookahead == 'a') ADVANCE(85); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('_' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 7: if (lookahead == '!') ADVANCE(44); - if (lookahead == '$') ADVANCE(77); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(124); - if (lookahead == '@') ADVANCE(57); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(87); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '$') ADVANCE(78); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(153); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(132); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(88); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '}') ADVANCE(107); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || + if (('A' <= lookahead && lookahead <= '_') || ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 8: if (lookahead == '!') ADVANCE(44); - if (lookahead == '$') ADVANCE(77); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(173); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(146); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(124); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(87); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '$') ADVANCE(78); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '/') ADVANCE(181); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(154); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(132); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(88); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10223,98 +10379,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 9: if (lookahead == '!') ADVANCE(44); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(57); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(87); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(151); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(131); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(88); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '}') ADVANCE(107); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) if (('A' <= lookahead && lookahead <= '_') || ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 10: if (lookahead == '!') ADVANCE(44); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); - if (lookahead == ':') ADVANCE(102); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(124); - if (lookahead == '@') ADVANCE(57); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(87); - if (lookahead == '|') ADVANCE(156); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); + if (lookahead == ':') ADVANCE(100); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(132); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(88); + if (lookahead == '|') ADVANCE(164); + if (lookahead == '}') ADVANCE(107); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= '_') || ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 11: if (lookahead == '!') ADVANCE(44); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(158); - if (lookahead == '(') ADVANCE(99); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '%') ADVANCE(183); + if (lookahead == '&') ADVANCE(166); + if (lookahead == '(') ADVANCE(110); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '+') ADVANCE(147); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); if (lookahead == ':') ADVANCE(41); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(136); - if (lookahead == '?') ADVANCE(124); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '^') ADVANCE(157); - if (lookahead == 'a') ADVANCE(84); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(144); + if (lookahead == '?') ADVANCE(132); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '^') ADVANCE(165); + if (lookahead == 'a') ADVANCE(85); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '|') ADVANCE(164); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10322,70 +10479,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 12: if (lookahead == '"') ADVANCE(13); - if (lookahead == '$') ADVANCE(77); + if (lookahead == '$') ADVANCE(78); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(98); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(103); if (lookahead == '.') ADVANCE(34); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(114); - if (lookahead == ':') ADVANCE(72); - if (lookahead == ';') ADVANCE(97); + if (lookahead == '0') ADVANCE(121); + if (lookahead == ':') ADVANCE(73); + if (lookahead == ';') ADVANCE(109); if (lookahead == '<') ADVANCE(43); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(120); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '|') ADVANCE(155); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(125); + if (lookahead == '?') ADVANCE(130); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '|') ADVANCE(163); + if (lookahead == '}') ADVANCE(107); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(124); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(119); - if (lookahead == '\\') ADVANCE(78); + if (lookahead == '"') ADVANCE(126); + if (lookahead == '\\') ADVANCE(79); if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '$') ADVANCE(91); + if (lookahead == '$') ADVANCE(92); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(90); + (128 <= lookahead && lookahead <= 255)) ADVANCE(91); END_STATE(); case 15: - if (lookahead == '$') ADVANCE(77); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(140); + if (lookahead == '$') ADVANCE(78); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '+') ADVANCE(145); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(148); if (lookahead == '.') ADVANCE(34); if (lookahead == '/') ADVANCE(19); if (lookahead == ':') ADVANCE(41); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(148); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '}') ADVANCE(95); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(136); + if (lookahead == '=') ADVANCE(156); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '}') ADVANCE(107); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10393,67 +10550,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 16: - if (lookahead == '%') ADVANCE(73); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ',') ADVANCE(98); + if (lookahead == '%') ADVANCE(74); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ',') ADVANCE(103); if (lookahead == '/') ADVANCE(20); if (lookahead == ':') ADVANCE(42); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '@') ADVANCE(57); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '{') ADVANCE(96); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(136); + if (lookahead == '=') ADVANCE(152); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '{') ADVANCE(108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(16) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 17: - if (lookahead == '\'') ADVANCE(119); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\'') ADVANCE(126); + if (lookahead == '\\') ADVANCE(80); if (lookahead != 0) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(99); - if (lookahead == ',') ADVANCE(98); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ',') ADVANCE(103); if (lookahead == '/') ADVANCE(19); if (lookahead == ':') ADVANCE(42); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(128); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(120); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '~') ADVANCE(125); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(136); + if (lookahead == '?') ADVANCE(130); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(18) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 19: if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(223); + if (lookahead == '/') ADVANCE(225); END_STATE(); case 20: if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(223); - if (lookahead == '>') ADVANCE(218); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '>') ADVANCE(220); END_STATE(); case 21: if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(222); + if (lookahead == '/') ADVANCE(224); if (lookahead != 0) ADVANCE(22); END_STATE(); case 22: @@ -10461,16 +10618,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(22); END_STATE(); case 23: - if (lookahead == '+') ADVANCE(137); - if (lookahead == '-') ADVANCE(140); + if (lookahead == '+') ADVANCE(145); + if (lookahead == '-') ADVANCE(148); if (lookahead == '/') ADVANCE(19); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(97); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(109); if (lookahead == '<') ADVANCE(43); - if (lookahead == '=') ADVANCE(148); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '{') ADVANCE(96); + if (lookahead == '=') ADVANCE(156); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '{') ADVANCE(108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10478,7 +10635,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 24: if (lookahead == '-') ADVANCE(33); @@ -10497,7 +10654,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 28: if (lookahead == '-') ADVANCE(28); - if (lookahead == '>') ADVANCE(211); + if (lookahead == '>') ADVANCE(213); if (lookahead != 0) ADVANCE(31); END_STATE(); case 29: @@ -10528,21 +10685,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 35: if (lookahead == '.') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); case 36: - if (lookahead == '.') ADVANCE(109); + if (lookahead == '.') ADVANCE(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); + lookahead == 'e') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); END_STATE(); case 37: - if (lookahead == '.') ADVANCE(127); + if (lookahead == '.') ADVANCE(135); END_STATE(); case 38: if (lookahead == '/') ADVANCE(19); if (lookahead == '>') ADVANCE(47); - if (lookahead == '\\') ADVANCE(92); + if (lookahead == '\\') ADVANCE(93); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10550,914 +10707,921 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); case 39: if (lookahead == '/') ADVANCE(19); - if (lookahead == 'a') ADVANCE(62); + if (lookahead == 'a') ADVANCE(63); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(39) END_STATE(); case 40: - if (lookahead == '/') ADVANCE(213); - if (lookahead == '<') ADVANCE(129); - if (lookahead == '{') ADVANCE(96); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '<') ADVANCE(137); + if (lookahead == '{') ADVANCE(108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); - if (lookahead != 0) ADVANCE(217); + lookahead == ' ') ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 41: - if (lookahead == ':') ADVANCE(93); + if (lookahead == ':') ADVANCE(94); END_STATE(); case 42: - if (lookahead == ':') ADVANCE(93); + if (lookahead == ':') ADVANCE(94); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); END_STATE(); case 43: - if (lookahead == '<') ADVANCE(167); + if (lookahead == '<') ADVANCE(95); END_STATE(); case 44: - if (lookahead == '=') ADVANCE(161); + if (lookahead == '=') ADVANCE(169); END_STATE(); case 45: - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(206); END_STATE(); case 46: - if (lookahead == '>') ADVANCE(205); + if (lookahead == '>') ADVANCE(207); END_STATE(); case 47: - if (lookahead == '>') ADVANCE(171); + if (lookahead == '>') ADVANCE(104); END_STATE(); case 48: if (lookahead == '>') ADVANCE(32); END_STATE(); case 49: - if (lookahead == 'a') ADVANCE(64); + if (lookahead == '`') ADVANCE(127); + if (lookahead != 0) ADVANCE(49); END_STATE(); case 50: - if (lookahead == 'd') ADVANCE(220); + if (lookahead == 'a') ADVANCE(65); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'd') ADVANCE(222); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(54); + if (lookahead == 'e') ADVANCE(60); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'e') ADVANCE(55); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'e') ADVANCE(51); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(60); + if (lookahead == 'i') ADVANCE(59); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(63); + if (lookahead == 'i') ADVANCE(61); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(49); - if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'i') ADVANCE(64); END_STATE(); case 58: - if (lookahead == 'n') ADVANCE(56); + if (lookahead == 'l') ADVANCE(50); + if (lookahead == 'r') ADVANCE(52); END_STATE(); case 59: - if (lookahead == 'q') ADVANCE(65); + if (lookahead == 'n') ADVANCE(57); END_STATE(); case 60: - if (lookahead == 'r') ADVANCE(53); + if (lookahead == 'q') ADVANCE(66); END_STATE(); case 61: - if (lookahead == 's') ADVANCE(203); + if (lookahead == 'r') ADVANCE(54); END_STATE(); case 62: - if (lookahead == 's') ADVANCE(105); + if (lookahead == 's') ADVANCE(205); END_STATE(); case 63: - if (lookahead == 't') ADVANCE(221); + if (lookahead == 's') ADVANCE(112); END_STATE(); case 64: - if (lookahead == 't') ADVANCE(52); + if (lookahead == 't') ADVANCE(223); END_STATE(); case 65: - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 't') ADVANCE(53); END_STATE(); case 66: - if (lookahead == '+' || - lookahead == '-') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (lookahead == 'u') ADVANCE(56); END_STATE(); case 67: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(83); + if (lookahead == '+' || + lookahead == '-') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); case 68: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(67); + lookahead == 'h') ADVANCE(84); END_STATE(); case 69: - if (lookahead == '0' || - lookahead == '1') ADVANCE(115); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(68); END_STATE(); case 70: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (lookahead == '0' || + lookahead == '1') ADVANCE(122); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); case 72: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 73: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); END_STATE(); case 74: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); END_STATE(); case 75: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); END_STATE(); case 76: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); END_STATE(); case 77: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 78: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(90); + (128 <= lookahead && lookahead <= 255)) ADVANCE(91); END_STATE(); - case 78: + case 79: if (lookahead != 0) ADVANCE(13); END_STATE(); - case 79: + case 80: if (lookahead != 0) ADVANCE(17); END_STATE(); - case 80: - if (eof) ADVANCE(82); - if (lookahead == '!') ADVANCE(197); + case 81: + if (eof) ADVANCE(83); + if (lookahead == '!') ADVANCE(199); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); + if (lookahead == '#') ADVANCE(209); if (lookahead == '$') ADVANCE(14); - if (lookahead == '%') ADVANCE(73); + if (lookahead == '%') ADVANCE(74); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(141); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '+') ADVANCE(146); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(149); if (lookahead == '.') ADVANCE(35); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(111); + if (lookahead == '0') ADVANCE(118); if (lookahead == ':') ADVANCE(42); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(120); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(125); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(130); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(157); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '}') ADVANCE(107); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(80) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + lookahead == ' ') SKIP(81) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(120); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 81: - if (eof) ADVANCE(82); - if (lookahead == '!') ADVANCE(197); + case 82: + if (eof) ADVANCE(83); + if (lookahead == '!') ADVANCE(199); if (lookahead == '"') ADVANCE(13); - if (lookahead == '#') ADVANCE(207); + if (lookahead == '#') ADVANCE(209); if (lookahead == '$') ADVANCE(14); if (lookahead == '\'') ADVANCE(17); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(98); - if (lookahead == '-') ADVANCE(141); + if (lookahead == '(') ADVANCE(110); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '+') ADVANCE(146); + if (lookahead == ',') ADVANCE(103); + if (lookahead == '-') ADVANCE(149); if (lookahead == '.') ADVANCE(35); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(111); - if (lookahead == ':') ADVANCE(72); - if (lookahead == ';') ADVANCE(97); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '>') ADVANCE(135); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(120); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '{') ADVANCE(96); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(125); + if (lookahead == '0') ADVANCE(118); + if (lookahead == ':') ADVANCE(73); + if (lookahead == ';') ADVANCE(109); + if (lookahead == '<') ADVANCE(140); + if (lookahead == '>') ADVANCE(143); + if (lookahead == '?') ADVANCE(130); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(158); + if (lookahead == '{') ADVANCE(108); + if (lookahead == '}') ADVANCE(107); + if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(81) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); + lookahead == ' ') SKIP(82) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(120); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 82: + case 83: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 83: + case 84: ACCEPT_TOKEN(aux_sym_script_token1); END_STATE(); - case 84: + case 85: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(107); + if (lookahead == 's') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 85: + case 86: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(201); + if (lookahead == 's') ADVANCE(203); if (lookahead == '-' || - lookahead == ':') ADVANCE(76); + lookahead == ':') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 86: + case 87: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(106); + if (lookahead == 's') ADVANCE(113); if (lookahead == '-' || - lookahead == ':') ADVANCE(76); + lookahead == ':') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 87: + case 88: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(202); + if (lookahead == 's') ADVANCE(204); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 88: + case 89: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || - lookahead == ':') ADVANCE(76); + lookahead == ':') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 89: + case 90: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 90: + case 91: ACCEPT_TOKEN(sym_variable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(90); - END_STATE(); - case 91: - ACCEPT_TOKEN(sym_pipe_variable); + (128 <= lookahead && lookahead <= 255)) ADVANCE(91); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(sym_pipe_variable); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(106); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(94); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(94); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(93); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(93); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_COLON); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_as2); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 106: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_as2); + END_STATE(); + case 113: ACCEPT_TOKEN(anon_sym_as2); if (lookahead == '-' || - lookahead == ':') ADVANCE(76); + lookahead == ':') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 107: + case 114: ACCEPT_TOKEN(anon_sym_as2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 108: + case 115: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 109: + case 116: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + lookahead == 'e') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); - case 110: + case 117: ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); - case 111: + case 118: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(109); + if (lookahead == '.') ADVANCE(116); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(69); + lookahead == 'b') ADVANCE(70); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); + lookahead == 'e') ADVANCE(67); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(71); + lookahead == 'x') ADVANCE(72); if (lookahead == '8' || lookahead == '9') ADVANCE(36); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); END_STATE(); - case 112: + case 119: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(109); + if (lookahead == '.') ADVANCE(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); + lookahead == 'e') ADVANCE(67); if (lookahead == '8' || lookahead == '9') ADVANCE(36); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); END_STATE(); - case 113: + case 120: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(109); + if (lookahead == '.') ADVANCE(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + lookahead == 'e') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); END_STATE(); - case 114: + case 121: ACCEPT_TOKEN(sym_integer); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(69); + lookahead == 'b') ADVANCE(70); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + lookahead == 'x') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); END_STATE(); - case 115: + case 122: ACCEPT_TOKEN(sym_integer); if (lookahead == '0' || - lookahead == '1') ADVANCE(115); + lookahead == '1') ADVANCE(122); END_STATE(); - case 116: + case 123: ACCEPT_TOKEN(sym_integer); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); END_STATE(); - case 117: + case 124: ACCEPT_TOKEN(sym_integer); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 118: + case 125: ACCEPT_TOKEN(sym_integer); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); - case 119: + case 126: ACCEPT_TOKEN(sym_string); END_STATE(); - case 120: + case 127: + ACCEPT_TOKEN(aux_sym_expression_tree_token1); + END_STATE(); + case 128: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 121: + case 129: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'l') ADVANCE(49); - if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'l') ADVANCE(50); + if (lookahead == 'r') ADVANCE(52); END_STATE(); - case 122: + case 130: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 123: + case 131: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '-') ADVANCE(46); - if (lookahead == ':') ADVANCE(183); - if (lookahead == '?') ADVANCE(152); - if (lookahead == 'a') ADVANCE(61); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '?') ADVANCE(160); + if (lookahead == 'a') ADVANCE(62); END_STATE(); - case 124: + case 132: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == ':') ADVANCE(183); - if (lookahead == '?') ADVANCE(152); - if (lookahead == 'a') ADVANCE(61); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '?') ADVANCE(160); + if (lookahead == 'a') ADVANCE(62); END_STATE(); - case 125: + case 133: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 126: + case 134: ACCEPT_TOKEN(aux_sym_function_type_specifier_token1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(126); + lookahead == ' ') ADVANCE(134); END_STATE(); - case 127: + case 135: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 128: + case 136: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 129: + case 137: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(25); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '/') ADVANCE(221); END_STATE(); - case 130: + case 138: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '!') ADVANCE(25); - if (lookahead == '/') ADVANCE(219); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(164); - if (lookahead == '?') ADVANCE(68); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '?') ADVANCE(69); END_STATE(); - case 131: + case 139: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(169); - if (lookahead == '=') ADVANCE(164); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(172); END_STATE(); - case 132: + case 140: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(168); + if (lookahead == '<') ADVANCE(96); END_STATE(); - case 133: + case 141: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(168); - if (lookahead == '?') ADVANCE(68); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '?') ADVANCE(69); END_STATE(); - case 134: + case 142: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(170); - if (lookahead == '=') ADVANCE(164); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(172); END_STATE(); - case 135: + case 143: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 136: + case 144: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '>') ADVANCE(172); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(105); END_STATE(); - case 137: + case 145: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 138: + case 146: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); + if (lookahead == '+') ADVANCE(201); END_STATE(); - case 139: + case 147: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '+') ADVANCE(201); + if (lookahead == '=') ADVANCE(193); END_STATE(); - case 140: + case 148: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 141: + case 149: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '-') ADVANCE(202); END_STATE(); - case 142: + case 150: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(192); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '=') ADVANCE(194); END_STATE(); - case 143: + case 151: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(192); - if (lookahead == '>') ADVANCE(206); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(208); END_STATE(); - case 144: + case 152: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 145: + case 153: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(160); - if (lookahead == '>') ADVANCE(108); + if (lookahead == '=') ADVANCE(168); + if (lookahead == '>') ADVANCE(115); END_STATE(); - case 146: + case 154: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(159); + if (lookahead == '=') ADVANCE(167); END_STATE(); - case 147: + case 155: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(159); - if (lookahead == '>') ADVANCE(108); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(115); END_STATE(); - case 148: + case 156: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(45); END_STATE(); - case 149: + case 157: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 150: + case 158: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 151: + case 159: ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); - case 152: + case 160: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(184); + if (lookahead == '=') ADVANCE(186); END_STATE(); - case 153: + case 161: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 154: + case 162: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 155: + case 163: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 156: + case 164: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(186); - if (lookahead == '>') ADVANCE(151); - if (lookahead == '|') ADVANCE(153); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(159); + if (lookahead == '|') ADVANCE(161); END_STATE(); - case 157: + case 165: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(187); + if (lookahead == '=') ADVANCE(189); END_STATE(); - case 158: + case 166: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(154); - if (lookahead == '=') ADVANCE(188); + if (lookahead == '&') ADVANCE(162); + if (lookahead == '=') ADVANCE(190); END_STATE(); - case 159: + case 167: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(162); + if (lookahead == '=') ADVANCE(170); END_STATE(); - case 160: + case 168: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(206); END_STATE(); - case 161: + case 169: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(163); + if (lookahead == '=') ADVANCE(171); END_STATE(); - case 162: + case 170: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 163: + case 171: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 164: + case 172: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(166); + if (lookahead == '>') ADVANCE(174); END_STATE(); - case 165: + case 173: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 166: + case 174: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(94); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(94); - if (lookahead == '=') ADVANCE(189); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(189); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(190); - END_STATE(); - case 173: + case 175: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(37); - if (lookahead == '=') ADVANCE(185); + if (lookahead == '=') ADVANCE(187); END_STATE(); - case 174: + case 176: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(37); - if (lookahead == '=') ADVANCE(185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (lookahead == '=') ADVANCE(187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); - case 175: + case 177: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(185); + if (lookahead == '=') ADVANCE(187); END_STATE(); - case 176: + case 178: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (lookahead == '=') ADVANCE(187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); END_STATE(); - case 177: + case 179: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 178: + case 180: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '=') ADVANCE(193); + if (lookahead == '*') ADVANCE(184); + if (lookahead == '=') ADVANCE(195); END_STATE(); - case 179: + case 181: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(223); - if (lookahead == '=') ADVANCE(194); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '=') ADVANCE(196); END_STATE(); - case 180: + case 182: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(223); - if (lookahead == '=') ADVANCE(194); - if (lookahead == '>') ADVANCE(218); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '=') ADVANCE(196); + if (lookahead == '>') ADVANCE(220); END_STATE(); - case 181: + case 183: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(195); + if (lookahead == '=') ADVANCE(197); END_STATE(); - case 182: + case 184: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(196); + if (lookahead == '=') ADVANCE(198); END_STATE(); - case 183: + case 185: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 184: + case 186: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 185: + case 187: ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); - case 186: + case 188: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 187: + case 189: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 188: + case 190: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 189: + case 191: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 190: + case 192: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 191: + case 193: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 192: + case 194: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 193: + case 195: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 194: + case 196: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 195: + case 197: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 196: + case 198: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 197: + case 199: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 198: + case 200: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(161); + if (lookahead == '=') ADVANCE(169); END_STATE(); - case 199: + case 201: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 200: + case 202: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 201: + case 203: ACCEPT_TOKEN(anon_sym_as3); if (lookahead == '-' || - lookahead == ':') ADVANCE(76); + lookahead == ':') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - if ((128 <= lookahead && lookahead <= 255)) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); + if ((128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 202: + case 204: ACCEPT_TOKEN(anon_sym_as3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 255)) ADVANCE(89); + (128 <= lookahead && lookahead <= 255)) ADVANCE(90); END_STATE(); - case 203: + case 205: ACCEPT_TOKEN(anon_sym_QMARKas); END_STATE(); - case 204: + case 206: ACCEPT_TOKEN(anon_sym_EQ_EQ_GT); END_STATE(); - case 205: + case 207: ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); - case 206: + case 208: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 207: + case 209: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 208: + case 210: ACCEPT_TOKEN(sym_xhp_identifier); if (lookahead == '-' || - lookahead == ':') ADVANCE(76); + lookahead == ':') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 209: + case 211: ACCEPT_TOKEN(sym_xhp_class_identifier); if (lookahead == '-' || - lookahead == ':') ADVANCE(74); + lookahead == ':') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); END_STATE(); - case 210: + case 212: ACCEPT_TOKEN(sym_xhp_category_identifier); if (lookahead == '-' || - lookahead == ':') ADVANCE(75); + lookahead == ':') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); END_STATE(); - case 211: + case 213: ACCEPT_TOKEN(sym_xhp_comment); if (lookahead == '-') ADVANCE(48); if (lookahead == '>') ADVANCE(32); END_STATE(); - case 212: + case 214: ACCEPT_TOKEN(sym_xhp_string); - if (lookahead == '\n') ADVANCE(217); + if (lookahead == '\n') ADVANCE(219); if (lookahead != 0 && lookahead != '<' && - lookahead != '{') ADVANCE(212); + lookahead != '{') ADVANCE(214); END_STATE(); - case 213: + case 215: ACCEPT_TOKEN(sym_xhp_string); - if (lookahead == '*') ADVANCE(215); - if (lookahead == '/') ADVANCE(212); + if (lookahead == '*') ADVANCE(217); + if (lookahead == '/') ADVANCE(214); if (lookahead != 0 && lookahead != '<' && - lookahead != '{') ADVANCE(217); + lookahead != '{') ADVANCE(219); END_STATE(); - case 214: + case 216: ACCEPT_TOKEN(sym_xhp_string); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '/') ADVANCE(217); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '/') ADVANCE(219); if (lookahead != 0 && lookahead != '<' && - lookahead != '{') ADVANCE(215); + lookahead != '{') ADVANCE(217); END_STATE(); - case 215: + case 217: ACCEPT_TOKEN(sym_xhp_string); - if (lookahead == '*') ADVANCE(214); + if (lookahead == '*') ADVANCE(216); if (lookahead != 0 && lookahead != '<' && - lookahead != '{') ADVANCE(215); + lookahead != '{') ADVANCE(217); END_STATE(); - case 216: + case 218: ACCEPT_TOKEN(sym_xhp_string); - if (lookahead == '/') ADVANCE(213); + if (lookahead == '/') ADVANCE(215); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(216); + lookahead == ' ') ADVANCE(218); if (lookahead != 0 && lookahead != '<' && - lookahead != '{') ADVANCE(217); + lookahead != '{') ADVANCE(219); END_STATE(); - case 217: + case 219: ACCEPT_TOKEN(sym_xhp_string); if (lookahead != 0 && lookahead != '<' && - lookahead != '{') ADVANCE(217); + lookahead != '{') ADVANCE(219); END_STATE(); - case 218: + case 220: ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); - case 219: + case 221: ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); - case 220: + case 222: ACCEPT_TOKEN(anon_sym_ATrequired); END_STATE(); - case 221: + case 223: ACCEPT_TOKEN(anon_sym_ATlateinit); END_STATE(); - case 222: + case 224: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 223: + case 225: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(223); + lookahead != '\n') ADVANCE(225); END_STATE(); default: return false; @@ -12769,1910 +12933,1910 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 80}, - [2] = {.lex_state = 81}, - [3] = {.lex_state = 81}, - [4] = {.lex_state = 81}, - [5] = {.lex_state = 81}, - [6] = {.lex_state = 81}, - [7] = {.lex_state = 81}, - [8] = {.lex_state = 81}, - [9] = {.lex_state = 81}, - [10] = {.lex_state = 81}, - [11] = {.lex_state = 81}, - [12] = {.lex_state = 81}, - [13] = {.lex_state = 81}, - [14] = {.lex_state = 81}, - [15] = {.lex_state = 81}, - [16] = {.lex_state = 81}, - [17] = {.lex_state = 81}, - [18] = {.lex_state = 81}, - [19] = {.lex_state = 81}, - [20] = {.lex_state = 81}, - [21] = {.lex_state = 81}, - [22] = {.lex_state = 81}, - [23] = {.lex_state = 81}, - [24] = {.lex_state = 81}, - [25] = {.lex_state = 81}, - [26] = {.lex_state = 81}, - [27] = {.lex_state = 81}, - [28] = {.lex_state = 81}, - [29] = {.lex_state = 81}, - [30] = {.lex_state = 81}, - [31] = {.lex_state = 81}, - [32] = {.lex_state = 81}, - [33] = {.lex_state = 81}, - [34] = {.lex_state = 81}, - [35] = {.lex_state = 81}, - [36] = {.lex_state = 81}, - [37] = {.lex_state = 81}, - [38] = {.lex_state = 81}, - [39] = {.lex_state = 81}, - [40] = {.lex_state = 81}, - [41] = {.lex_state = 81}, - [42] = {.lex_state = 81}, - [43] = {.lex_state = 81}, - [44] = {.lex_state = 81}, - [45] = {.lex_state = 81}, - [46] = {.lex_state = 81}, - [47] = {.lex_state = 81}, - [48] = {.lex_state = 81}, - [49] = {.lex_state = 81}, - [50] = {.lex_state = 81}, - [51] = {.lex_state = 81}, - [52] = {.lex_state = 81}, - [53] = {.lex_state = 81}, - [54] = {.lex_state = 81}, - [55] = {.lex_state = 81}, - [56] = {.lex_state = 81}, - [57] = {.lex_state = 81}, - [58] = {.lex_state = 81}, - [59] = {.lex_state = 81}, - [60] = {.lex_state = 81}, - [61] = {.lex_state = 81}, - [62] = {.lex_state = 81}, - [63] = {.lex_state = 81}, - [64] = {.lex_state = 81}, - [65] = {.lex_state = 81}, - [66] = {.lex_state = 81}, - [67] = {.lex_state = 81}, - [68] = {.lex_state = 81}, - [69] = {.lex_state = 81}, - [70] = {.lex_state = 81}, - [71] = {.lex_state = 81}, - [72] = {.lex_state = 81}, - [73] = {.lex_state = 81}, - [74] = {.lex_state = 81}, - [75] = {.lex_state = 81}, - [76] = {.lex_state = 81}, - [77] = {.lex_state = 81}, - [78] = {.lex_state = 81}, - [79] = {.lex_state = 81}, - [80] = {.lex_state = 81}, - [81] = {.lex_state = 81}, - [82] = {.lex_state = 81}, - [83] = {.lex_state = 81}, - [84] = {.lex_state = 81}, - [85] = {.lex_state = 81}, - [86] = {.lex_state = 81}, - [87] = {.lex_state = 81}, - [88] = {.lex_state = 81}, - [89] = {.lex_state = 81}, - [90] = {.lex_state = 81}, - [91] = {.lex_state = 81}, - [92] = {.lex_state = 81}, - [93] = {.lex_state = 81}, - [94] = {.lex_state = 81}, - [95] = {.lex_state = 81}, - [96] = {.lex_state = 81}, - [97] = {.lex_state = 81}, - [98] = {.lex_state = 81}, - [99] = {.lex_state = 81}, - [100] = {.lex_state = 81}, - [101] = {.lex_state = 81}, - [102] = {.lex_state = 81}, - [103] = {.lex_state = 81}, - [104] = {.lex_state = 81}, - [105] = {.lex_state = 81}, - [106] = {.lex_state = 81}, - [107] = {.lex_state = 81}, - [108] = {.lex_state = 81}, - [109] = {.lex_state = 81}, - [110] = {.lex_state = 81}, - [111] = {.lex_state = 81}, - [112] = {.lex_state = 81}, - [113] = {.lex_state = 81}, - [114] = {.lex_state = 81}, - [115] = {.lex_state = 81}, - [116] = {.lex_state = 81}, - [117] = {.lex_state = 81}, - [118] = {.lex_state = 81}, - [119] = {.lex_state = 81}, - [120] = {.lex_state = 81}, - [121] = {.lex_state = 81}, - [122] = {.lex_state = 81}, - [123] = {.lex_state = 81}, - [124] = {.lex_state = 81}, - [125] = {.lex_state = 81}, - [126] = {.lex_state = 81}, - [127] = {.lex_state = 81}, - [128] = {.lex_state = 81}, - [129] = {.lex_state = 81}, - [130] = {.lex_state = 81}, - [131] = {.lex_state = 81}, - [132] = {.lex_state = 81}, - [133] = {.lex_state = 81}, - [134] = {.lex_state = 81}, - [135] = {.lex_state = 81}, - [136] = {.lex_state = 81}, - [137] = {.lex_state = 81}, - [138] = {.lex_state = 81}, - [139] = {.lex_state = 81}, - [140] = {.lex_state = 81}, - [141] = {.lex_state = 81}, - [142] = {.lex_state = 81}, - [143] = {.lex_state = 81}, - [144] = {.lex_state = 81}, - [145] = {.lex_state = 81}, - [146] = {.lex_state = 81}, - [147] = {.lex_state = 81}, - [148] = {.lex_state = 81}, - [149] = {.lex_state = 81}, - [150] = {.lex_state = 81}, - [151] = {.lex_state = 81}, - [152] = {.lex_state = 81}, - [153] = {.lex_state = 81}, - [154] = {.lex_state = 81}, - [155] = {.lex_state = 81}, - [156] = {.lex_state = 81}, - [157] = {.lex_state = 81}, - [158] = {.lex_state = 81}, - [159] = {.lex_state = 81}, - [160] = {.lex_state = 81}, - [161] = {.lex_state = 81}, - [162] = {.lex_state = 81}, - [163] = {.lex_state = 81}, - [164] = {.lex_state = 81}, - [165] = {.lex_state = 81}, - [166] = {.lex_state = 81}, - [167] = {.lex_state = 81}, - [168] = {.lex_state = 81}, - [169] = {.lex_state = 81}, - [170] = {.lex_state = 81}, - [171] = {.lex_state = 81}, - [172] = {.lex_state = 81}, - [173] = {.lex_state = 81}, - [174] = {.lex_state = 81}, - [175] = {.lex_state = 81}, - [176] = {.lex_state = 81}, - [177] = {.lex_state = 81}, - [178] = {.lex_state = 81}, - [179] = {.lex_state = 81}, - [180] = {.lex_state = 81}, - [181] = {.lex_state = 81}, - [182] = {.lex_state = 81}, - [183] = {.lex_state = 81}, - [184] = {.lex_state = 81}, + [1] = {.lex_state = 81}, + [2] = {.lex_state = 82}, + [3] = {.lex_state = 82}, + [4] = {.lex_state = 82}, + [5] = {.lex_state = 82}, + [6] = {.lex_state = 82}, + [7] = {.lex_state = 82}, + [8] = {.lex_state = 82}, + [9] = {.lex_state = 82}, + [10] = {.lex_state = 82}, + [11] = {.lex_state = 82}, + [12] = {.lex_state = 82}, + [13] = {.lex_state = 82}, + [14] = {.lex_state = 82}, + [15] = {.lex_state = 82}, + [16] = {.lex_state = 82}, + [17] = {.lex_state = 82}, + [18] = {.lex_state = 82}, + [19] = {.lex_state = 82}, + [20] = {.lex_state = 82}, + [21] = {.lex_state = 82}, + [22] = {.lex_state = 82}, + [23] = {.lex_state = 82}, + [24] = {.lex_state = 82}, + [25] = {.lex_state = 82}, + [26] = {.lex_state = 82}, + [27] = {.lex_state = 82}, + [28] = {.lex_state = 82}, + [29] = {.lex_state = 82}, + [30] = {.lex_state = 82}, + [31] = {.lex_state = 82}, + [32] = {.lex_state = 82}, + [33] = {.lex_state = 82}, + [34] = {.lex_state = 82}, + [35] = {.lex_state = 82}, + [36] = {.lex_state = 82}, + [37] = {.lex_state = 82}, + [38] = {.lex_state = 82}, + [39] = {.lex_state = 82}, + [40] = {.lex_state = 82}, + [41] = {.lex_state = 82}, + [42] = {.lex_state = 82}, + [43] = {.lex_state = 82}, + [44] = {.lex_state = 82}, + [45] = {.lex_state = 82}, + [46] = {.lex_state = 82}, + [47] = {.lex_state = 82}, + [48] = {.lex_state = 82}, + [49] = {.lex_state = 82}, + [50] = {.lex_state = 82}, + [51] = {.lex_state = 82}, + [52] = {.lex_state = 82}, + [53] = {.lex_state = 82}, + [54] = {.lex_state = 82}, + [55] = {.lex_state = 82}, + [56] = {.lex_state = 82}, + [57] = {.lex_state = 82}, + [58] = {.lex_state = 82}, + [59] = {.lex_state = 82}, + [60] = {.lex_state = 82}, + [61] = {.lex_state = 82}, + [62] = {.lex_state = 82}, + [63] = {.lex_state = 82}, + [64] = {.lex_state = 82}, + [65] = {.lex_state = 82}, + [66] = {.lex_state = 82}, + [67] = {.lex_state = 82}, + [68] = {.lex_state = 82}, + [69] = {.lex_state = 82}, + [70] = {.lex_state = 82}, + [71] = {.lex_state = 82}, + [72] = {.lex_state = 82}, + [73] = {.lex_state = 82}, + [74] = {.lex_state = 82}, + [75] = {.lex_state = 82}, + [76] = {.lex_state = 82}, + [77] = {.lex_state = 82}, + [78] = {.lex_state = 82}, + [79] = {.lex_state = 82}, + [80] = {.lex_state = 82}, + [81] = {.lex_state = 82}, + [82] = {.lex_state = 82}, + [83] = {.lex_state = 82}, + [84] = {.lex_state = 82}, + [85] = {.lex_state = 82}, + [86] = {.lex_state = 82}, + [87] = {.lex_state = 82}, + [88] = {.lex_state = 82}, + [89] = {.lex_state = 82}, + [90] = {.lex_state = 82}, + [91] = {.lex_state = 82}, + [92] = {.lex_state = 82}, + [93] = {.lex_state = 82}, + [94] = {.lex_state = 82}, + [95] = {.lex_state = 82}, + [96] = {.lex_state = 82}, + [97] = {.lex_state = 82}, + [98] = {.lex_state = 82}, + [99] = {.lex_state = 82}, + [100] = {.lex_state = 82}, + [101] = {.lex_state = 82}, + [102] = {.lex_state = 82}, + [103] = {.lex_state = 82}, + [104] = {.lex_state = 82}, + [105] = {.lex_state = 82}, + [106] = {.lex_state = 82}, + [107] = {.lex_state = 82}, + [108] = {.lex_state = 82}, + [109] = {.lex_state = 82}, + [110] = {.lex_state = 82}, + [111] = {.lex_state = 82}, + [112] = {.lex_state = 82}, + [113] = {.lex_state = 82}, + [114] = {.lex_state = 82}, + [115] = {.lex_state = 82}, + [116] = {.lex_state = 82}, + [117] = {.lex_state = 82}, + [118] = {.lex_state = 82}, + [119] = {.lex_state = 82}, + [120] = {.lex_state = 82}, + [121] = {.lex_state = 82}, + [122] = {.lex_state = 82}, + [123] = {.lex_state = 82}, + [124] = {.lex_state = 82}, + [125] = {.lex_state = 82}, + [126] = {.lex_state = 82}, + [127] = {.lex_state = 82}, + [128] = {.lex_state = 82}, + [129] = {.lex_state = 82}, + [130] = {.lex_state = 82}, + [131] = {.lex_state = 82}, + [132] = {.lex_state = 82}, + [133] = {.lex_state = 82}, + [134] = {.lex_state = 82}, + [135] = {.lex_state = 82}, + [136] = {.lex_state = 82}, + [137] = {.lex_state = 82}, + [138] = {.lex_state = 82}, + [139] = {.lex_state = 82}, + [140] = {.lex_state = 82}, + [141] = {.lex_state = 82}, + [142] = {.lex_state = 82}, + [143] = {.lex_state = 82}, + [144] = {.lex_state = 82}, + [145] = {.lex_state = 82}, + [146] = {.lex_state = 82}, + [147] = {.lex_state = 82}, + [148] = {.lex_state = 82}, + [149] = {.lex_state = 82}, + [150] = {.lex_state = 82}, + [151] = {.lex_state = 82}, + [152] = {.lex_state = 82}, + [153] = {.lex_state = 82}, + [154] = {.lex_state = 82}, + [155] = {.lex_state = 82}, + [156] = {.lex_state = 82}, + [157] = {.lex_state = 82}, + [158] = {.lex_state = 82}, + [159] = {.lex_state = 82}, + [160] = {.lex_state = 82}, + [161] = {.lex_state = 82}, + [162] = {.lex_state = 82}, + [163] = {.lex_state = 82}, + [164] = {.lex_state = 82}, + [165] = {.lex_state = 82}, + [166] = {.lex_state = 82}, + [167] = {.lex_state = 82}, + [168] = {.lex_state = 82}, + [169] = {.lex_state = 82}, + [170] = {.lex_state = 82}, + [171] = {.lex_state = 82}, + [172] = {.lex_state = 82}, + [173] = {.lex_state = 82}, + [174] = {.lex_state = 82}, + [175] = {.lex_state = 82}, + [176] = {.lex_state = 82}, + [177] = {.lex_state = 82}, + [178] = {.lex_state = 82}, + [179] = {.lex_state = 82}, + [180] = {.lex_state = 82}, + [181] = {.lex_state = 82}, + [182] = {.lex_state = 82}, + [183] = {.lex_state = 82}, + [184] = {.lex_state = 82}, [185] = {.lex_state = 1}, [186] = {.lex_state = 1}, [187] = {.lex_state = 1}, - [188] = {.lex_state = 2}, - [189] = {.lex_state = 2}, + [188] = {.lex_state = 1}, + [189] = {.lex_state = 1}, [190] = {.lex_state = 2}, - [191] = {.lex_state = 3}, - [192] = {.lex_state = 3}, - [193] = {.lex_state = 3}, - [194] = {.lex_state = 81}, - [195] = {.lex_state = 81}, - [196] = {.lex_state = 81}, - [197] = {.lex_state = 81}, - [198] = {.lex_state = 81}, - [199] = {.lex_state = 81}, - [200] = {.lex_state = 81}, - [201] = {.lex_state = 81}, - [202] = {.lex_state = 81}, - [203] = {.lex_state = 81}, - [204] = {.lex_state = 81}, - [205] = {.lex_state = 81}, - [206] = {.lex_state = 81}, - [207] = {.lex_state = 81}, - [208] = {.lex_state = 81}, - [209] = {.lex_state = 81}, - [210] = {.lex_state = 81}, - [211] = {.lex_state = 81}, - [212] = {.lex_state = 81}, - [213] = {.lex_state = 81}, - [214] = {.lex_state = 81}, - [215] = {.lex_state = 81}, - [216] = {.lex_state = 81}, - [217] = {.lex_state = 81}, - [218] = {.lex_state = 81}, - [219] = {.lex_state = 81}, - [220] = {.lex_state = 81}, - [221] = {.lex_state = 81}, - [222] = {.lex_state = 81}, - [223] = {.lex_state = 81}, - [224] = {.lex_state = 81}, - [225] = {.lex_state = 81}, - [226] = {.lex_state = 81}, - [227] = {.lex_state = 81}, - [228] = {.lex_state = 81}, - [229] = {.lex_state = 81}, - [230] = {.lex_state = 81}, - [231] = {.lex_state = 81}, - [232] = {.lex_state = 81}, - [233] = {.lex_state = 81}, - [234] = {.lex_state = 81}, - [235] = {.lex_state = 81}, - [236] = {.lex_state = 81}, - [237] = {.lex_state = 81}, - [238] = {.lex_state = 81}, - [239] = {.lex_state = 81}, - [240] = {.lex_state = 81}, - [241] = {.lex_state = 81}, - [242] = {.lex_state = 81}, - [243] = {.lex_state = 81}, - [244] = {.lex_state = 81}, - [245] = {.lex_state = 81}, - [246] = {.lex_state = 81}, - [247] = {.lex_state = 81}, - [248] = {.lex_state = 81}, - [249] = {.lex_state = 81}, - [250] = {.lex_state = 81}, - [251] = {.lex_state = 81}, - [252] = {.lex_state = 81}, - [253] = {.lex_state = 81}, - [254] = {.lex_state = 81}, - [255] = {.lex_state = 81}, - [256] = {.lex_state = 81}, - [257] = {.lex_state = 81}, - [258] = {.lex_state = 81}, - [259] = {.lex_state = 81}, - [260] = {.lex_state = 81}, - [261] = {.lex_state = 81}, - [262] = {.lex_state = 81}, - [263] = {.lex_state = 81}, - [264] = {.lex_state = 81}, - [265] = {.lex_state = 81}, - [266] = {.lex_state = 81}, - [267] = {.lex_state = 81}, - [268] = {.lex_state = 81}, - [269] = {.lex_state = 81}, - [270] = {.lex_state = 81}, - [271] = {.lex_state = 81}, - [272] = {.lex_state = 81}, - [273] = {.lex_state = 81}, - [274] = {.lex_state = 81}, - [275] = {.lex_state = 81}, - [276] = {.lex_state = 81}, - [277] = {.lex_state = 81}, - [278] = {.lex_state = 81}, - [279] = {.lex_state = 81}, - [280] = {.lex_state = 81}, - [281] = {.lex_state = 81}, - [282] = {.lex_state = 81}, - [283] = {.lex_state = 81}, - [284] = {.lex_state = 81}, - [285] = {.lex_state = 81}, - [286] = {.lex_state = 81}, - [287] = {.lex_state = 81}, - [288] = {.lex_state = 81}, - [289] = {.lex_state = 81}, - [290] = {.lex_state = 81}, - [291] = {.lex_state = 81}, - [292] = {.lex_state = 81}, - [293] = {.lex_state = 81}, - [294] = {.lex_state = 81}, - [295] = {.lex_state = 81}, - [296] = {.lex_state = 81}, - [297] = {.lex_state = 81}, - [298] = {.lex_state = 81}, - [299] = {.lex_state = 81}, - [300] = {.lex_state = 81}, - [301] = {.lex_state = 81}, - [302] = {.lex_state = 81}, - [303] = {.lex_state = 81}, - [304] = {.lex_state = 81}, - [305] = {.lex_state = 81}, - [306] = {.lex_state = 81}, - [307] = {.lex_state = 81}, - [308] = {.lex_state = 81}, - [309] = {.lex_state = 81}, - [310] = {.lex_state = 81}, - [311] = {.lex_state = 81}, - [312] = {.lex_state = 81}, - [313] = {.lex_state = 81}, - [314] = {.lex_state = 81}, - [315] = {.lex_state = 81}, - [316] = {.lex_state = 81}, - [317] = {.lex_state = 81}, - [318] = {.lex_state = 81}, - [319] = {.lex_state = 81}, - [320] = {.lex_state = 81}, - [321] = {.lex_state = 81}, - [322] = {.lex_state = 81}, - [323] = {.lex_state = 81}, - [324] = {.lex_state = 81}, - [325] = {.lex_state = 81}, - [326] = {.lex_state = 81}, - [327] = {.lex_state = 81}, - [328] = {.lex_state = 81}, - [329] = {.lex_state = 81}, - [330] = {.lex_state = 81}, - [331] = {.lex_state = 81}, - [332] = {.lex_state = 81}, - [333] = {.lex_state = 81}, - [334] = {.lex_state = 81}, - [335] = {.lex_state = 81}, - [336] = {.lex_state = 81}, - [337] = {.lex_state = 81}, - [338] = {.lex_state = 81}, - [339] = {.lex_state = 81}, - [340] = {.lex_state = 81}, - [341] = {.lex_state = 81}, - [342] = {.lex_state = 81}, - [343] = {.lex_state = 81}, - [344] = {.lex_state = 81}, - [345] = {.lex_state = 81}, - [346] = {.lex_state = 81}, - [347] = {.lex_state = 81}, - [348] = {.lex_state = 81}, - [349] = {.lex_state = 81}, - [350] = {.lex_state = 81}, - [351] = {.lex_state = 81}, - [352] = {.lex_state = 81}, - [353] = {.lex_state = 81}, - [354] = {.lex_state = 81}, - [355] = {.lex_state = 81}, - [356] = {.lex_state = 81}, - [357] = {.lex_state = 81}, - [358] = {.lex_state = 81}, - [359] = {.lex_state = 81}, - [360] = {.lex_state = 81}, - [361] = {.lex_state = 81}, - [362] = {.lex_state = 81}, - [363] = {.lex_state = 81}, - [364] = {.lex_state = 81}, - [365] = {.lex_state = 81}, - [366] = {.lex_state = 81}, - [367] = {.lex_state = 81}, - [368] = {.lex_state = 81}, - [369] = {.lex_state = 81}, - [370] = {.lex_state = 81}, - [371] = {.lex_state = 81}, - [372] = {.lex_state = 81}, - [373] = {.lex_state = 81}, - [374] = {.lex_state = 81}, - [375] = {.lex_state = 81}, - [376] = {.lex_state = 81}, - [377] = {.lex_state = 81}, - [378] = {.lex_state = 81}, - [379] = {.lex_state = 81}, - [380] = {.lex_state = 81}, - [381] = {.lex_state = 81}, - [382] = {.lex_state = 81}, - [383] = {.lex_state = 81}, - [384] = {.lex_state = 81}, - [385] = {.lex_state = 81}, - [386] = {.lex_state = 81}, - [387] = {.lex_state = 81}, - [388] = {.lex_state = 81}, - [389] = {.lex_state = 81}, - [390] = {.lex_state = 81}, - [391] = {.lex_state = 81}, - [392] = {.lex_state = 81}, - [393] = {.lex_state = 81}, - [394] = {.lex_state = 81}, - [395] = {.lex_state = 81}, - [396] = {.lex_state = 81}, - [397] = {.lex_state = 81}, - [398] = {.lex_state = 81}, - [399] = {.lex_state = 81}, - [400] = {.lex_state = 81}, - [401] = {.lex_state = 81}, - [402] = {.lex_state = 81}, - [403] = {.lex_state = 81}, - [404] = {.lex_state = 81}, - [405] = {.lex_state = 81}, - [406] = {.lex_state = 81}, - [407] = {.lex_state = 81}, - [408] = {.lex_state = 81}, - [409] = {.lex_state = 81}, - [410] = {.lex_state = 81}, - [411] = {.lex_state = 81}, - [412] = {.lex_state = 81}, - [413] = {.lex_state = 81}, - [414] = {.lex_state = 81}, - [415] = {.lex_state = 81}, - [416] = {.lex_state = 81}, - [417] = {.lex_state = 81}, - [418] = {.lex_state = 81}, - [419] = {.lex_state = 81}, - [420] = {.lex_state = 81}, - [421] = {.lex_state = 81}, - [422] = {.lex_state = 81}, - [423] = {.lex_state = 81}, - [424] = {.lex_state = 81}, - [425] = {.lex_state = 81}, - [426] = {.lex_state = 81}, - [427] = {.lex_state = 81}, - [428] = {.lex_state = 81}, - [429] = {.lex_state = 81}, - [430] = {.lex_state = 81}, - [431] = {.lex_state = 81}, - [432] = {.lex_state = 81}, - [433] = {.lex_state = 81}, - [434] = {.lex_state = 81}, - [435] = {.lex_state = 81}, - [436] = {.lex_state = 81}, - [437] = {.lex_state = 81}, - [438] = {.lex_state = 81}, - [439] = {.lex_state = 81}, - [440] = {.lex_state = 81}, - [441] = {.lex_state = 81}, - [442] = {.lex_state = 81}, - [443] = {.lex_state = 81}, - [444] = {.lex_state = 81}, - [445] = {.lex_state = 81}, - [446] = {.lex_state = 81}, - [447] = {.lex_state = 81}, - [448] = {.lex_state = 81}, - [449] = {.lex_state = 81}, - [450] = {.lex_state = 81}, - [451] = {.lex_state = 81}, - [452] = {.lex_state = 81}, - [453] = {.lex_state = 81}, - [454] = {.lex_state = 81}, - [455] = {.lex_state = 81}, - [456] = {.lex_state = 81}, - [457] = {.lex_state = 81}, - [458] = {.lex_state = 81}, - [459] = {.lex_state = 81}, - [460] = {.lex_state = 81}, - [461] = {.lex_state = 81}, - [462] = {.lex_state = 81}, - [463] = {.lex_state = 81}, - [464] = {.lex_state = 81}, - [465] = {.lex_state = 81}, - [466] = {.lex_state = 81}, - [467] = {.lex_state = 81}, - [468] = {.lex_state = 81}, - [469] = {.lex_state = 81}, - [470] = {.lex_state = 81}, - [471] = {.lex_state = 81}, - [472] = {.lex_state = 81}, - [473] = {.lex_state = 81}, - [474] = {.lex_state = 81}, - [475] = {.lex_state = 81}, - [476] = {.lex_state = 81}, - [477] = {.lex_state = 81}, - [478] = {.lex_state = 81}, - [479] = {.lex_state = 81}, - [480] = {.lex_state = 81}, - [481] = {.lex_state = 81}, - [482] = {.lex_state = 81}, - [483] = {.lex_state = 81}, - [484] = {.lex_state = 81}, - [485] = {.lex_state = 81}, - [486] = {.lex_state = 81}, - [487] = {.lex_state = 81}, - [488] = {.lex_state = 81}, - [489] = {.lex_state = 81}, - [490] = {.lex_state = 81}, - [491] = {.lex_state = 81}, - [492] = {.lex_state = 81}, - [493] = {.lex_state = 81}, - [494] = {.lex_state = 81}, - [495] = {.lex_state = 81}, - [496] = {.lex_state = 81}, - [497] = {.lex_state = 81}, - [498] = {.lex_state = 81}, - [499] = {.lex_state = 81}, - [500] = {.lex_state = 81}, - [501] = {.lex_state = 81}, - [502] = {.lex_state = 81}, - [503] = {.lex_state = 81}, - [504] = {.lex_state = 81}, - [505] = {.lex_state = 81}, - [506] = {.lex_state = 81}, - [507] = {.lex_state = 81}, - [508] = {.lex_state = 81}, - [509] = {.lex_state = 81}, - [510] = {.lex_state = 81}, - [511] = {.lex_state = 81}, - [512] = {.lex_state = 81}, - [513] = {.lex_state = 81}, - [514] = {.lex_state = 81}, - [515] = {.lex_state = 81}, - [516] = {.lex_state = 81}, - [517] = {.lex_state = 81}, - [518] = {.lex_state = 81}, - [519] = {.lex_state = 81}, - [520] = {.lex_state = 81}, - [521] = {.lex_state = 81}, - [522] = {.lex_state = 81}, - [523] = {.lex_state = 81}, - [524] = {.lex_state = 81}, - [525] = {.lex_state = 81}, - [526] = {.lex_state = 81}, - [527] = {.lex_state = 81}, - [528] = {.lex_state = 81}, - [529] = {.lex_state = 81}, - [530] = {.lex_state = 81}, - [531] = {.lex_state = 81}, - [532] = {.lex_state = 81}, - [533] = {.lex_state = 81}, - [534] = {.lex_state = 81}, - [535] = {.lex_state = 81}, - [536] = {.lex_state = 81}, - [537] = {.lex_state = 81}, - [538] = {.lex_state = 81}, - [539] = {.lex_state = 81}, - [540] = {.lex_state = 81}, - [541] = {.lex_state = 81}, - [542] = {.lex_state = 81}, - [543] = {.lex_state = 81}, - [544] = {.lex_state = 81}, - [545] = {.lex_state = 81}, - [546] = {.lex_state = 81}, - [547] = {.lex_state = 81}, - [548] = {.lex_state = 81}, - [549] = {.lex_state = 81}, - [550] = {.lex_state = 81}, - [551] = {.lex_state = 81}, - [552] = {.lex_state = 81}, - [553] = {.lex_state = 81}, - [554] = {.lex_state = 81}, - [555] = {.lex_state = 81}, - [556] = {.lex_state = 81}, - [557] = {.lex_state = 81}, - [558] = {.lex_state = 81}, - [559] = {.lex_state = 81}, - [560] = {.lex_state = 81}, - [561] = {.lex_state = 81}, - [562] = {.lex_state = 81}, - [563] = {.lex_state = 81}, - [564] = {.lex_state = 81}, - [565] = {.lex_state = 81}, - [566] = {.lex_state = 81}, - [567] = {.lex_state = 81}, - [568] = {.lex_state = 81}, - [569] = {.lex_state = 81}, - [570] = {.lex_state = 81}, - [571] = {.lex_state = 81}, - [572] = {.lex_state = 81}, - [573] = {.lex_state = 81}, - [574] = {.lex_state = 81}, - [575] = {.lex_state = 81}, - [576] = {.lex_state = 81}, - [577] = {.lex_state = 81}, - [578] = {.lex_state = 81}, - [579] = {.lex_state = 81}, - [580] = {.lex_state = 81}, - [581] = {.lex_state = 81}, - [582] = {.lex_state = 81}, - [583] = {.lex_state = 81}, - [584] = {.lex_state = 81}, - [585] = {.lex_state = 81}, - [586] = {.lex_state = 81}, - [587] = {.lex_state = 81}, - [588] = {.lex_state = 81}, - [589] = {.lex_state = 81}, - [590] = {.lex_state = 81}, - [591] = {.lex_state = 81}, - [592] = {.lex_state = 81}, - [593] = {.lex_state = 81}, - [594] = {.lex_state = 81}, - [595] = {.lex_state = 81}, - [596] = {.lex_state = 81}, - [597] = {.lex_state = 81}, - [598] = {.lex_state = 81}, - [599] = {.lex_state = 81}, - [600] = {.lex_state = 81}, - [601] = {.lex_state = 81}, - [602] = {.lex_state = 81}, - [603] = {.lex_state = 81}, - [604] = {.lex_state = 81}, - [605] = {.lex_state = 81}, - [606] = {.lex_state = 81}, - [607] = {.lex_state = 81}, - [608] = {.lex_state = 81}, - [609] = {.lex_state = 81}, - [610] = {.lex_state = 81}, - [611] = {.lex_state = 81}, - [612] = {.lex_state = 81}, - [613] = {.lex_state = 81}, - [614] = {.lex_state = 81}, - [615] = {.lex_state = 81}, - [616] = {.lex_state = 81}, - [617] = {.lex_state = 81}, - [618] = {.lex_state = 81}, - [619] = {.lex_state = 81}, - [620] = {.lex_state = 81}, - [621] = {.lex_state = 81}, - [622] = {.lex_state = 81}, - [623] = {.lex_state = 81}, - [624] = {.lex_state = 81}, - [625] = {.lex_state = 81}, - [626] = {.lex_state = 81}, - [627] = {.lex_state = 81}, - [628] = {.lex_state = 81}, - [629] = {.lex_state = 81}, - [630] = {.lex_state = 81}, - [631] = {.lex_state = 81}, - [632] = {.lex_state = 81}, - [633] = {.lex_state = 81}, - [634] = {.lex_state = 81}, - [635] = {.lex_state = 81}, - [636] = {.lex_state = 81}, - [637] = {.lex_state = 81}, - [638] = {.lex_state = 81}, - [639] = {.lex_state = 81}, - [640] = {.lex_state = 81}, - [641] = {.lex_state = 81}, - [642] = {.lex_state = 81}, - [643] = {.lex_state = 81}, - [644] = {.lex_state = 81}, - [645] = {.lex_state = 81}, - [646] = {.lex_state = 81}, - [647] = {.lex_state = 81}, - [648] = {.lex_state = 81}, - [649] = {.lex_state = 81}, - [650] = {.lex_state = 81}, - [651] = {.lex_state = 81}, - [652] = {.lex_state = 81}, - [653] = {.lex_state = 81}, - [654] = {.lex_state = 81}, - [655] = {.lex_state = 81}, - [656] = {.lex_state = 81}, - [657] = {.lex_state = 81}, - [658] = {.lex_state = 81}, - [659] = {.lex_state = 81}, - [660] = {.lex_state = 81}, - [661] = {.lex_state = 81}, - [662] = {.lex_state = 81}, - [663] = {.lex_state = 81}, - [664] = {.lex_state = 81}, - [665] = {.lex_state = 81}, - [666] = {.lex_state = 81}, - [667] = {.lex_state = 81}, - [668] = {.lex_state = 81}, - [669] = {.lex_state = 81}, - [670] = {.lex_state = 81}, - [671] = {.lex_state = 81}, - [672] = {.lex_state = 81}, - [673] = {.lex_state = 81}, - [674] = {.lex_state = 81}, - [675] = {.lex_state = 81}, - [676] = {.lex_state = 81}, - [677] = {.lex_state = 81}, - [678] = {.lex_state = 81}, - [679] = {.lex_state = 81}, - [680] = {.lex_state = 81}, - [681] = {.lex_state = 81}, - [682] = {.lex_state = 81}, - [683] = {.lex_state = 81}, - [684] = {.lex_state = 81}, - [685] = {.lex_state = 81}, - [686] = {.lex_state = 81}, - [687] = {.lex_state = 81}, - [688] = {.lex_state = 81}, - [689] = {.lex_state = 81}, - [690] = {.lex_state = 81}, - [691] = {.lex_state = 81}, - [692] = {.lex_state = 81}, - [693] = {.lex_state = 81}, - [694] = {.lex_state = 81}, - [695] = {.lex_state = 81}, - [696] = {.lex_state = 81}, - [697] = {.lex_state = 81}, - [698] = {.lex_state = 81}, - [699] = {.lex_state = 81}, - [700] = {.lex_state = 81}, - [701] = {.lex_state = 81}, - [702] = {.lex_state = 81}, - [703] = {.lex_state = 81}, - [704] = {.lex_state = 81}, - [705] = {.lex_state = 81}, - [706] = {.lex_state = 81}, - [707] = {.lex_state = 81}, - [708] = {.lex_state = 81}, - [709] = {.lex_state = 81}, - [710] = {.lex_state = 81}, - [711] = {.lex_state = 81}, - [712] = {.lex_state = 81}, - [713] = {.lex_state = 81}, - [714] = {.lex_state = 81}, - [715] = {.lex_state = 81}, - [716] = {.lex_state = 81}, - [717] = {.lex_state = 81}, - [718] = {.lex_state = 81}, - [719] = {.lex_state = 81}, - [720] = {.lex_state = 81}, - [721] = {.lex_state = 81}, - [722] = {.lex_state = 81}, - [723] = {.lex_state = 81}, - [724] = {.lex_state = 81}, - [725] = {.lex_state = 81}, - [726] = {.lex_state = 81}, - [727] = {.lex_state = 81}, - [728] = {.lex_state = 81}, - [729] = {.lex_state = 81}, - [730] = {.lex_state = 81}, - [731] = {.lex_state = 81}, - [732] = {.lex_state = 81}, - [733] = {.lex_state = 81}, - [734] = {.lex_state = 81}, - [735] = {.lex_state = 81}, - [736] = {.lex_state = 81}, - [737] = {.lex_state = 81}, - [738] = {.lex_state = 81}, - [739] = {.lex_state = 81}, - [740] = {.lex_state = 81}, - [741] = {.lex_state = 81}, - [742] = {.lex_state = 81}, - [743] = {.lex_state = 81}, - [744] = {.lex_state = 81}, - [745] = {.lex_state = 81}, - [746] = {.lex_state = 81}, - [747] = {.lex_state = 81}, - [748] = {.lex_state = 81}, - [749] = {.lex_state = 81}, - [750] = {.lex_state = 81}, - [751] = {.lex_state = 81}, - [752] = {.lex_state = 81}, - [753] = {.lex_state = 81}, - [754] = {.lex_state = 81}, - [755] = {.lex_state = 81}, - [756] = {.lex_state = 81}, - [757] = {.lex_state = 81}, - [758] = {.lex_state = 81}, - [759] = {.lex_state = 81}, - [760] = {.lex_state = 81}, - [761] = {.lex_state = 81}, - [762] = {.lex_state = 81}, - [763] = {.lex_state = 81}, - [764] = {.lex_state = 81}, - [765] = {.lex_state = 81}, - [766] = {.lex_state = 81}, - [767] = {.lex_state = 81}, - [768] = {.lex_state = 81}, - [769] = {.lex_state = 81}, - [770] = {.lex_state = 81}, - [771] = {.lex_state = 81}, - [772] = {.lex_state = 81}, - [773] = {.lex_state = 81}, - [774] = {.lex_state = 81}, - [775] = {.lex_state = 81}, - [776] = {.lex_state = 81}, - [777] = {.lex_state = 81}, - [778] = {.lex_state = 81}, - [779] = {.lex_state = 81}, - [780] = {.lex_state = 81}, - [781] = {.lex_state = 81}, - [782] = {.lex_state = 81}, - [783] = {.lex_state = 81}, - [784] = {.lex_state = 81}, - [785] = {.lex_state = 81}, - [786] = {.lex_state = 81}, - [787] = {.lex_state = 81}, - [788] = {.lex_state = 81}, - [789] = {.lex_state = 81}, - [790] = {.lex_state = 81}, - [791] = {.lex_state = 81}, - [792] = {.lex_state = 81}, - [793] = {.lex_state = 81}, - [794] = {.lex_state = 81}, - [795] = {.lex_state = 81}, - [796] = {.lex_state = 81}, - [797] = {.lex_state = 81}, - [798] = {.lex_state = 81}, - [799] = {.lex_state = 81}, - [800] = {.lex_state = 81}, - [801] = {.lex_state = 81}, - [802] = {.lex_state = 81}, - [803] = {.lex_state = 81}, - [804] = {.lex_state = 81}, - [805] = {.lex_state = 81}, - [806] = {.lex_state = 81}, - [807] = {.lex_state = 81}, - [808] = {.lex_state = 81}, - [809] = {.lex_state = 81}, - [810] = {.lex_state = 81}, - [811] = {.lex_state = 81}, - [812] = {.lex_state = 81}, - [813] = {.lex_state = 81}, - [814] = {.lex_state = 81}, - [815] = {.lex_state = 81}, - [816] = {.lex_state = 81}, - [817] = {.lex_state = 81}, - [818] = {.lex_state = 81}, - [819] = {.lex_state = 81}, - [820] = {.lex_state = 81}, - [821] = {.lex_state = 81}, - [822] = {.lex_state = 81}, - [823] = {.lex_state = 81}, - [824] = {.lex_state = 81}, - [825] = {.lex_state = 81}, - [826] = {.lex_state = 81}, - [827] = {.lex_state = 81}, - [828] = {.lex_state = 81}, - [829] = {.lex_state = 81}, - [830] = {.lex_state = 81}, - [831] = {.lex_state = 81}, - [832] = {.lex_state = 81}, - [833] = {.lex_state = 81}, - [834] = {.lex_state = 81}, - [835] = {.lex_state = 81}, - [836] = {.lex_state = 81}, - [837] = {.lex_state = 81}, - [838] = {.lex_state = 81}, - [839] = {.lex_state = 81}, - [840] = {.lex_state = 81}, - [841] = {.lex_state = 81}, - [842] = {.lex_state = 81}, - [843] = {.lex_state = 81}, - [844] = {.lex_state = 81}, - [845] = {.lex_state = 81}, - [846] = {.lex_state = 81}, - [847] = {.lex_state = 81}, - [848] = {.lex_state = 81}, - [849] = {.lex_state = 81}, - [850] = {.lex_state = 81}, - [851] = {.lex_state = 81}, - [852] = {.lex_state = 81}, - [853] = {.lex_state = 81}, - [854] = {.lex_state = 81}, - [855] = {.lex_state = 81}, - [856] = {.lex_state = 81}, - [857] = {.lex_state = 81}, - [858] = {.lex_state = 81}, - [859] = {.lex_state = 81}, - [860] = {.lex_state = 81}, - [861] = {.lex_state = 81}, - [862] = {.lex_state = 81}, - [863] = {.lex_state = 81}, - [864] = {.lex_state = 81}, - [865] = {.lex_state = 81}, - [866] = {.lex_state = 81}, - [867] = {.lex_state = 81}, - [868] = {.lex_state = 81}, - [869] = {.lex_state = 81}, - [870] = {.lex_state = 81}, - [871] = {.lex_state = 81}, - [872] = {.lex_state = 81}, - [873] = {.lex_state = 81}, - [874] = {.lex_state = 81}, - [875] = {.lex_state = 81}, - [876] = {.lex_state = 81}, - [877] = {.lex_state = 81}, - [878] = {.lex_state = 81}, - [879] = {.lex_state = 81}, - [880] = {.lex_state = 81}, - [881] = {.lex_state = 81}, - [882] = {.lex_state = 81}, - [883] = {.lex_state = 81}, - [884] = {.lex_state = 81}, - [885] = {.lex_state = 81}, - [886] = {.lex_state = 81}, - [887] = {.lex_state = 81}, - [888] = {.lex_state = 81}, - [889] = {.lex_state = 81}, - [890] = {.lex_state = 81}, - [891] = {.lex_state = 81}, - [892] = {.lex_state = 81}, - [893] = {.lex_state = 81}, - [894] = {.lex_state = 81}, - [895] = {.lex_state = 81}, - [896] = {.lex_state = 81}, - [897] = {.lex_state = 81}, - [898] = {.lex_state = 81}, - [899] = {.lex_state = 81}, - [900] = {.lex_state = 81}, - [901] = {.lex_state = 81}, - [902] = {.lex_state = 81}, - [903] = {.lex_state = 81}, - [904] = {.lex_state = 81}, - [905] = {.lex_state = 81}, - [906] = {.lex_state = 81}, - [907] = {.lex_state = 81}, - [908] = {.lex_state = 81}, - [909] = {.lex_state = 81}, - [910] = {.lex_state = 81}, - [911] = {.lex_state = 81}, - [912] = {.lex_state = 81}, - [913] = {.lex_state = 81}, - [914] = {.lex_state = 81}, - [915] = {.lex_state = 81}, - [916] = {.lex_state = 81}, - [917] = {.lex_state = 81}, - [918] = {.lex_state = 81}, - [919] = {.lex_state = 81}, - [920] = {.lex_state = 81}, - [921] = {.lex_state = 81}, - [922] = {.lex_state = 81}, - [923] = {.lex_state = 81}, - [924] = {.lex_state = 81}, - [925] = {.lex_state = 81}, - [926] = {.lex_state = 81}, - [927] = {.lex_state = 81}, - [928] = {.lex_state = 81}, - [929] = {.lex_state = 81}, - [930] = {.lex_state = 81}, - [931] = {.lex_state = 81}, - [932] = {.lex_state = 81}, - [933] = {.lex_state = 81}, - [934] = {.lex_state = 81}, - [935] = {.lex_state = 81}, - [936] = {.lex_state = 81}, - [937] = {.lex_state = 81}, - [938] = {.lex_state = 81}, - [939] = {.lex_state = 81}, - [940] = {.lex_state = 81}, - [941] = {.lex_state = 81}, - [942] = {.lex_state = 81}, - [943] = {.lex_state = 81}, - [944] = {.lex_state = 81}, - [945] = {.lex_state = 81}, - [946] = {.lex_state = 81}, - [947] = {.lex_state = 81}, - [948] = {.lex_state = 81}, - [949] = {.lex_state = 81}, - [950] = {.lex_state = 81}, - [951] = {.lex_state = 81}, - [952] = {.lex_state = 81}, - [953] = {.lex_state = 81}, - [954] = {.lex_state = 81}, - [955] = {.lex_state = 81}, - [956] = {.lex_state = 81}, - [957] = {.lex_state = 81}, - [958] = {.lex_state = 81}, - [959] = {.lex_state = 81}, - [960] = {.lex_state = 81}, - [961] = {.lex_state = 81}, - [962] = {.lex_state = 81}, - [963] = {.lex_state = 81}, - [964] = {.lex_state = 81}, - [965] = {.lex_state = 81}, - [966] = {.lex_state = 81}, - [967] = {.lex_state = 81}, - [968] = {.lex_state = 81}, - [969] = {.lex_state = 81}, - [970] = {.lex_state = 81}, - [971] = {.lex_state = 81}, - [972] = {.lex_state = 81}, - [973] = {.lex_state = 81}, - [974] = {.lex_state = 81}, - [975] = {.lex_state = 81}, - [976] = {.lex_state = 81}, - [977] = {.lex_state = 81}, - [978] = {.lex_state = 81}, - [979] = {.lex_state = 81}, - [980] = {.lex_state = 81}, - [981] = {.lex_state = 81}, - [982] = {.lex_state = 81}, - [983] = {.lex_state = 81}, - [984] = {.lex_state = 81}, - [985] = {.lex_state = 81}, - [986] = {.lex_state = 81}, - [987] = {.lex_state = 81}, - [988] = {.lex_state = 81}, - [989] = {.lex_state = 81}, - [990] = {.lex_state = 81}, - [991] = {.lex_state = 81}, - [992] = {.lex_state = 81}, - [993] = {.lex_state = 81}, - [994] = {.lex_state = 81}, - [995] = {.lex_state = 81}, - [996] = {.lex_state = 81}, - [997] = {.lex_state = 81}, - [998] = {.lex_state = 81}, - [999] = {.lex_state = 81}, - [1000] = {.lex_state = 81}, - [1001] = {.lex_state = 81}, - [1002] = {.lex_state = 81}, - [1003] = {.lex_state = 81}, - [1004] = {.lex_state = 81}, - [1005] = {.lex_state = 81}, - [1006] = {.lex_state = 81}, - [1007] = {.lex_state = 81}, - [1008] = {.lex_state = 81}, - [1009] = {.lex_state = 81}, - [1010] = {.lex_state = 81}, - [1011] = {.lex_state = 81}, - [1012] = {.lex_state = 81}, - [1013] = {.lex_state = 81}, - [1014] = {.lex_state = 81}, - [1015] = {.lex_state = 81}, - [1016] = {.lex_state = 81}, - [1017] = {.lex_state = 81}, - [1018] = {.lex_state = 81}, - [1019] = {.lex_state = 81}, - [1020] = {.lex_state = 81}, - [1021] = {.lex_state = 81}, - [1022] = {.lex_state = 81}, - [1023] = {.lex_state = 81}, - [1024] = {.lex_state = 81}, - [1025] = {.lex_state = 81}, - [1026] = {.lex_state = 81}, - [1027] = {.lex_state = 81}, - [1028] = {.lex_state = 81}, - [1029] = {.lex_state = 81}, - [1030] = {.lex_state = 81}, - [1031] = {.lex_state = 81}, - [1032] = {.lex_state = 81}, - [1033] = {.lex_state = 81}, - [1034] = {.lex_state = 81}, - [1035] = {.lex_state = 81}, - [1036] = {.lex_state = 81}, - [1037] = {.lex_state = 81}, - [1038] = {.lex_state = 81}, - [1039] = {.lex_state = 81}, - [1040] = {.lex_state = 81}, - [1041] = {.lex_state = 81}, - [1042] = {.lex_state = 81}, - [1043] = {.lex_state = 81}, - [1044] = {.lex_state = 81}, - [1045] = {.lex_state = 81}, - [1046] = {.lex_state = 81}, - [1047] = {.lex_state = 81}, - [1048] = {.lex_state = 81}, - [1049] = {.lex_state = 81}, - [1050] = {.lex_state = 81}, - [1051] = {.lex_state = 81}, - [1052] = {.lex_state = 81}, - [1053] = {.lex_state = 81}, - [1054] = {.lex_state = 81}, - [1055] = {.lex_state = 81}, - [1056] = {.lex_state = 81}, - [1057] = {.lex_state = 81}, - [1058] = {.lex_state = 81}, - [1059] = {.lex_state = 81}, - [1060] = {.lex_state = 81}, - [1061] = {.lex_state = 81}, - [1062] = {.lex_state = 81}, - [1063] = {.lex_state = 81}, - [1064] = {.lex_state = 81}, - [1065] = {.lex_state = 81}, - [1066] = {.lex_state = 81}, - [1067] = {.lex_state = 81}, - [1068] = {.lex_state = 81}, - [1069] = {.lex_state = 81}, - [1070] = {.lex_state = 81}, - [1071] = {.lex_state = 81}, - [1072] = {.lex_state = 81}, - [1073] = {.lex_state = 81}, - [1074] = {.lex_state = 81}, - [1075] = {.lex_state = 81}, - [1076] = {.lex_state = 81}, - [1077] = {.lex_state = 81}, - [1078] = {.lex_state = 81}, - [1079] = {.lex_state = 81}, - [1080] = {.lex_state = 81}, - [1081] = {.lex_state = 81}, - [1082] = {.lex_state = 81}, - [1083] = {.lex_state = 81}, - [1084] = {.lex_state = 81}, - [1085] = {.lex_state = 81}, - [1086] = {.lex_state = 81}, - [1087] = {.lex_state = 81}, - [1088] = {.lex_state = 81}, - [1089] = {.lex_state = 81}, - [1090] = {.lex_state = 81}, - [1091] = {.lex_state = 81}, - [1092] = {.lex_state = 81}, - [1093] = {.lex_state = 81}, - [1094] = {.lex_state = 81}, - [1095] = {.lex_state = 81}, - [1096] = {.lex_state = 81}, - [1097] = {.lex_state = 81}, - [1098] = {.lex_state = 81}, - [1099] = {.lex_state = 81}, - [1100] = {.lex_state = 81}, - [1101] = {.lex_state = 81}, - [1102] = {.lex_state = 81}, - [1103] = {.lex_state = 81}, - [1104] = {.lex_state = 81}, - [1105] = {.lex_state = 81}, - [1106] = {.lex_state = 81}, - [1107] = {.lex_state = 81}, - [1108] = {.lex_state = 81}, - [1109] = {.lex_state = 81}, - [1110] = {.lex_state = 81}, - [1111] = {.lex_state = 81}, - [1112] = {.lex_state = 81}, - [1113] = {.lex_state = 81}, - [1114] = {.lex_state = 81}, - [1115] = {.lex_state = 81}, - [1116] = {.lex_state = 81}, - [1117] = {.lex_state = 81}, - [1118] = {.lex_state = 81}, - [1119] = {.lex_state = 81}, - [1120] = {.lex_state = 81}, - [1121] = {.lex_state = 81}, - [1122] = {.lex_state = 81}, - [1123] = {.lex_state = 81}, - [1124] = {.lex_state = 81}, - [1125] = {.lex_state = 81}, - [1126] = {.lex_state = 81}, - [1127] = {.lex_state = 81}, - [1128] = {.lex_state = 81}, - [1129] = {.lex_state = 81}, - [1130] = {.lex_state = 81}, - [1131] = {.lex_state = 81}, - [1132] = {.lex_state = 81}, - [1133] = {.lex_state = 81}, - [1134] = {.lex_state = 81}, - [1135] = {.lex_state = 81}, - [1136] = {.lex_state = 81}, - [1137] = {.lex_state = 81}, - [1138] = {.lex_state = 81}, - [1139] = {.lex_state = 81}, - [1140] = {.lex_state = 81}, - [1141] = {.lex_state = 81}, - [1142] = {.lex_state = 81}, - [1143] = {.lex_state = 81}, - [1144] = {.lex_state = 81}, - [1145] = {.lex_state = 81}, - [1146] = {.lex_state = 81}, - [1147] = {.lex_state = 81}, - [1148] = {.lex_state = 81}, - [1149] = {.lex_state = 81}, - [1150] = {.lex_state = 81}, - [1151] = {.lex_state = 81}, - [1152] = {.lex_state = 81}, - [1153] = {.lex_state = 81}, - [1154] = {.lex_state = 81}, - [1155] = {.lex_state = 81}, - [1156] = {.lex_state = 81}, - [1157] = {.lex_state = 81}, - [1158] = {.lex_state = 81}, - [1159] = {.lex_state = 81}, - [1160] = {.lex_state = 81}, - [1161] = {.lex_state = 81}, - [1162] = {.lex_state = 81}, - [1163] = {.lex_state = 81}, - [1164] = {.lex_state = 81}, - [1165] = {.lex_state = 81}, - [1166] = {.lex_state = 81}, - [1167] = {.lex_state = 81}, - [1168] = {.lex_state = 81}, - [1169] = {.lex_state = 81}, - [1170] = {.lex_state = 81}, - [1171] = {.lex_state = 81}, - [1172] = {.lex_state = 81}, - [1173] = {.lex_state = 81}, - [1174] = {.lex_state = 81}, - [1175] = {.lex_state = 81}, - [1176] = {.lex_state = 81}, - [1177] = {.lex_state = 81}, - [1178] = {.lex_state = 81}, - [1179] = {.lex_state = 81}, - [1180] = {.lex_state = 81}, - [1181] = {.lex_state = 81}, - [1182] = {.lex_state = 81}, - [1183] = {.lex_state = 81}, - [1184] = {.lex_state = 81}, - [1185] = {.lex_state = 81}, - [1186] = {.lex_state = 81}, - [1187] = {.lex_state = 81}, - [1188] = {.lex_state = 81}, - [1189] = {.lex_state = 81}, - [1190] = {.lex_state = 81}, - [1191] = {.lex_state = 81}, - [1192] = {.lex_state = 81}, - [1193] = {.lex_state = 81}, - [1194] = {.lex_state = 81}, - [1195] = {.lex_state = 81}, - [1196] = {.lex_state = 81}, - [1197] = {.lex_state = 81}, - [1198] = {.lex_state = 81}, - [1199] = {.lex_state = 81}, - [1200] = {.lex_state = 81}, - [1201] = {.lex_state = 81}, - [1202] = {.lex_state = 81}, - [1203] = {.lex_state = 81}, - [1204] = {.lex_state = 81}, - [1205] = {.lex_state = 81}, - [1206] = {.lex_state = 81}, - [1207] = {.lex_state = 81}, - [1208] = {.lex_state = 81}, - [1209] = {.lex_state = 81}, - [1210] = {.lex_state = 81}, - [1211] = {.lex_state = 81}, - [1212] = {.lex_state = 81}, - [1213] = {.lex_state = 81}, - [1214] = {.lex_state = 81}, - [1215] = {.lex_state = 81}, - [1216] = {.lex_state = 81}, - [1217] = {.lex_state = 81}, - [1218] = {.lex_state = 81}, - [1219] = {.lex_state = 81}, - [1220] = {.lex_state = 81}, - [1221] = {.lex_state = 81}, - [1222] = {.lex_state = 81}, - [1223] = {.lex_state = 81}, - [1224] = {.lex_state = 81}, - [1225] = {.lex_state = 81}, - [1226] = {.lex_state = 81}, - [1227] = {.lex_state = 81}, - [1228] = {.lex_state = 81}, - [1229] = {.lex_state = 81}, - [1230] = {.lex_state = 81}, - [1231] = {.lex_state = 81}, - [1232] = {.lex_state = 81}, - [1233] = {.lex_state = 81}, - [1234] = {.lex_state = 81}, - [1235] = {.lex_state = 81}, - [1236] = {.lex_state = 81}, - [1237] = {.lex_state = 81}, - [1238] = {.lex_state = 81}, - [1239] = {.lex_state = 81}, - [1240] = {.lex_state = 81}, - [1241] = {.lex_state = 81}, - [1242] = {.lex_state = 81}, - [1243] = {.lex_state = 81}, - [1244] = {.lex_state = 81}, - [1245] = {.lex_state = 81}, - [1246] = {.lex_state = 81}, - [1247] = {.lex_state = 81}, - [1248] = {.lex_state = 81}, - [1249] = {.lex_state = 81}, - [1250] = {.lex_state = 81}, - [1251] = {.lex_state = 81}, - [1252] = {.lex_state = 81}, - [1253] = {.lex_state = 81}, - [1254] = {.lex_state = 81}, - [1255] = {.lex_state = 81}, - [1256] = {.lex_state = 81}, - [1257] = {.lex_state = 81}, - [1258] = {.lex_state = 81}, - [1259] = {.lex_state = 81}, - [1260] = {.lex_state = 81}, - [1261] = {.lex_state = 81}, - [1262] = {.lex_state = 81}, - [1263] = {.lex_state = 81}, - [1264] = {.lex_state = 81}, - [1265] = {.lex_state = 81}, - [1266] = {.lex_state = 81}, - [1267] = {.lex_state = 81}, - [1268] = {.lex_state = 81}, - [1269] = {.lex_state = 81}, - [1270] = {.lex_state = 81}, - [1271] = {.lex_state = 81}, - [1272] = {.lex_state = 81}, - [1273] = {.lex_state = 81}, - [1274] = {.lex_state = 81}, - [1275] = {.lex_state = 81}, - [1276] = {.lex_state = 81}, - [1277] = {.lex_state = 81}, - [1278] = {.lex_state = 81}, - [1279] = {.lex_state = 81}, - [1280] = {.lex_state = 81}, - [1281] = {.lex_state = 81}, - [1282] = {.lex_state = 81}, - [1283] = {.lex_state = 81}, - [1284] = {.lex_state = 81}, - [1285] = {.lex_state = 81}, - [1286] = {.lex_state = 81}, - [1287] = {.lex_state = 81}, - [1288] = {.lex_state = 81}, - [1289] = {.lex_state = 81}, - [1290] = {.lex_state = 81}, - [1291] = {.lex_state = 81}, - [1292] = {.lex_state = 81}, - [1293] = {.lex_state = 81}, - [1294] = {.lex_state = 81}, - [1295] = {.lex_state = 81}, - [1296] = {.lex_state = 81}, - [1297] = {.lex_state = 81}, - [1298] = {.lex_state = 81}, - [1299] = {.lex_state = 81}, - [1300] = {.lex_state = 81}, - [1301] = {.lex_state = 81}, - [1302] = {.lex_state = 81}, - [1303] = {.lex_state = 81}, - [1304] = {.lex_state = 81}, - [1305] = {.lex_state = 81}, - [1306] = {.lex_state = 81}, - [1307] = {.lex_state = 81}, - [1308] = {.lex_state = 81}, - [1309] = {.lex_state = 81}, - [1310] = {.lex_state = 81}, - [1311] = {.lex_state = 81}, - [1312] = {.lex_state = 81}, - [1313] = {.lex_state = 81}, - [1314] = {.lex_state = 81}, - [1315] = {.lex_state = 81}, - [1316] = {.lex_state = 81}, - [1317] = {.lex_state = 81}, - [1318] = {.lex_state = 81}, - [1319] = {.lex_state = 81}, - [1320] = {.lex_state = 81}, - [1321] = {.lex_state = 81}, - [1322] = {.lex_state = 81}, - [1323] = {.lex_state = 81}, - [1324] = {.lex_state = 81}, - [1325] = {.lex_state = 81}, - [1326] = {.lex_state = 81}, - [1327] = {.lex_state = 81}, - [1328] = {.lex_state = 81}, - [1329] = {.lex_state = 81}, - [1330] = {.lex_state = 81}, - [1331] = {.lex_state = 81}, - [1332] = {.lex_state = 81}, - [1333] = {.lex_state = 81}, - [1334] = {.lex_state = 81}, - [1335] = {.lex_state = 81}, - [1336] = {.lex_state = 81}, - [1337] = {.lex_state = 81}, - [1338] = {.lex_state = 81}, - [1339] = {.lex_state = 81}, - [1340] = {.lex_state = 81}, - [1341] = {.lex_state = 81}, - [1342] = {.lex_state = 81}, - [1343] = {.lex_state = 81}, - [1344] = {.lex_state = 81}, - [1345] = {.lex_state = 81}, - [1346] = {.lex_state = 81}, - [1347] = {.lex_state = 81}, - [1348] = {.lex_state = 81}, - [1349] = {.lex_state = 81}, - [1350] = {.lex_state = 81}, - [1351] = {.lex_state = 81}, - [1352] = {.lex_state = 81}, - [1353] = {.lex_state = 81}, - [1354] = {.lex_state = 81}, - [1355] = {.lex_state = 81}, - [1356] = {.lex_state = 81}, - [1357] = {.lex_state = 81}, - [1358] = {.lex_state = 81}, - [1359] = {.lex_state = 81}, - [1360] = {.lex_state = 81}, - [1361] = {.lex_state = 81}, - [1362] = {.lex_state = 81}, - [1363] = {.lex_state = 81}, - [1364] = {.lex_state = 81}, - [1365] = {.lex_state = 81}, - [1366] = {.lex_state = 81}, - [1367] = {.lex_state = 81}, - [1368] = {.lex_state = 81}, - [1369] = {.lex_state = 81}, - [1370] = {.lex_state = 81}, - [1371] = {.lex_state = 81}, - [1372] = {.lex_state = 81}, - [1373] = {.lex_state = 81}, - [1374] = {.lex_state = 81}, - [1375] = {.lex_state = 81}, - [1376] = {.lex_state = 81}, - [1377] = {.lex_state = 81}, - [1378] = {.lex_state = 81}, - [1379] = {.lex_state = 81}, - [1380] = {.lex_state = 81}, - [1381] = {.lex_state = 81}, - [1382] = {.lex_state = 81}, - [1383] = {.lex_state = 81}, - [1384] = {.lex_state = 81}, - [1385] = {.lex_state = 81}, - [1386] = {.lex_state = 81}, - [1387] = {.lex_state = 81}, - [1388] = {.lex_state = 81}, - [1389] = {.lex_state = 81}, - [1390] = {.lex_state = 81}, - [1391] = {.lex_state = 81}, - [1392] = {.lex_state = 81}, - [1393] = {.lex_state = 81}, - [1394] = {.lex_state = 81}, - [1395] = {.lex_state = 81}, - [1396] = {.lex_state = 81}, - [1397] = {.lex_state = 81}, - [1398] = {.lex_state = 81}, - [1399] = {.lex_state = 81}, - [1400] = {.lex_state = 81}, - [1401] = {.lex_state = 81}, - [1402] = {.lex_state = 81}, - [1403] = {.lex_state = 81}, - [1404] = {.lex_state = 81}, - [1405] = {.lex_state = 81}, - [1406] = {.lex_state = 81}, - [1407] = {.lex_state = 81}, - [1408] = {.lex_state = 81}, - [1409] = {.lex_state = 81}, - [1410] = {.lex_state = 81}, - [1411] = {.lex_state = 81}, - [1412] = {.lex_state = 81}, - [1413] = {.lex_state = 81}, - [1414] = {.lex_state = 81}, - [1415] = {.lex_state = 81}, - [1416] = {.lex_state = 81}, - [1417] = {.lex_state = 81}, - [1418] = {.lex_state = 81}, - [1419] = {.lex_state = 81}, - [1420] = {.lex_state = 81}, - [1421] = {.lex_state = 81}, - [1422] = {.lex_state = 81}, - [1423] = {.lex_state = 81}, - [1424] = {.lex_state = 81}, - [1425] = {.lex_state = 81}, - [1426] = {.lex_state = 81}, - [1427] = {.lex_state = 81}, - [1428] = {.lex_state = 81}, - [1429] = {.lex_state = 81}, - [1430] = {.lex_state = 81}, - [1431] = {.lex_state = 81}, - [1432] = {.lex_state = 81}, - [1433] = {.lex_state = 81}, - [1434] = {.lex_state = 81}, - [1435] = {.lex_state = 81}, - [1436] = {.lex_state = 81}, - [1437] = {.lex_state = 81}, - [1438] = {.lex_state = 81}, - [1439] = {.lex_state = 81}, - [1440] = {.lex_state = 81}, - [1441] = {.lex_state = 81}, - [1442] = {.lex_state = 81}, - [1443] = {.lex_state = 81}, - [1444] = {.lex_state = 81}, - [1445] = {.lex_state = 81}, - [1446] = {.lex_state = 81}, - [1447] = {.lex_state = 81}, - [1448] = {.lex_state = 81}, - [1449] = {.lex_state = 81}, - [1450] = {.lex_state = 81}, - [1451] = {.lex_state = 81}, - [1452] = {.lex_state = 81}, - [1453] = {.lex_state = 81}, - [1454] = {.lex_state = 81}, - [1455] = {.lex_state = 81}, - [1456] = {.lex_state = 81}, - [1457] = {.lex_state = 81}, - [1458] = {.lex_state = 81}, - [1459] = {.lex_state = 81}, - [1460] = {.lex_state = 81}, - [1461] = {.lex_state = 81}, - [1462] = {.lex_state = 81}, - [1463] = {.lex_state = 81}, - [1464] = {.lex_state = 81}, - [1465] = {.lex_state = 81}, - [1466] = {.lex_state = 81}, - [1467] = {.lex_state = 81}, - [1468] = {.lex_state = 81}, - [1469] = {.lex_state = 81}, - [1470] = {.lex_state = 81}, - [1471] = {.lex_state = 81}, - [1472] = {.lex_state = 81}, - [1473] = {.lex_state = 81}, - [1474] = {.lex_state = 81}, - [1475] = {.lex_state = 81}, - [1476] = {.lex_state = 81}, - [1477] = {.lex_state = 81}, - [1478] = {.lex_state = 81}, - [1479] = {.lex_state = 81}, - [1480] = {.lex_state = 81}, - [1481] = {.lex_state = 81}, - [1482] = {.lex_state = 81}, - [1483] = {.lex_state = 81}, - [1484] = {.lex_state = 81}, - [1485] = {.lex_state = 81}, - [1486] = {.lex_state = 81}, - [1487] = {.lex_state = 81}, - [1488] = {.lex_state = 81}, - [1489] = {.lex_state = 81}, - [1490] = {.lex_state = 81}, - [1491] = {.lex_state = 81}, - [1492] = {.lex_state = 81}, - [1493] = {.lex_state = 81}, - [1494] = {.lex_state = 81}, - [1495] = {.lex_state = 81}, - [1496] = {.lex_state = 81}, - [1497] = {.lex_state = 81}, - [1498] = {.lex_state = 81}, - [1499] = {.lex_state = 81}, - [1500] = {.lex_state = 81}, - [1501] = {.lex_state = 81}, - [1502] = {.lex_state = 81}, - [1503] = {.lex_state = 81}, - [1504] = {.lex_state = 81}, - [1505] = {.lex_state = 81}, - [1506] = {.lex_state = 81}, - [1507] = {.lex_state = 81}, - [1508] = {.lex_state = 81}, - [1509] = {.lex_state = 81}, - [1510] = {.lex_state = 81}, - [1511] = {.lex_state = 81}, - [1512] = {.lex_state = 81}, - [1513] = {.lex_state = 81}, - [1514] = {.lex_state = 81}, - [1515] = {.lex_state = 81}, - [1516] = {.lex_state = 81}, - [1517] = {.lex_state = 81}, - [1518] = {.lex_state = 81}, - [1519] = {.lex_state = 81}, - [1520] = {.lex_state = 81}, - [1521] = {.lex_state = 81}, - [1522] = {.lex_state = 81}, - [1523] = {.lex_state = 81}, - [1524] = {.lex_state = 81}, - [1525] = {.lex_state = 81}, - [1526] = {.lex_state = 81}, - [1527] = {.lex_state = 81}, - [1528] = {.lex_state = 81}, - [1529] = {.lex_state = 81}, - [1530] = {.lex_state = 81}, - [1531] = {.lex_state = 81}, - [1532] = {.lex_state = 81}, - [1533] = {.lex_state = 81}, - [1534] = {.lex_state = 81}, - [1535] = {.lex_state = 81}, - [1536] = {.lex_state = 81}, - [1537] = {.lex_state = 81}, - [1538] = {.lex_state = 81}, - [1539] = {.lex_state = 81}, - [1540] = {.lex_state = 81}, - [1541] = {.lex_state = 81}, - [1542] = {.lex_state = 81}, - [1543] = {.lex_state = 81}, - [1544] = {.lex_state = 81}, - [1545] = {.lex_state = 81}, - [1546] = {.lex_state = 81}, - [1547] = {.lex_state = 81}, - [1548] = {.lex_state = 81}, - [1549] = {.lex_state = 81}, - [1550] = {.lex_state = 81}, - [1551] = {.lex_state = 81}, - [1552] = {.lex_state = 81}, - [1553] = {.lex_state = 81}, - [1554] = {.lex_state = 81}, - [1555] = {.lex_state = 81}, - [1556] = {.lex_state = 81}, - [1557] = {.lex_state = 81}, - [1558] = {.lex_state = 81}, - [1559] = {.lex_state = 81}, - [1560] = {.lex_state = 81}, - [1561] = {.lex_state = 81}, - [1562] = {.lex_state = 81}, - [1563] = {.lex_state = 81}, - [1564] = {.lex_state = 81}, - [1565] = {.lex_state = 81}, - [1566] = {.lex_state = 81}, - [1567] = {.lex_state = 81}, - [1568] = {.lex_state = 81}, - [1569] = {.lex_state = 81}, - [1570] = {.lex_state = 81}, - [1571] = {.lex_state = 81}, - [1572] = {.lex_state = 81}, - [1573] = {.lex_state = 81}, - [1574] = {.lex_state = 81}, - [1575] = {.lex_state = 81}, - [1576] = {.lex_state = 81}, - [1577] = {.lex_state = 81}, - [1578] = {.lex_state = 81}, - [1579] = {.lex_state = 81}, - [1580] = {.lex_state = 81}, - [1581] = {.lex_state = 81}, - [1582] = {.lex_state = 81}, - [1583] = {.lex_state = 81}, - [1584] = {.lex_state = 81}, - [1585] = {.lex_state = 81}, - [1586] = {.lex_state = 81}, - [1587] = {.lex_state = 81}, - [1588] = {.lex_state = 81}, - [1589] = {.lex_state = 81}, - [1590] = {.lex_state = 81}, - [1591] = {.lex_state = 81}, - [1592] = {.lex_state = 81}, - [1593] = {.lex_state = 81}, - [1594] = {.lex_state = 81}, - [1595] = {.lex_state = 81}, - [1596] = {.lex_state = 81}, - [1597] = {.lex_state = 81}, - [1598] = {.lex_state = 81}, - [1599] = {.lex_state = 81}, - [1600] = {.lex_state = 81}, - [1601] = {.lex_state = 81}, - [1602] = {.lex_state = 81}, - [1603] = {.lex_state = 81}, - [1604] = {.lex_state = 81}, - [1605] = {.lex_state = 81}, - [1606] = {.lex_state = 81}, - [1607] = {.lex_state = 81}, - [1608] = {.lex_state = 81}, - [1609] = {.lex_state = 81}, - [1610] = {.lex_state = 81}, - [1611] = {.lex_state = 81}, - [1612] = {.lex_state = 81}, - [1613] = {.lex_state = 81}, - [1614] = {.lex_state = 81}, - [1615] = {.lex_state = 81}, - [1616] = {.lex_state = 81}, - [1617] = {.lex_state = 81}, - [1618] = {.lex_state = 81}, - [1619] = {.lex_state = 81}, - [1620] = {.lex_state = 81}, - [1621] = {.lex_state = 81}, - [1622] = {.lex_state = 81}, - [1623] = {.lex_state = 81}, - [1624] = {.lex_state = 81}, - [1625] = {.lex_state = 81}, - [1626] = {.lex_state = 81}, - [1627] = {.lex_state = 81}, - [1628] = {.lex_state = 81}, - [1629] = {.lex_state = 81}, - [1630] = {.lex_state = 81}, - [1631] = {.lex_state = 81}, - [1632] = {.lex_state = 81}, - [1633] = {.lex_state = 81}, - [1634] = {.lex_state = 81}, - [1635] = {.lex_state = 81}, - [1636] = {.lex_state = 81}, - [1637] = {.lex_state = 81}, - [1638] = {.lex_state = 81}, - [1639] = {.lex_state = 81}, - [1640] = {.lex_state = 81}, - [1641] = {.lex_state = 81}, - [1642] = {.lex_state = 81}, - [1643] = {.lex_state = 81}, - [1644] = {.lex_state = 81}, - [1645] = {.lex_state = 81}, - [1646] = {.lex_state = 81}, - [1647] = {.lex_state = 81}, - [1648] = {.lex_state = 81}, - [1649] = {.lex_state = 81}, - [1650] = {.lex_state = 81}, - [1651] = {.lex_state = 81}, - [1652] = {.lex_state = 81}, - [1653] = {.lex_state = 81}, - [1654] = {.lex_state = 81}, - [1655] = {.lex_state = 81}, - [1656] = {.lex_state = 81}, - [1657] = {.lex_state = 81}, - [1658] = {.lex_state = 81}, - [1659] = {.lex_state = 81}, - [1660] = {.lex_state = 81}, - [1661] = {.lex_state = 81}, - [1662] = {.lex_state = 81}, - [1663] = {.lex_state = 81}, - [1664] = {.lex_state = 81}, - [1665] = {.lex_state = 81}, - [1666] = {.lex_state = 81}, - [1667] = {.lex_state = 81}, - [1668] = {.lex_state = 81}, - [1669] = {.lex_state = 81}, - [1670] = {.lex_state = 81}, - [1671] = {.lex_state = 81}, - [1672] = {.lex_state = 81}, - [1673] = {.lex_state = 81}, - [1674] = {.lex_state = 81}, - [1675] = {.lex_state = 81}, - [1676] = {.lex_state = 81}, - [1677] = {.lex_state = 81}, - [1678] = {.lex_state = 81}, - [1679] = {.lex_state = 81}, - [1680] = {.lex_state = 81}, - [1681] = {.lex_state = 81}, - [1682] = {.lex_state = 81}, - [1683] = {.lex_state = 81}, - [1684] = {.lex_state = 81}, - [1685] = {.lex_state = 81}, - [1686] = {.lex_state = 81}, - [1687] = {.lex_state = 81}, - [1688] = {.lex_state = 81}, - [1689] = {.lex_state = 81}, - [1690] = {.lex_state = 81}, - [1691] = {.lex_state = 81}, - [1692] = {.lex_state = 81}, - [1693] = {.lex_state = 81}, - [1694] = {.lex_state = 81}, - [1695] = {.lex_state = 81}, - [1696] = {.lex_state = 81}, - [1697] = {.lex_state = 81}, - [1698] = {.lex_state = 81}, - [1699] = {.lex_state = 81}, - [1700] = {.lex_state = 81}, - [1701] = {.lex_state = 81}, - [1702] = {.lex_state = 81}, - [1703] = {.lex_state = 81}, - [1704] = {.lex_state = 81}, - [1705] = {.lex_state = 81}, - [1706] = {.lex_state = 81}, - [1707] = {.lex_state = 81}, - [1708] = {.lex_state = 81}, - [1709] = {.lex_state = 81}, - [1710] = {.lex_state = 81}, - [1711] = {.lex_state = 81}, - [1712] = {.lex_state = 81}, - [1713] = {.lex_state = 81}, - [1714] = {.lex_state = 81}, - [1715] = {.lex_state = 12}, - [1716] = {.lex_state = 12}, - [1717] = {.lex_state = 12}, - [1718] = {.lex_state = 12}, - [1719] = {.lex_state = 12}, - [1720] = {.lex_state = 12}, - [1721] = {.lex_state = 12}, - [1722] = {.lex_state = 12}, - [1723] = {.lex_state = 12}, - [1724] = {.lex_state = 12}, - [1725] = {.lex_state = 12}, - [1726] = {.lex_state = 12}, - [1727] = {.lex_state = 12}, - [1728] = {.lex_state = 12}, - [1729] = {.lex_state = 12}, - [1730] = {.lex_state = 5}, - [1731] = {.lex_state = 5}, - [1732] = {.lex_state = 7}, - [1733] = {.lex_state = 5}, - [1734] = {.lex_state = 7}, - [1735] = {.lex_state = 5}, - [1736] = {.lex_state = 7}, - [1737] = {.lex_state = 7}, - [1738] = {.lex_state = 5}, - [1739] = {.lex_state = 5}, - [1740] = {.lex_state = 7}, - [1741] = {.lex_state = 5}, - [1742] = {.lex_state = 7}, - [1743] = {.lex_state = 80}, - [1744] = {.lex_state = 5}, - [1745] = {.lex_state = 5}, - [1746] = {.lex_state = 5}, - [1747] = {.lex_state = 80}, - [1748] = {.lex_state = 5}, - [1749] = {.lex_state = 5}, - [1750] = {.lex_state = 80}, - [1751] = {.lex_state = 9}, - [1752] = {.lex_state = 9}, - [1753] = {.lex_state = 5}, - [1754] = {.lex_state = 6}, - [1755] = {.lex_state = 5}, - [1756] = {.lex_state = 9}, - [1757] = {.lex_state = 5}, - [1758] = {.lex_state = 9}, - [1759] = {.lex_state = 10}, - [1760] = {.lex_state = 5}, - [1761] = {.lex_state = 5}, - [1762] = {.lex_state = 9}, - [1763] = {.lex_state = 10}, - [1764] = {.lex_state = 9}, - [1765] = {.lex_state = 4}, - [1766] = {.lex_state = 10}, - [1767] = {.lex_state = 5}, - [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 9}, + [191] = {.lex_state = 2}, + [192] = {.lex_state = 2}, + [193] = {.lex_state = 2}, + [194] = {.lex_state = 2}, + [195] = {.lex_state = 3}, + [196] = {.lex_state = 3}, + [197] = {.lex_state = 3}, + [198] = {.lex_state = 3}, + [199] = {.lex_state = 3}, + [200] = {.lex_state = 82}, + [201] = {.lex_state = 82}, + [202] = {.lex_state = 82}, + [203] = {.lex_state = 82}, + [204] = {.lex_state = 82}, + [205] = {.lex_state = 82}, + [206] = {.lex_state = 82}, + [207] = {.lex_state = 82}, + [208] = {.lex_state = 82}, + [209] = {.lex_state = 82}, + [210] = {.lex_state = 82}, + [211] = {.lex_state = 82}, + [212] = {.lex_state = 82}, + [213] = {.lex_state = 82}, + [214] = {.lex_state = 82}, + [215] = {.lex_state = 82}, + [216] = {.lex_state = 82}, + [217] = {.lex_state = 82}, + [218] = {.lex_state = 82}, + [219] = {.lex_state = 82}, + [220] = {.lex_state = 82}, + [221] = {.lex_state = 82}, + [222] = {.lex_state = 82}, + [223] = {.lex_state = 82}, + [224] = {.lex_state = 82}, + [225] = {.lex_state = 82}, + [226] = {.lex_state = 82}, + [227] = {.lex_state = 82}, + [228] = {.lex_state = 82}, + [229] = {.lex_state = 82}, + [230] = {.lex_state = 82}, + [231] = {.lex_state = 82}, + [232] = {.lex_state = 82}, + [233] = {.lex_state = 82}, + [234] = {.lex_state = 82}, + [235] = {.lex_state = 82}, + [236] = {.lex_state = 82}, + [237] = {.lex_state = 82}, + [238] = {.lex_state = 82}, + [239] = {.lex_state = 82}, + [240] = {.lex_state = 82}, + [241] = {.lex_state = 82}, + [242] = {.lex_state = 82}, + [243] = {.lex_state = 82}, + [244] = {.lex_state = 82}, + [245] = {.lex_state = 82}, + [246] = {.lex_state = 82}, + [247] = {.lex_state = 82}, + [248] = {.lex_state = 82}, + [249] = {.lex_state = 82}, + [250] = {.lex_state = 82}, + [251] = {.lex_state = 82}, + [252] = {.lex_state = 82}, + [253] = {.lex_state = 82}, + [254] = {.lex_state = 82}, + [255] = {.lex_state = 82}, + [256] = {.lex_state = 82}, + [257] = {.lex_state = 82}, + [258] = {.lex_state = 82}, + [259] = {.lex_state = 82}, + [260] = {.lex_state = 82}, + [261] = {.lex_state = 82}, + [262] = {.lex_state = 82}, + [263] = {.lex_state = 82}, + [264] = {.lex_state = 82}, + [265] = {.lex_state = 82}, + [266] = {.lex_state = 82}, + [267] = {.lex_state = 82}, + [268] = {.lex_state = 82}, + [269] = {.lex_state = 82}, + [270] = {.lex_state = 82}, + [271] = {.lex_state = 82}, + [272] = {.lex_state = 82}, + [273] = {.lex_state = 82}, + [274] = {.lex_state = 82}, + [275] = {.lex_state = 82}, + [276] = {.lex_state = 82}, + [277] = {.lex_state = 82}, + [278] = {.lex_state = 82}, + [279] = {.lex_state = 82}, + [280] = {.lex_state = 82}, + [281] = {.lex_state = 82}, + [282] = {.lex_state = 82}, + [283] = {.lex_state = 82}, + [284] = {.lex_state = 82}, + [285] = {.lex_state = 82}, + [286] = {.lex_state = 82}, + [287] = {.lex_state = 82}, + [288] = {.lex_state = 82}, + [289] = {.lex_state = 82}, + [290] = {.lex_state = 82}, + [291] = {.lex_state = 82}, + [292] = {.lex_state = 82}, + [293] = {.lex_state = 82}, + [294] = {.lex_state = 82}, + [295] = {.lex_state = 82}, + [296] = {.lex_state = 82}, + [297] = {.lex_state = 82}, + [298] = {.lex_state = 82}, + [299] = {.lex_state = 82}, + [300] = {.lex_state = 82}, + [301] = {.lex_state = 82}, + [302] = {.lex_state = 82}, + [303] = {.lex_state = 82}, + [304] = {.lex_state = 82}, + [305] = {.lex_state = 82}, + [306] = {.lex_state = 82}, + [307] = {.lex_state = 82}, + [308] = {.lex_state = 82}, + [309] = {.lex_state = 82}, + [310] = {.lex_state = 82}, + [311] = {.lex_state = 82}, + [312] = {.lex_state = 82}, + [313] = {.lex_state = 82}, + [314] = {.lex_state = 82}, + [315] = {.lex_state = 82}, + [316] = {.lex_state = 82}, + [317] = {.lex_state = 82}, + [318] = {.lex_state = 82}, + [319] = {.lex_state = 82}, + [320] = {.lex_state = 82}, + [321] = {.lex_state = 82}, + [322] = {.lex_state = 82}, + [323] = {.lex_state = 82}, + [324] = {.lex_state = 82}, + [325] = {.lex_state = 82}, + [326] = {.lex_state = 82}, + [327] = {.lex_state = 82}, + [328] = {.lex_state = 82}, + [329] = {.lex_state = 82}, + [330] = {.lex_state = 82}, + [331] = {.lex_state = 82}, + [332] = {.lex_state = 82}, + [333] = {.lex_state = 82}, + [334] = {.lex_state = 82}, + [335] = {.lex_state = 82}, + [336] = {.lex_state = 82}, + [337] = {.lex_state = 82}, + [338] = {.lex_state = 82}, + [339] = {.lex_state = 82}, + [340] = {.lex_state = 82}, + [341] = {.lex_state = 82}, + [342] = {.lex_state = 82}, + [343] = {.lex_state = 82}, + [344] = {.lex_state = 82}, + [345] = {.lex_state = 82}, + [346] = {.lex_state = 82}, + [347] = {.lex_state = 82}, + [348] = {.lex_state = 82}, + [349] = {.lex_state = 82}, + [350] = {.lex_state = 82}, + [351] = {.lex_state = 82}, + [352] = {.lex_state = 82}, + [353] = {.lex_state = 82}, + [354] = {.lex_state = 82}, + [355] = {.lex_state = 82}, + [356] = {.lex_state = 82}, + [357] = {.lex_state = 82}, + [358] = {.lex_state = 82}, + [359] = {.lex_state = 82}, + [360] = {.lex_state = 82}, + [361] = {.lex_state = 82}, + [362] = {.lex_state = 82}, + [363] = {.lex_state = 82}, + [364] = {.lex_state = 82}, + [365] = {.lex_state = 82}, + [366] = {.lex_state = 82}, + [367] = {.lex_state = 82}, + [368] = {.lex_state = 82}, + [369] = {.lex_state = 82}, + [370] = {.lex_state = 82}, + [371] = {.lex_state = 82}, + [372] = {.lex_state = 82}, + [373] = {.lex_state = 82}, + [374] = {.lex_state = 82}, + [375] = {.lex_state = 82}, + [376] = {.lex_state = 82}, + [377] = {.lex_state = 82}, + [378] = {.lex_state = 82}, + [379] = {.lex_state = 82}, + [380] = {.lex_state = 82}, + [381] = {.lex_state = 82}, + [382] = {.lex_state = 82}, + [383] = {.lex_state = 82}, + [384] = {.lex_state = 82}, + [385] = {.lex_state = 82}, + [386] = {.lex_state = 82}, + [387] = {.lex_state = 82}, + [388] = {.lex_state = 82}, + [389] = {.lex_state = 82}, + [390] = {.lex_state = 82}, + [391] = {.lex_state = 82}, + [392] = {.lex_state = 82}, + [393] = {.lex_state = 82}, + [394] = {.lex_state = 82}, + [395] = {.lex_state = 82}, + [396] = {.lex_state = 82}, + [397] = {.lex_state = 82}, + [398] = {.lex_state = 82}, + [399] = {.lex_state = 82}, + [400] = {.lex_state = 82}, + [401] = {.lex_state = 82}, + [402] = {.lex_state = 82}, + [403] = {.lex_state = 82}, + [404] = {.lex_state = 82}, + [405] = {.lex_state = 82}, + [406] = {.lex_state = 82}, + [407] = {.lex_state = 82}, + [408] = {.lex_state = 82}, + [409] = {.lex_state = 82}, + [410] = {.lex_state = 82}, + [411] = {.lex_state = 82}, + [412] = {.lex_state = 82}, + [413] = {.lex_state = 82}, + [414] = {.lex_state = 82}, + [415] = {.lex_state = 82}, + [416] = {.lex_state = 82}, + [417] = {.lex_state = 82}, + [418] = {.lex_state = 82}, + [419] = {.lex_state = 82}, + [420] = {.lex_state = 82}, + [421] = {.lex_state = 82}, + [422] = {.lex_state = 82}, + [423] = {.lex_state = 82}, + [424] = {.lex_state = 82}, + [425] = {.lex_state = 82}, + [426] = {.lex_state = 82}, + [427] = {.lex_state = 82}, + [428] = {.lex_state = 82}, + [429] = {.lex_state = 82}, + [430] = {.lex_state = 82}, + [431] = {.lex_state = 82}, + [432] = {.lex_state = 82}, + [433] = {.lex_state = 82}, + [434] = {.lex_state = 82}, + [435] = {.lex_state = 82}, + [436] = {.lex_state = 82}, + [437] = {.lex_state = 82}, + [438] = {.lex_state = 82}, + [439] = {.lex_state = 82}, + [440] = {.lex_state = 82}, + [441] = {.lex_state = 82}, + [442] = {.lex_state = 82}, + [443] = {.lex_state = 82}, + [444] = {.lex_state = 82}, + [445] = {.lex_state = 82}, + [446] = {.lex_state = 82}, + [447] = {.lex_state = 82}, + [448] = {.lex_state = 82}, + [449] = {.lex_state = 82}, + [450] = {.lex_state = 82}, + [451] = {.lex_state = 82}, + [452] = {.lex_state = 82}, + [453] = {.lex_state = 82}, + [454] = {.lex_state = 82}, + [455] = {.lex_state = 82}, + [456] = {.lex_state = 82}, + [457] = {.lex_state = 82}, + [458] = {.lex_state = 82}, + [459] = {.lex_state = 82}, + [460] = {.lex_state = 82}, + [461] = {.lex_state = 82}, + [462] = {.lex_state = 82}, + [463] = {.lex_state = 82}, + [464] = {.lex_state = 82}, + [465] = {.lex_state = 82}, + [466] = {.lex_state = 82}, + [467] = {.lex_state = 82}, + [468] = {.lex_state = 82}, + [469] = {.lex_state = 82}, + [470] = {.lex_state = 82}, + [471] = {.lex_state = 82}, + [472] = {.lex_state = 82}, + [473] = {.lex_state = 82}, + [474] = {.lex_state = 82}, + [475] = {.lex_state = 82}, + [476] = {.lex_state = 82}, + [477] = {.lex_state = 82}, + [478] = {.lex_state = 82}, + [479] = {.lex_state = 82}, + [480] = {.lex_state = 82}, + [481] = {.lex_state = 82}, + [482] = {.lex_state = 82}, + [483] = {.lex_state = 82}, + [484] = {.lex_state = 82}, + [485] = {.lex_state = 82}, + [486] = {.lex_state = 82}, + [487] = {.lex_state = 82}, + [488] = {.lex_state = 82}, + [489] = {.lex_state = 82}, + [490] = {.lex_state = 82}, + [491] = {.lex_state = 82}, + [492] = {.lex_state = 82}, + [493] = {.lex_state = 82}, + [494] = {.lex_state = 82}, + [495] = {.lex_state = 82}, + [496] = {.lex_state = 82}, + [497] = {.lex_state = 82}, + [498] = {.lex_state = 82}, + [499] = {.lex_state = 82}, + [500] = {.lex_state = 82}, + [501] = {.lex_state = 82}, + [502] = {.lex_state = 82}, + [503] = {.lex_state = 82}, + [504] = {.lex_state = 82}, + [505] = {.lex_state = 82}, + [506] = {.lex_state = 82}, + [507] = {.lex_state = 82}, + [508] = {.lex_state = 82}, + [509] = {.lex_state = 82}, + [510] = {.lex_state = 82}, + [511] = {.lex_state = 82}, + [512] = {.lex_state = 82}, + [513] = {.lex_state = 82}, + [514] = {.lex_state = 82}, + [515] = {.lex_state = 82}, + [516] = {.lex_state = 82}, + [517] = {.lex_state = 82}, + [518] = {.lex_state = 82}, + [519] = {.lex_state = 82}, + [520] = {.lex_state = 82}, + [521] = {.lex_state = 82}, + [522] = {.lex_state = 82}, + [523] = {.lex_state = 82}, + [524] = {.lex_state = 82}, + [525] = {.lex_state = 82}, + [526] = {.lex_state = 82}, + [527] = {.lex_state = 82}, + [528] = {.lex_state = 82}, + [529] = {.lex_state = 82}, + [530] = {.lex_state = 82}, + [531] = {.lex_state = 82}, + [532] = {.lex_state = 82}, + [533] = {.lex_state = 82}, + [534] = {.lex_state = 82}, + [535] = {.lex_state = 82}, + [536] = {.lex_state = 82}, + [537] = {.lex_state = 82}, + [538] = {.lex_state = 82}, + [539] = {.lex_state = 82}, + [540] = {.lex_state = 82}, + [541] = {.lex_state = 82}, + [542] = {.lex_state = 82}, + [543] = {.lex_state = 82}, + [544] = {.lex_state = 82}, + [545] = {.lex_state = 82}, + [546] = {.lex_state = 82}, + [547] = {.lex_state = 82}, + [548] = {.lex_state = 82}, + [549] = {.lex_state = 82}, + [550] = {.lex_state = 82}, + [551] = {.lex_state = 82}, + [552] = {.lex_state = 82}, + [553] = {.lex_state = 82}, + [554] = {.lex_state = 82}, + [555] = {.lex_state = 82}, + [556] = {.lex_state = 82}, + [557] = {.lex_state = 82}, + [558] = {.lex_state = 82}, + [559] = {.lex_state = 82}, + [560] = {.lex_state = 82}, + [561] = {.lex_state = 82}, + [562] = {.lex_state = 82}, + [563] = {.lex_state = 82}, + [564] = {.lex_state = 82}, + [565] = {.lex_state = 82}, + [566] = {.lex_state = 82}, + [567] = {.lex_state = 82}, + [568] = {.lex_state = 82}, + [569] = {.lex_state = 82}, + [570] = {.lex_state = 82}, + [571] = {.lex_state = 82}, + [572] = {.lex_state = 82}, + [573] = {.lex_state = 82}, + [574] = {.lex_state = 82}, + [575] = {.lex_state = 82}, + [576] = {.lex_state = 82}, + [577] = {.lex_state = 82}, + [578] = {.lex_state = 82}, + [579] = {.lex_state = 82}, + [580] = {.lex_state = 82}, + [581] = {.lex_state = 82}, + [582] = {.lex_state = 82}, + [583] = {.lex_state = 82}, + [584] = {.lex_state = 82}, + [585] = {.lex_state = 82}, + [586] = {.lex_state = 82}, + [587] = {.lex_state = 82}, + [588] = {.lex_state = 82}, + [589] = {.lex_state = 82}, + [590] = {.lex_state = 82}, + [591] = {.lex_state = 82}, + [592] = {.lex_state = 82}, + [593] = {.lex_state = 82}, + [594] = {.lex_state = 82}, + [595] = {.lex_state = 82}, + [596] = {.lex_state = 82}, + [597] = {.lex_state = 82}, + [598] = {.lex_state = 82}, + [599] = {.lex_state = 82}, + [600] = {.lex_state = 82}, + [601] = {.lex_state = 82}, + [602] = {.lex_state = 82}, + [603] = {.lex_state = 82}, + [604] = {.lex_state = 82}, + [605] = {.lex_state = 82}, + [606] = {.lex_state = 82}, + [607] = {.lex_state = 82}, + [608] = {.lex_state = 82}, + [609] = {.lex_state = 82}, + [610] = {.lex_state = 82}, + [611] = {.lex_state = 82}, + [612] = {.lex_state = 82}, + [613] = {.lex_state = 82}, + [614] = {.lex_state = 82}, + [615] = {.lex_state = 82}, + [616] = {.lex_state = 82}, + [617] = {.lex_state = 82}, + [618] = {.lex_state = 82}, + [619] = {.lex_state = 82}, + [620] = {.lex_state = 82}, + [621] = {.lex_state = 82}, + [622] = {.lex_state = 82}, + [623] = {.lex_state = 82}, + [624] = {.lex_state = 82}, + [625] = {.lex_state = 82}, + [626] = {.lex_state = 82}, + [627] = {.lex_state = 82}, + [628] = {.lex_state = 82}, + [629] = {.lex_state = 82}, + [630] = {.lex_state = 82}, + [631] = {.lex_state = 82}, + [632] = {.lex_state = 82}, + [633] = {.lex_state = 82}, + [634] = {.lex_state = 82}, + [635] = {.lex_state = 82}, + [636] = {.lex_state = 82}, + [637] = {.lex_state = 82}, + [638] = {.lex_state = 82}, + [639] = {.lex_state = 82}, + [640] = {.lex_state = 82}, + [641] = {.lex_state = 82}, + [642] = {.lex_state = 82}, + [643] = {.lex_state = 82}, + [644] = {.lex_state = 82}, + [645] = {.lex_state = 82}, + [646] = {.lex_state = 82}, + [647] = {.lex_state = 82}, + [648] = {.lex_state = 82}, + [649] = {.lex_state = 82}, + [650] = {.lex_state = 82}, + [651] = {.lex_state = 82}, + [652] = {.lex_state = 82}, + [653] = {.lex_state = 82}, + [654] = {.lex_state = 82}, + [655] = {.lex_state = 82}, + [656] = {.lex_state = 82}, + [657] = {.lex_state = 82}, + [658] = {.lex_state = 82}, + [659] = {.lex_state = 82}, + [660] = {.lex_state = 82}, + [661] = {.lex_state = 82}, + [662] = {.lex_state = 82}, + [663] = {.lex_state = 82}, + [664] = {.lex_state = 82}, + [665] = {.lex_state = 82}, + [666] = {.lex_state = 82}, + [667] = {.lex_state = 82}, + [668] = {.lex_state = 82}, + [669] = {.lex_state = 82}, + [670] = {.lex_state = 82}, + [671] = {.lex_state = 82}, + [672] = {.lex_state = 82}, + [673] = {.lex_state = 82}, + [674] = {.lex_state = 82}, + [675] = {.lex_state = 82}, + [676] = {.lex_state = 82}, + [677] = {.lex_state = 82}, + [678] = {.lex_state = 82}, + [679] = {.lex_state = 82}, + [680] = {.lex_state = 82}, + [681] = {.lex_state = 82}, + [682] = {.lex_state = 82}, + [683] = {.lex_state = 82}, + [684] = {.lex_state = 82}, + [685] = {.lex_state = 82}, + [686] = {.lex_state = 82}, + [687] = {.lex_state = 82}, + [688] = {.lex_state = 82}, + [689] = {.lex_state = 82}, + [690] = {.lex_state = 82}, + [691] = {.lex_state = 82}, + [692] = {.lex_state = 82}, + [693] = {.lex_state = 82}, + [694] = {.lex_state = 82}, + [695] = {.lex_state = 82}, + [696] = {.lex_state = 82}, + [697] = {.lex_state = 82}, + [698] = {.lex_state = 82}, + [699] = {.lex_state = 82}, + [700] = {.lex_state = 82}, + [701] = {.lex_state = 82}, + [702] = {.lex_state = 82}, + [703] = {.lex_state = 82}, + [704] = {.lex_state = 82}, + [705] = {.lex_state = 82}, + [706] = {.lex_state = 82}, + [707] = {.lex_state = 82}, + [708] = {.lex_state = 82}, + [709] = {.lex_state = 82}, + [710] = {.lex_state = 82}, + [711] = {.lex_state = 82}, + [712] = {.lex_state = 82}, + [713] = {.lex_state = 82}, + [714] = {.lex_state = 82}, + [715] = {.lex_state = 82}, + [716] = {.lex_state = 82}, + [717] = {.lex_state = 82}, + [718] = {.lex_state = 82}, + [719] = {.lex_state = 82}, + [720] = {.lex_state = 82}, + [721] = {.lex_state = 82}, + [722] = {.lex_state = 82}, + [723] = {.lex_state = 82}, + [724] = {.lex_state = 82}, + [725] = {.lex_state = 82}, + [726] = {.lex_state = 82}, + [727] = {.lex_state = 82}, + [728] = {.lex_state = 82}, + [729] = {.lex_state = 82}, + [730] = {.lex_state = 82}, + [731] = {.lex_state = 82}, + [732] = {.lex_state = 82}, + [733] = {.lex_state = 82}, + [734] = {.lex_state = 82}, + [735] = {.lex_state = 82}, + [736] = {.lex_state = 82}, + [737] = {.lex_state = 82}, + [738] = {.lex_state = 82}, + [739] = {.lex_state = 82}, + [740] = {.lex_state = 82}, + [741] = {.lex_state = 82}, + [742] = {.lex_state = 82}, + [743] = {.lex_state = 82}, + [744] = {.lex_state = 82}, + [745] = {.lex_state = 82}, + [746] = {.lex_state = 82}, + [747] = {.lex_state = 82}, + [748] = {.lex_state = 82}, + [749] = {.lex_state = 82}, + [750] = {.lex_state = 82}, + [751] = {.lex_state = 82}, + [752] = {.lex_state = 82}, + [753] = {.lex_state = 82}, + [754] = {.lex_state = 82}, + [755] = {.lex_state = 82}, + [756] = {.lex_state = 82}, + [757] = {.lex_state = 82}, + [758] = {.lex_state = 82}, + [759] = {.lex_state = 82}, + [760] = {.lex_state = 82}, + [761] = {.lex_state = 82}, + [762] = {.lex_state = 82}, + [763] = {.lex_state = 82}, + [764] = {.lex_state = 82}, + [765] = {.lex_state = 82}, + [766] = {.lex_state = 82}, + [767] = {.lex_state = 82}, + [768] = {.lex_state = 82}, + [769] = {.lex_state = 82}, + [770] = {.lex_state = 82}, + [771] = {.lex_state = 82}, + [772] = {.lex_state = 82}, + [773] = {.lex_state = 82}, + [774] = {.lex_state = 82}, + [775] = {.lex_state = 82}, + [776] = {.lex_state = 82}, + [777] = {.lex_state = 82}, + [778] = {.lex_state = 82}, + [779] = {.lex_state = 82}, + [780] = {.lex_state = 82}, + [781] = {.lex_state = 82}, + [782] = {.lex_state = 82}, + [783] = {.lex_state = 82}, + [784] = {.lex_state = 82}, + [785] = {.lex_state = 82}, + [786] = {.lex_state = 82}, + [787] = {.lex_state = 82}, + [788] = {.lex_state = 82}, + [789] = {.lex_state = 82}, + [790] = {.lex_state = 82}, + [791] = {.lex_state = 82}, + [792] = {.lex_state = 82}, + [793] = {.lex_state = 82}, + [794] = {.lex_state = 82}, + [795] = {.lex_state = 82}, + [796] = {.lex_state = 82}, + [797] = {.lex_state = 82}, + [798] = {.lex_state = 82}, + [799] = {.lex_state = 82}, + [800] = {.lex_state = 82}, + [801] = {.lex_state = 82}, + [802] = {.lex_state = 82}, + [803] = {.lex_state = 82}, + [804] = {.lex_state = 82}, + [805] = {.lex_state = 82}, + [806] = {.lex_state = 82}, + [807] = {.lex_state = 82}, + [808] = {.lex_state = 82}, + [809] = {.lex_state = 82}, + [810] = {.lex_state = 82}, + [811] = {.lex_state = 82}, + [812] = {.lex_state = 82}, + [813] = {.lex_state = 82}, + [814] = {.lex_state = 82}, + [815] = {.lex_state = 82}, + [816] = {.lex_state = 82}, + [817] = {.lex_state = 82}, + [818] = {.lex_state = 82}, + [819] = {.lex_state = 82}, + [820] = {.lex_state = 82}, + [821] = {.lex_state = 82}, + [822] = {.lex_state = 82}, + [823] = {.lex_state = 82}, + [824] = {.lex_state = 82}, + [825] = {.lex_state = 82}, + [826] = {.lex_state = 82}, + [827] = {.lex_state = 82}, + [828] = {.lex_state = 82}, + [829] = {.lex_state = 82}, + [830] = {.lex_state = 82}, + [831] = {.lex_state = 82}, + [832] = {.lex_state = 82}, + [833] = {.lex_state = 82}, + [834] = {.lex_state = 82}, + [835] = {.lex_state = 82}, + [836] = {.lex_state = 82}, + [837] = {.lex_state = 82}, + [838] = {.lex_state = 82}, + [839] = {.lex_state = 82}, + [840] = {.lex_state = 82}, + [841] = {.lex_state = 82}, + [842] = {.lex_state = 82}, + [843] = {.lex_state = 82}, + [844] = {.lex_state = 82}, + [845] = {.lex_state = 82}, + [846] = {.lex_state = 82}, + [847] = {.lex_state = 82}, + [848] = {.lex_state = 82}, + [849] = {.lex_state = 82}, + [850] = {.lex_state = 82}, + [851] = {.lex_state = 82}, + [852] = {.lex_state = 82}, + [853] = {.lex_state = 82}, + [854] = {.lex_state = 82}, + [855] = {.lex_state = 82}, + [856] = {.lex_state = 82}, + [857] = {.lex_state = 82}, + [858] = {.lex_state = 82}, + [859] = {.lex_state = 82}, + [860] = {.lex_state = 82}, + [861] = {.lex_state = 82}, + [862] = {.lex_state = 82}, + [863] = {.lex_state = 82}, + [864] = {.lex_state = 82}, + [865] = {.lex_state = 82}, + [866] = {.lex_state = 82}, + [867] = {.lex_state = 82}, + [868] = {.lex_state = 82}, + [869] = {.lex_state = 82}, + [870] = {.lex_state = 82}, + [871] = {.lex_state = 82}, + [872] = {.lex_state = 82}, + [873] = {.lex_state = 82}, + [874] = {.lex_state = 82}, + [875] = {.lex_state = 82}, + [876] = {.lex_state = 82}, + [877] = {.lex_state = 82}, + [878] = {.lex_state = 82}, + [879] = {.lex_state = 82}, + [880] = {.lex_state = 82}, + [881] = {.lex_state = 82}, + [882] = {.lex_state = 82}, + [883] = {.lex_state = 82}, + [884] = {.lex_state = 82}, + [885] = {.lex_state = 82}, + [886] = {.lex_state = 82}, + [887] = {.lex_state = 82}, + [888] = {.lex_state = 82}, + [889] = {.lex_state = 82}, + [890] = {.lex_state = 82}, + [891] = {.lex_state = 82}, + [892] = {.lex_state = 82}, + [893] = {.lex_state = 82}, + [894] = {.lex_state = 82}, + [895] = {.lex_state = 82}, + [896] = {.lex_state = 82}, + [897] = {.lex_state = 82}, + [898] = {.lex_state = 82}, + [899] = {.lex_state = 82}, + [900] = {.lex_state = 82}, + [901] = {.lex_state = 82}, + [902] = {.lex_state = 82}, + [903] = {.lex_state = 82}, + [904] = {.lex_state = 82}, + [905] = {.lex_state = 82}, + [906] = {.lex_state = 82}, + [907] = {.lex_state = 82}, + [908] = {.lex_state = 82}, + [909] = {.lex_state = 82}, + [910] = {.lex_state = 82}, + [911] = {.lex_state = 82}, + [912] = {.lex_state = 82}, + [913] = {.lex_state = 82}, + [914] = {.lex_state = 82}, + [915] = {.lex_state = 82}, + [916] = {.lex_state = 82}, + [917] = {.lex_state = 82}, + [918] = {.lex_state = 82}, + [919] = {.lex_state = 82}, + [920] = {.lex_state = 82}, + [921] = {.lex_state = 82}, + [922] = {.lex_state = 82}, + [923] = {.lex_state = 82}, + [924] = {.lex_state = 82}, + [925] = {.lex_state = 82}, + [926] = {.lex_state = 82}, + [927] = {.lex_state = 82}, + [928] = {.lex_state = 82}, + [929] = {.lex_state = 82}, + [930] = {.lex_state = 82}, + [931] = {.lex_state = 82}, + [932] = {.lex_state = 82}, + [933] = {.lex_state = 82}, + [934] = {.lex_state = 82}, + [935] = {.lex_state = 82}, + [936] = {.lex_state = 82}, + [937] = {.lex_state = 82}, + [938] = {.lex_state = 82}, + [939] = {.lex_state = 82}, + [940] = {.lex_state = 82}, + [941] = {.lex_state = 82}, + [942] = {.lex_state = 82}, + [943] = {.lex_state = 82}, + [944] = {.lex_state = 82}, + [945] = {.lex_state = 82}, + [946] = {.lex_state = 82}, + [947] = {.lex_state = 82}, + [948] = {.lex_state = 82}, + [949] = {.lex_state = 82}, + [950] = {.lex_state = 82}, + [951] = {.lex_state = 82}, + [952] = {.lex_state = 82}, + [953] = {.lex_state = 82}, + [954] = {.lex_state = 82}, + [955] = {.lex_state = 82}, + [956] = {.lex_state = 82}, + [957] = {.lex_state = 82}, + [958] = {.lex_state = 82}, + [959] = {.lex_state = 82}, + [960] = {.lex_state = 82}, + [961] = {.lex_state = 82}, + [962] = {.lex_state = 82}, + [963] = {.lex_state = 82}, + [964] = {.lex_state = 82}, + [965] = {.lex_state = 82}, + [966] = {.lex_state = 82}, + [967] = {.lex_state = 82}, + [968] = {.lex_state = 82}, + [969] = {.lex_state = 82}, + [970] = {.lex_state = 82}, + [971] = {.lex_state = 82}, + [972] = {.lex_state = 82}, + [973] = {.lex_state = 82}, + [974] = {.lex_state = 82}, + [975] = {.lex_state = 82}, + [976] = {.lex_state = 82}, + [977] = {.lex_state = 82}, + [978] = {.lex_state = 82}, + [979] = {.lex_state = 82}, + [980] = {.lex_state = 82}, + [981] = {.lex_state = 82}, + [982] = {.lex_state = 82}, + [983] = {.lex_state = 82}, + [984] = {.lex_state = 82}, + [985] = {.lex_state = 82}, + [986] = {.lex_state = 82}, + [987] = {.lex_state = 82}, + [988] = {.lex_state = 82}, + [989] = {.lex_state = 82}, + [990] = {.lex_state = 82}, + [991] = {.lex_state = 82}, + [992] = {.lex_state = 82}, + [993] = {.lex_state = 82}, + [994] = {.lex_state = 82}, + [995] = {.lex_state = 82}, + [996] = {.lex_state = 82}, + [997] = {.lex_state = 82}, + [998] = {.lex_state = 82}, + [999] = {.lex_state = 82}, + [1000] = {.lex_state = 82}, + [1001] = {.lex_state = 82}, + [1002] = {.lex_state = 82}, + [1003] = {.lex_state = 82}, + [1004] = {.lex_state = 82}, + [1005] = {.lex_state = 82}, + [1006] = {.lex_state = 82}, + [1007] = {.lex_state = 82}, + [1008] = {.lex_state = 82}, + [1009] = {.lex_state = 82}, + [1010] = {.lex_state = 82}, + [1011] = {.lex_state = 82}, + [1012] = {.lex_state = 82}, + [1013] = {.lex_state = 82}, + [1014] = {.lex_state = 82}, + [1015] = {.lex_state = 82}, + [1016] = {.lex_state = 82}, + [1017] = {.lex_state = 82}, + [1018] = {.lex_state = 82}, + [1019] = {.lex_state = 82}, + [1020] = {.lex_state = 82}, + [1021] = {.lex_state = 82}, + [1022] = {.lex_state = 82}, + [1023] = {.lex_state = 82}, + [1024] = {.lex_state = 82}, + [1025] = {.lex_state = 82}, + [1026] = {.lex_state = 82}, + [1027] = {.lex_state = 82}, + [1028] = {.lex_state = 82}, + [1029] = {.lex_state = 82}, + [1030] = {.lex_state = 82}, + [1031] = {.lex_state = 82}, + [1032] = {.lex_state = 82}, + [1033] = {.lex_state = 82}, + [1034] = {.lex_state = 82}, + [1035] = {.lex_state = 82}, + [1036] = {.lex_state = 82}, + [1037] = {.lex_state = 82}, + [1038] = {.lex_state = 82}, + [1039] = {.lex_state = 82}, + [1040] = {.lex_state = 82}, + [1041] = {.lex_state = 82}, + [1042] = {.lex_state = 82}, + [1043] = {.lex_state = 82}, + [1044] = {.lex_state = 82}, + [1045] = {.lex_state = 82}, + [1046] = {.lex_state = 82}, + [1047] = {.lex_state = 82}, + [1048] = {.lex_state = 82}, + [1049] = {.lex_state = 82}, + [1050] = {.lex_state = 82}, + [1051] = {.lex_state = 82}, + [1052] = {.lex_state = 82}, + [1053] = {.lex_state = 82}, + [1054] = {.lex_state = 82}, + [1055] = {.lex_state = 82}, + [1056] = {.lex_state = 82}, + [1057] = {.lex_state = 82}, + [1058] = {.lex_state = 82}, + [1059] = {.lex_state = 82}, + [1060] = {.lex_state = 82}, + [1061] = {.lex_state = 82}, + [1062] = {.lex_state = 82}, + [1063] = {.lex_state = 82}, + [1064] = {.lex_state = 82}, + [1065] = {.lex_state = 82}, + [1066] = {.lex_state = 82}, + [1067] = {.lex_state = 82}, + [1068] = {.lex_state = 82}, + [1069] = {.lex_state = 82}, + [1070] = {.lex_state = 82}, + [1071] = {.lex_state = 82}, + [1072] = {.lex_state = 82}, + [1073] = {.lex_state = 82}, + [1074] = {.lex_state = 82}, + [1075] = {.lex_state = 82}, + [1076] = {.lex_state = 82}, + [1077] = {.lex_state = 82}, + [1078] = {.lex_state = 82}, + [1079] = {.lex_state = 82}, + [1080] = {.lex_state = 82}, + [1081] = {.lex_state = 82}, + [1082] = {.lex_state = 82}, + [1083] = {.lex_state = 82}, + [1084] = {.lex_state = 82}, + [1085] = {.lex_state = 82}, + [1086] = {.lex_state = 82}, + [1087] = {.lex_state = 82}, + [1088] = {.lex_state = 82}, + [1089] = {.lex_state = 82}, + [1090] = {.lex_state = 82}, + [1091] = {.lex_state = 82}, + [1092] = {.lex_state = 82}, + [1093] = {.lex_state = 82}, + [1094] = {.lex_state = 82}, + [1095] = {.lex_state = 82}, + [1096] = {.lex_state = 82}, + [1097] = {.lex_state = 82}, + [1098] = {.lex_state = 82}, + [1099] = {.lex_state = 82}, + [1100] = {.lex_state = 82}, + [1101] = {.lex_state = 82}, + [1102] = {.lex_state = 82}, + [1103] = {.lex_state = 82}, + [1104] = {.lex_state = 82}, + [1105] = {.lex_state = 82}, + [1106] = {.lex_state = 82}, + [1107] = {.lex_state = 82}, + [1108] = {.lex_state = 82}, + [1109] = {.lex_state = 82}, + [1110] = {.lex_state = 82}, + [1111] = {.lex_state = 82}, + [1112] = {.lex_state = 82}, + [1113] = {.lex_state = 82}, + [1114] = {.lex_state = 82}, + [1115] = {.lex_state = 82}, + [1116] = {.lex_state = 82}, + [1117] = {.lex_state = 82}, + [1118] = {.lex_state = 82}, + [1119] = {.lex_state = 82}, + [1120] = {.lex_state = 82}, + [1121] = {.lex_state = 82}, + [1122] = {.lex_state = 82}, + [1123] = {.lex_state = 82}, + [1124] = {.lex_state = 82}, + [1125] = {.lex_state = 82}, + [1126] = {.lex_state = 82}, + [1127] = {.lex_state = 82}, + [1128] = {.lex_state = 82}, + [1129] = {.lex_state = 82}, + [1130] = {.lex_state = 82}, + [1131] = {.lex_state = 82}, + [1132] = {.lex_state = 82}, + [1133] = {.lex_state = 82}, + [1134] = {.lex_state = 82}, + [1135] = {.lex_state = 82}, + [1136] = {.lex_state = 82}, + [1137] = {.lex_state = 82}, + [1138] = {.lex_state = 82}, + [1139] = {.lex_state = 82}, + [1140] = {.lex_state = 82}, + [1141] = {.lex_state = 82}, + [1142] = {.lex_state = 82}, + [1143] = {.lex_state = 82}, + [1144] = {.lex_state = 82}, + [1145] = {.lex_state = 82}, + [1146] = {.lex_state = 82}, + [1147] = {.lex_state = 82}, + [1148] = {.lex_state = 82}, + [1149] = {.lex_state = 82}, + [1150] = {.lex_state = 82}, + [1151] = {.lex_state = 82}, + [1152] = {.lex_state = 82}, + [1153] = {.lex_state = 82}, + [1154] = {.lex_state = 82}, + [1155] = {.lex_state = 82}, + [1156] = {.lex_state = 82}, + [1157] = {.lex_state = 82}, + [1158] = {.lex_state = 82}, + [1159] = {.lex_state = 82}, + [1160] = {.lex_state = 82}, + [1161] = {.lex_state = 82}, + [1162] = {.lex_state = 82}, + [1163] = {.lex_state = 82}, + [1164] = {.lex_state = 82}, + [1165] = {.lex_state = 82}, + [1166] = {.lex_state = 82}, + [1167] = {.lex_state = 82}, + [1168] = {.lex_state = 82}, + [1169] = {.lex_state = 82}, + [1170] = {.lex_state = 82}, + [1171] = {.lex_state = 82}, + [1172] = {.lex_state = 82}, + [1173] = {.lex_state = 82}, + [1174] = {.lex_state = 82}, + [1175] = {.lex_state = 82}, + [1176] = {.lex_state = 82}, + [1177] = {.lex_state = 82}, + [1178] = {.lex_state = 82}, + [1179] = {.lex_state = 82}, + [1180] = {.lex_state = 82}, + [1181] = {.lex_state = 82}, + [1182] = {.lex_state = 82}, + [1183] = {.lex_state = 82}, + [1184] = {.lex_state = 82}, + [1185] = {.lex_state = 82}, + [1186] = {.lex_state = 82}, + [1187] = {.lex_state = 82}, + [1188] = {.lex_state = 82}, + [1189] = {.lex_state = 82}, + [1190] = {.lex_state = 82}, + [1191] = {.lex_state = 82}, + [1192] = {.lex_state = 82}, + [1193] = {.lex_state = 82}, + [1194] = {.lex_state = 82}, + [1195] = {.lex_state = 82}, + [1196] = {.lex_state = 82}, + [1197] = {.lex_state = 82}, + [1198] = {.lex_state = 82}, + [1199] = {.lex_state = 82}, + [1200] = {.lex_state = 82}, + [1201] = {.lex_state = 82}, + [1202] = {.lex_state = 82}, + [1203] = {.lex_state = 82}, + [1204] = {.lex_state = 82}, + [1205] = {.lex_state = 82}, + [1206] = {.lex_state = 82}, + [1207] = {.lex_state = 82}, + [1208] = {.lex_state = 82}, + [1209] = {.lex_state = 82}, + [1210] = {.lex_state = 82}, + [1211] = {.lex_state = 82}, + [1212] = {.lex_state = 82}, + [1213] = {.lex_state = 82}, + [1214] = {.lex_state = 82}, + [1215] = {.lex_state = 82}, + [1216] = {.lex_state = 82}, + [1217] = {.lex_state = 82}, + [1218] = {.lex_state = 82}, + [1219] = {.lex_state = 82}, + [1220] = {.lex_state = 82}, + [1221] = {.lex_state = 82}, + [1222] = {.lex_state = 82}, + [1223] = {.lex_state = 82}, + [1224] = {.lex_state = 82}, + [1225] = {.lex_state = 82}, + [1226] = {.lex_state = 82}, + [1227] = {.lex_state = 82}, + [1228] = {.lex_state = 82}, + [1229] = {.lex_state = 82}, + [1230] = {.lex_state = 82}, + [1231] = {.lex_state = 82}, + [1232] = {.lex_state = 82}, + [1233] = {.lex_state = 82}, + [1234] = {.lex_state = 82}, + [1235] = {.lex_state = 82}, + [1236] = {.lex_state = 82}, + [1237] = {.lex_state = 82}, + [1238] = {.lex_state = 82}, + [1239] = {.lex_state = 82}, + [1240] = {.lex_state = 82}, + [1241] = {.lex_state = 82}, + [1242] = {.lex_state = 82}, + [1243] = {.lex_state = 82}, + [1244] = {.lex_state = 82}, + [1245] = {.lex_state = 82}, + [1246] = {.lex_state = 82}, + [1247] = {.lex_state = 82}, + [1248] = {.lex_state = 82}, + [1249] = {.lex_state = 82}, + [1250] = {.lex_state = 82}, + [1251] = {.lex_state = 82}, + [1252] = {.lex_state = 82}, + [1253] = {.lex_state = 82}, + [1254] = {.lex_state = 82}, + [1255] = {.lex_state = 82}, + [1256] = {.lex_state = 82}, + [1257] = {.lex_state = 82}, + [1258] = {.lex_state = 82}, + [1259] = {.lex_state = 82}, + [1260] = {.lex_state = 82}, + [1261] = {.lex_state = 82}, + [1262] = {.lex_state = 82}, + [1263] = {.lex_state = 82}, + [1264] = {.lex_state = 82}, + [1265] = {.lex_state = 82}, + [1266] = {.lex_state = 82}, + [1267] = {.lex_state = 82}, + [1268] = {.lex_state = 82}, + [1269] = {.lex_state = 82}, + [1270] = {.lex_state = 82}, + [1271] = {.lex_state = 82}, + [1272] = {.lex_state = 82}, + [1273] = {.lex_state = 82}, + [1274] = {.lex_state = 82}, + [1275] = {.lex_state = 82}, + [1276] = {.lex_state = 82}, + [1277] = {.lex_state = 82}, + [1278] = {.lex_state = 82}, + [1279] = {.lex_state = 82}, + [1280] = {.lex_state = 82}, + [1281] = {.lex_state = 82}, + [1282] = {.lex_state = 82}, + [1283] = {.lex_state = 82}, + [1284] = {.lex_state = 82}, + [1285] = {.lex_state = 82}, + [1286] = {.lex_state = 82}, + [1287] = {.lex_state = 82}, + [1288] = {.lex_state = 82}, + [1289] = {.lex_state = 82}, + [1290] = {.lex_state = 82}, + [1291] = {.lex_state = 82}, + [1292] = {.lex_state = 82}, + [1293] = {.lex_state = 82}, + [1294] = {.lex_state = 82}, + [1295] = {.lex_state = 82}, + [1296] = {.lex_state = 82}, + [1297] = {.lex_state = 82}, + [1298] = {.lex_state = 82}, + [1299] = {.lex_state = 82}, + [1300] = {.lex_state = 82}, + [1301] = {.lex_state = 82}, + [1302] = {.lex_state = 82}, + [1303] = {.lex_state = 82}, + [1304] = {.lex_state = 82}, + [1305] = {.lex_state = 82}, + [1306] = {.lex_state = 82}, + [1307] = {.lex_state = 82}, + [1308] = {.lex_state = 82}, + [1309] = {.lex_state = 82}, + [1310] = {.lex_state = 82}, + [1311] = {.lex_state = 82}, + [1312] = {.lex_state = 82}, + [1313] = {.lex_state = 82}, + [1314] = {.lex_state = 82}, + [1315] = {.lex_state = 82}, + [1316] = {.lex_state = 82}, + [1317] = {.lex_state = 82}, + [1318] = {.lex_state = 82}, + [1319] = {.lex_state = 82}, + [1320] = {.lex_state = 82}, + [1321] = {.lex_state = 82}, + [1322] = {.lex_state = 82}, + [1323] = {.lex_state = 82}, + [1324] = {.lex_state = 82}, + [1325] = {.lex_state = 82}, + [1326] = {.lex_state = 82}, + [1327] = {.lex_state = 82}, + [1328] = {.lex_state = 82}, + [1329] = {.lex_state = 82}, + [1330] = {.lex_state = 82}, + [1331] = {.lex_state = 82}, + [1332] = {.lex_state = 82}, + [1333] = {.lex_state = 82}, + [1334] = {.lex_state = 82}, + [1335] = {.lex_state = 82}, + [1336] = {.lex_state = 82}, + [1337] = {.lex_state = 82}, + [1338] = {.lex_state = 82}, + [1339] = {.lex_state = 82}, + [1340] = {.lex_state = 82}, + [1341] = {.lex_state = 82}, + [1342] = {.lex_state = 82}, + [1343] = {.lex_state = 82}, + [1344] = {.lex_state = 82}, + [1345] = {.lex_state = 82}, + [1346] = {.lex_state = 82}, + [1347] = {.lex_state = 82}, + [1348] = {.lex_state = 82}, + [1349] = {.lex_state = 82}, + [1350] = {.lex_state = 82}, + [1351] = {.lex_state = 82}, + [1352] = {.lex_state = 82}, + [1353] = {.lex_state = 82}, + [1354] = {.lex_state = 82}, + [1355] = {.lex_state = 82}, + [1356] = {.lex_state = 82}, + [1357] = {.lex_state = 82}, + [1358] = {.lex_state = 82}, + [1359] = {.lex_state = 82}, + [1360] = {.lex_state = 82}, + [1361] = {.lex_state = 82}, + [1362] = {.lex_state = 82}, + [1363] = {.lex_state = 82}, + [1364] = {.lex_state = 82}, + [1365] = {.lex_state = 82}, + [1366] = {.lex_state = 82}, + [1367] = {.lex_state = 82}, + [1368] = {.lex_state = 82}, + [1369] = {.lex_state = 82}, + [1370] = {.lex_state = 82}, + [1371] = {.lex_state = 82}, + [1372] = {.lex_state = 82}, + [1373] = {.lex_state = 82}, + [1374] = {.lex_state = 82}, + [1375] = {.lex_state = 82}, + [1376] = {.lex_state = 82}, + [1377] = {.lex_state = 82}, + [1378] = {.lex_state = 82}, + [1379] = {.lex_state = 82}, + [1380] = {.lex_state = 82}, + [1381] = {.lex_state = 82}, + [1382] = {.lex_state = 82}, + [1383] = {.lex_state = 82}, + [1384] = {.lex_state = 82}, + [1385] = {.lex_state = 82}, + [1386] = {.lex_state = 82}, + [1387] = {.lex_state = 82}, + [1388] = {.lex_state = 82}, + [1389] = {.lex_state = 82}, + [1390] = {.lex_state = 82}, + [1391] = {.lex_state = 82}, + [1392] = {.lex_state = 82}, + [1393] = {.lex_state = 82}, + [1394] = {.lex_state = 82}, + [1395] = {.lex_state = 82}, + [1396] = {.lex_state = 82}, + [1397] = {.lex_state = 82}, + [1398] = {.lex_state = 82}, + [1399] = {.lex_state = 82}, + [1400] = {.lex_state = 82}, + [1401] = {.lex_state = 82}, + [1402] = {.lex_state = 82}, + [1403] = {.lex_state = 82}, + [1404] = {.lex_state = 82}, + [1405] = {.lex_state = 82}, + [1406] = {.lex_state = 82}, + [1407] = {.lex_state = 82}, + [1408] = {.lex_state = 82}, + [1409] = {.lex_state = 82}, + [1410] = {.lex_state = 82}, + [1411] = {.lex_state = 82}, + [1412] = {.lex_state = 82}, + [1413] = {.lex_state = 82}, + [1414] = {.lex_state = 82}, + [1415] = {.lex_state = 82}, + [1416] = {.lex_state = 82}, + [1417] = {.lex_state = 82}, + [1418] = {.lex_state = 82}, + [1419] = {.lex_state = 82}, + [1420] = {.lex_state = 82}, + [1421] = {.lex_state = 82}, + [1422] = {.lex_state = 82}, + [1423] = {.lex_state = 82}, + [1424] = {.lex_state = 82}, + [1425] = {.lex_state = 82}, + [1426] = {.lex_state = 82}, + [1427] = {.lex_state = 82}, + [1428] = {.lex_state = 82}, + [1429] = {.lex_state = 82}, + [1430] = {.lex_state = 82}, + [1431] = {.lex_state = 82}, + [1432] = {.lex_state = 82}, + [1433] = {.lex_state = 82}, + [1434] = {.lex_state = 82}, + [1435] = {.lex_state = 82}, + [1436] = {.lex_state = 82}, + [1437] = {.lex_state = 82}, + [1438] = {.lex_state = 82}, + [1439] = {.lex_state = 82}, + [1440] = {.lex_state = 82}, + [1441] = {.lex_state = 82}, + [1442] = {.lex_state = 82}, + [1443] = {.lex_state = 82}, + [1444] = {.lex_state = 82}, + [1445] = {.lex_state = 82}, + [1446] = {.lex_state = 82}, + [1447] = {.lex_state = 82}, + [1448] = {.lex_state = 82}, + [1449] = {.lex_state = 82}, + [1450] = {.lex_state = 82}, + [1451] = {.lex_state = 82}, + [1452] = {.lex_state = 82}, + [1453] = {.lex_state = 82}, + [1454] = {.lex_state = 82}, + [1455] = {.lex_state = 82}, + [1456] = {.lex_state = 82}, + [1457] = {.lex_state = 82}, + [1458] = {.lex_state = 82}, + [1459] = {.lex_state = 82}, + [1460] = {.lex_state = 82}, + [1461] = {.lex_state = 82}, + [1462] = {.lex_state = 82}, + [1463] = {.lex_state = 82}, + [1464] = {.lex_state = 82}, + [1465] = {.lex_state = 82}, + [1466] = {.lex_state = 82}, + [1467] = {.lex_state = 82}, + [1468] = {.lex_state = 82}, + [1469] = {.lex_state = 82}, + [1470] = {.lex_state = 82}, + [1471] = {.lex_state = 82}, + [1472] = {.lex_state = 82}, + [1473] = {.lex_state = 82}, + [1474] = {.lex_state = 82}, + [1475] = {.lex_state = 82}, + [1476] = {.lex_state = 82}, + [1477] = {.lex_state = 82}, + [1478] = {.lex_state = 82}, + [1479] = {.lex_state = 82}, + [1480] = {.lex_state = 82}, + [1481] = {.lex_state = 82}, + [1482] = {.lex_state = 82}, + [1483] = {.lex_state = 82}, + [1484] = {.lex_state = 82}, + [1485] = {.lex_state = 82}, + [1486] = {.lex_state = 82}, + [1487] = {.lex_state = 82}, + [1488] = {.lex_state = 82}, + [1489] = {.lex_state = 82}, + [1490] = {.lex_state = 82}, + [1491] = {.lex_state = 82}, + [1492] = {.lex_state = 82}, + [1493] = {.lex_state = 82}, + [1494] = {.lex_state = 82}, + [1495] = {.lex_state = 82}, + [1496] = {.lex_state = 82}, + [1497] = {.lex_state = 82}, + [1498] = {.lex_state = 82}, + [1499] = {.lex_state = 82}, + [1500] = {.lex_state = 82}, + [1501] = {.lex_state = 82}, + [1502] = {.lex_state = 82}, + [1503] = {.lex_state = 82}, + [1504] = {.lex_state = 82}, + [1505] = {.lex_state = 82}, + [1506] = {.lex_state = 82}, + [1507] = {.lex_state = 82}, + [1508] = {.lex_state = 82}, + [1509] = {.lex_state = 82}, + [1510] = {.lex_state = 82}, + [1511] = {.lex_state = 82}, + [1512] = {.lex_state = 82}, + [1513] = {.lex_state = 82}, + [1514] = {.lex_state = 82}, + [1515] = {.lex_state = 82}, + [1516] = {.lex_state = 82}, + [1517] = {.lex_state = 82}, + [1518] = {.lex_state = 82}, + [1519] = {.lex_state = 82}, + [1520] = {.lex_state = 82}, + [1521] = {.lex_state = 82}, + [1522] = {.lex_state = 82}, + [1523] = {.lex_state = 82}, + [1524] = {.lex_state = 82}, + [1525] = {.lex_state = 82}, + [1526] = {.lex_state = 82}, + [1527] = {.lex_state = 82}, + [1528] = {.lex_state = 82}, + [1529] = {.lex_state = 82}, + [1530] = {.lex_state = 82}, + [1531] = {.lex_state = 82}, + [1532] = {.lex_state = 82}, + [1533] = {.lex_state = 82}, + [1534] = {.lex_state = 82}, + [1535] = {.lex_state = 82}, + [1536] = {.lex_state = 82}, + [1537] = {.lex_state = 82}, + [1538] = {.lex_state = 82}, + [1539] = {.lex_state = 82}, + [1540] = {.lex_state = 82}, + [1541] = {.lex_state = 82}, + [1542] = {.lex_state = 82}, + [1543] = {.lex_state = 82}, + [1544] = {.lex_state = 82}, + [1545] = {.lex_state = 82}, + [1546] = {.lex_state = 82}, + [1547] = {.lex_state = 82}, + [1548] = {.lex_state = 82}, + [1549] = {.lex_state = 82}, + [1550] = {.lex_state = 82}, + [1551] = {.lex_state = 82}, + [1552] = {.lex_state = 82}, + [1553] = {.lex_state = 82}, + [1554] = {.lex_state = 82}, + [1555] = {.lex_state = 82}, + [1556] = {.lex_state = 82}, + [1557] = {.lex_state = 82}, + [1558] = {.lex_state = 82}, + [1559] = {.lex_state = 82}, + [1560] = {.lex_state = 82}, + [1561] = {.lex_state = 82}, + [1562] = {.lex_state = 82}, + [1563] = {.lex_state = 82}, + [1564] = {.lex_state = 82}, + [1565] = {.lex_state = 82}, + [1566] = {.lex_state = 82}, + [1567] = {.lex_state = 82}, + [1568] = {.lex_state = 82}, + [1569] = {.lex_state = 82}, + [1570] = {.lex_state = 82}, + [1571] = {.lex_state = 82}, + [1572] = {.lex_state = 82}, + [1573] = {.lex_state = 82}, + [1574] = {.lex_state = 82}, + [1575] = {.lex_state = 82}, + [1576] = {.lex_state = 82}, + [1577] = {.lex_state = 82}, + [1578] = {.lex_state = 82}, + [1579] = {.lex_state = 82}, + [1580] = {.lex_state = 82}, + [1581] = {.lex_state = 82}, + [1582] = {.lex_state = 82}, + [1583] = {.lex_state = 82}, + [1584] = {.lex_state = 82}, + [1585] = {.lex_state = 82}, + [1586] = {.lex_state = 82}, + [1587] = {.lex_state = 82}, + [1588] = {.lex_state = 82}, + [1589] = {.lex_state = 82}, + [1590] = {.lex_state = 82}, + [1591] = {.lex_state = 82}, + [1592] = {.lex_state = 82}, + [1593] = {.lex_state = 82}, + [1594] = {.lex_state = 82}, + [1595] = {.lex_state = 82}, + [1596] = {.lex_state = 82}, + [1597] = {.lex_state = 82}, + [1598] = {.lex_state = 82}, + [1599] = {.lex_state = 82}, + [1600] = {.lex_state = 82}, + [1601] = {.lex_state = 82}, + [1602] = {.lex_state = 82}, + [1603] = {.lex_state = 82}, + [1604] = {.lex_state = 82}, + [1605] = {.lex_state = 82}, + [1606] = {.lex_state = 82}, + [1607] = {.lex_state = 82}, + [1608] = {.lex_state = 82}, + [1609] = {.lex_state = 82}, + [1610] = {.lex_state = 82}, + [1611] = {.lex_state = 82}, + [1612] = {.lex_state = 82}, + [1613] = {.lex_state = 82}, + [1614] = {.lex_state = 82}, + [1615] = {.lex_state = 82}, + [1616] = {.lex_state = 82}, + [1617] = {.lex_state = 82}, + [1618] = {.lex_state = 82}, + [1619] = {.lex_state = 82}, + [1620] = {.lex_state = 82}, + [1621] = {.lex_state = 82}, + [1622] = {.lex_state = 82}, + [1623] = {.lex_state = 82}, + [1624] = {.lex_state = 82}, + [1625] = {.lex_state = 82}, + [1626] = {.lex_state = 82}, + [1627] = {.lex_state = 82}, + [1628] = {.lex_state = 82}, + [1629] = {.lex_state = 82}, + [1630] = {.lex_state = 82}, + [1631] = {.lex_state = 82}, + [1632] = {.lex_state = 82}, + [1633] = {.lex_state = 82}, + [1634] = {.lex_state = 82}, + [1635] = {.lex_state = 82}, + [1636] = {.lex_state = 82}, + [1637] = {.lex_state = 82}, + [1638] = {.lex_state = 82}, + [1639] = {.lex_state = 82}, + [1640] = {.lex_state = 82}, + [1641] = {.lex_state = 82}, + [1642] = {.lex_state = 82}, + [1643] = {.lex_state = 82}, + [1644] = {.lex_state = 82}, + [1645] = {.lex_state = 82}, + [1646] = {.lex_state = 82}, + [1647] = {.lex_state = 82}, + [1648] = {.lex_state = 82}, + [1649] = {.lex_state = 82}, + [1650] = {.lex_state = 82}, + [1651] = {.lex_state = 82}, + [1652] = {.lex_state = 82}, + [1653] = {.lex_state = 82}, + [1654] = {.lex_state = 82}, + [1655] = {.lex_state = 82}, + [1656] = {.lex_state = 82}, + [1657] = {.lex_state = 82}, + [1658] = {.lex_state = 82}, + [1659] = {.lex_state = 82}, + [1660] = {.lex_state = 82}, + [1661] = {.lex_state = 82}, + [1662] = {.lex_state = 82}, + [1663] = {.lex_state = 82}, + [1664] = {.lex_state = 82}, + [1665] = {.lex_state = 82}, + [1666] = {.lex_state = 82}, + [1667] = {.lex_state = 82}, + [1668] = {.lex_state = 82}, + [1669] = {.lex_state = 82}, + [1670] = {.lex_state = 82}, + [1671] = {.lex_state = 82}, + [1672] = {.lex_state = 82}, + [1673] = {.lex_state = 82}, + [1674] = {.lex_state = 82}, + [1675] = {.lex_state = 82}, + [1676] = {.lex_state = 82}, + [1677] = {.lex_state = 82}, + [1678] = {.lex_state = 82}, + [1679] = {.lex_state = 82}, + [1680] = {.lex_state = 82}, + [1681] = {.lex_state = 82}, + [1682] = {.lex_state = 82}, + [1683] = {.lex_state = 82}, + [1684] = {.lex_state = 82}, + [1685] = {.lex_state = 82}, + [1686] = {.lex_state = 82}, + [1687] = {.lex_state = 82}, + [1688] = {.lex_state = 82}, + [1689] = {.lex_state = 82}, + [1690] = {.lex_state = 82}, + [1691] = {.lex_state = 82}, + [1692] = {.lex_state = 82}, + [1693] = {.lex_state = 82}, + [1694] = {.lex_state = 82}, + [1695] = {.lex_state = 82}, + [1696] = {.lex_state = 82}, + [1697] = {.lex_state = 82}, + [1698] = {.lex_state = 82}, + [1699] = {.lex_state = 82}, + [1700] = {.lex_state = 82}, + [1701] = {.lex_state = 82}, + [1702] = {.lex_state = 82}, + [1703] = {.lex_state = 82}, + [1704] = {.lex_state = 82}, + [1705] = {.lex_state = 82}, + [1706] = {.lex_state = 82}, + [1707] = {.lex_state = 82}, + [1708] = {.lex_state = 82}, + [1709] = {.lex_state = 82}, + [1710] = {.lex_state = 82}, + [1711] = {.lex_state = 82}, + [1712] = {.lex_state = 82}, + [1713] = {.lex_state = 82}, + [1714] = {.lex_state = 82}, + [1715] = {.lex_state = 82}, + [1716] = {.lex_state = 82}, + [1717] = {.lex_state = 82}, + [1718] = {.lex_state = 82}, + [1719] = {.lex_state = 82}, + [1720] = {.lex_state = 82}, + [1721] = {.lex_state = 82}, + [1722] = {.lex_state = 82}, + [1723] = {.lex_state = 82}, + [1724] = {.lex_state = 82}, + [1725] = {.lex_state = 82}, + [1726] = {.lex_state = 82}, + [1727] = {.lex_state = 82}, + [1728] = {.lex_state = 82}, + [1729] = {.lex_state = 82}, + [1730] = {.lex_state = 82}, + [1731] = {.lex_state = 82}, + [1732] = {.lex_state = 82}, + [1733] = {.lex_state = 82}, + [1734] = {.lex_state = 82}, + [1735] = {.lex_state = 82}, + [1736] = {.lex_state = 82}, + [1737] = {.lex_state = 82}, + [1738] = {.lex_state = 82}, + [1739] = {.lex_state = 82}, + [1740] = {.lex_state = 82}, + [1741] = {.lex_state = 82}, + [1742] = {.lex_state = 82}, + [1743] = {.lex_state = 82}, + [1744] = {.lex_state = 82}, + [1745] = {.lex_state = 82}, + [1746] = {.lex_state = 82}, + [1747] = {.lex_state = 82}, + [1748] = {.lex_state = 82}, + [1749] = {.lex_state = 82}, + [1750] = {.lex_state = 82}, + [1751] = {.lex_state = 82}, + [1752] = {.lex_state = 82}, + [1753] = {.lex_state = 82}, + [1754] = {.lex_state = 82}, + [1755] = {.lex_state = 12}, + [1756] = {.lex_state = 12}, + [1757] = {.lex_state = 12}, + [1758] = {.lex_state = 12}, + [1759] = {.lex_state = 12}, + [1760] = {.lex_state = 12}, + [1761] = {.lex_state = 12}, + [1762] = {.lex_state = 12}, + [1763] = {.lex_state = 12}, + [1764] = {.lex_state = 12}, + [1765] = {.lex_state = 12}, + [1766] = {.lex_state = 12}, + [1767] = {.lex_state = 12}, + [1768] = {.lex_state = 12}, + [1769] = {.lex_state = 12}, [1770] = {.lex_state = 5}, - [1771] = {.lex_state = 9}, - [1772] = {.lex_state = 9}, - [1773] = {.lex_state = 9}, - [1774] = {.lex_state = 9}, - [1775] = {.lex_state = 6}, - [1776] = {.lex_state = 10}, - [1777] = {.lex_state = 6}, - [1778] = {.lex_state = 6}, - [1779] = {.lex_state = 9}, - [1780] = {.lex_state = 9}, - [1781] = {.lex_state = 4}, - [1782] = {.lex_state = 5}, - [1783] = {.lex_state = 5}, + [1771] = {.lex_state = 7}, + [1772] = {.lex_state = 5}, + [1773] = {.lex_state = 7}, + [1774] = {.lex_state = 7}, + [1775] = {.lex_state = 7}, + [1776] = {.lex_state = 5}, + [1777] = {.lex_state = 5}, + [1778] = {.lex_state = 5}, + [1779] = {.lex_state = 5}, + [1780] = {.lex_state = 5}, + [1781] = {.lex_state = 7}, + [1782] = {.lex_state = 7}, + [1783] = {.lex_state = 81}, [1784] = {.lex_state = 9}, - [1785] = {.lex_state = 4}, - [1786] = {.lex_state = 9}, - [1787] = {.lex_state = 9}, - [1788] = {.lex_state = 9}, - [1789] = {.lex_state = 9}, - [1790] = {.lex_state = 9}, - [1791] = {.lex_state = 6}, - [1792] = {.lex_state = 9}, + [1785] = {.lex_state = 5}, + [1786] = {.lex_state = 5}, + [1787] = {.lex_state = 81}, + [1788] = {.lex_state = 6}, + [1789] = {.lex_state = 5}, + [1790] = {.lex_state = 5}, + [1791] = {.lex_state = 81}, + [1792] = {.lex_state = 5}, [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 9}, - [1795] = {.lex_state = 9}, - [1796] = {.lex_state = 9}, - [1797] = {.lex_state = 9}, + [1794] = {.lex_state = 4}, + [1795] = {.lex_state = 5}, + [1796] = {.lex_state = 10}, + [1797] = {.lex_state = 5}, [1798] = {.lex_state = 9}, - [1799] = {.lex_state = 9}, + [1799] = {.lex_state = 5}, [1800] = {.lex_state = 9}, - [1801] = {.lex_state = 9}, - [1802] = {.lex_state = 9}, + [1801] = {.lex_state = 5}, + [1802] = {.lex_state = 10}, [1803] = {.lex_state = 9}, - [1804] = {.lex_state = 9}, - [1805] = {.lex_state = 9}, - [1806] = {.lex_state = 5}, - [1807] = {.lex_state = 4}, - [1808] = {.lex_state = 9}, + [1804] = {.lex_state = 6}, + [1805] = {.lex_state = 5}, + [1806] = {.lex_state = 10}, + [1807] = {.lex_state = 5}, + [1808] = {.lex_state = 10}, [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 9}, - [1811] = {.lex_state = 9}, + [1810] = {.lex_state = 4}, + [1811] = {.lex_state = 5}, [1812] = {.lex_state = 9}, [1813] = {.lex_state = 9}, [1814] = {.lex_state = 9}, - [1815] = {.lex_state = 9}, + [1815] = {.lex_state = 5}, [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 10}, + [1817] = {.lex_state = 5}, [1818] = {.lex_state = 9}, [1819] = {.lex_state = 9}, [1820] = {.lex_state = 9}, - [1821] = {.lex_state = 9}, - [1822] = {.lex_state = 10}, + [1821] = {.lex_state = 4}, + [1822] = {.lex_state = 9}, [1823] = {.lex_state = 9}, - [1824] = {.lex_state = 5}, + [1824] = {.lex_state = 9}, [1825] = {.lex_state = 9}, - [1826] = {.lex_state = 9}, + [1826] = {.lex_state = 5}, [1827] = {.lex_state = 9}, [1828] = {.lex_state = 9}, [1829] = {.lex_state = 9}, [1830] = {.lex_state = 9}, [1831] = {.lex_state = 9}, [1832] = {.lex_state = 9}, - [1833] = {.lex_state = 9}, + [1833] = {.lex_state = 4}, [1834] = {.lex_state = 9}, - [1835] = {.lex_state = 4}, - [1836] = {.lex_state = 7}, - [1837] = {.lex_state = 10}, - [1838] = {.lex_state = 7}, - [1839] = {.lex_state = 10}, + [1835] = {.lex_state = 9}, + [1836] = {.lex_state = 9}, + [1837] = {.lex_state = 9}, + [1838] = {.lex_state = 10}, + [1839] = {.lex_state = 9}, [1840] = {.lex_state = 6}, - [1841] = {.lex_state = 5}, - [1842] = {.lex_state = 5}, - [1843] = {.lex_state = 4}, - [1844] = {.lex_state = 10}, - [1845] = {.lex_state = 5}, - [1846] = {.lex_state = 4}, + [1841] = {.lex_state = 6}, + [1842] = {.lex_state = 9}, + [1843] = {.lex_state = 9}, + [1844] = {.lex_state = 9}, + [1845] = {.lex_state = 10}, + [1846] = {.lex_state = 9}, [1847] = {.lex_state = 9}, - [1848] = {.lex_state = 6}, - [1849] = {.lex_state = 7}, - [1850] = {.lex_state = 7}, - [1851] = {.lex_state = 5}, - [1852] = {.lex_state = 7}, - [1853] = {.lex_state = 7}, - [1854] = {.lex_state = 7}, - [1855] = {.lex_state = 7}, - [1856] = {.lex_state = 7}, - [1857] = {.lex_state = 7}, - [1858] = {.lex_state = 5}, - [1859] = {.lex_state = 7}, - [1860] = {.lex_state = 7}, - [1861] = {.lex_state = 7}, - [1862] = {.lex_state = 7}, - [1863] = {.lex_state = 7}, - [1864] = {.lex_state = 6}, - [1865] = {.lex_state = 7}, - [1866] = {.lex_state = 7}, - [1867] = {.lex_state = 7}, - [1868] = {.lex_state = 7}, - [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 7}, + [1848] = {.lex_state = 9}, + [1849] = {.lex_state = 9}, + [1850] = {.lex_state = 9}, + [1851] = {.lex_state = 9}, + [1852] = {.lex_state = 5}, + [1853] = {.lex_state = 9}, + [1854] = {.lex_state = 9}, + [1855] = {.lex_state = 9}, + [1856] = {.lex_state = 6}, + [1857] = {.lex_state = 9}, + [1858] = {.lex_state = 9}, + [1859] = {.lex_state = 9}, + [1860] = {.lex_state = 9}, + [1861] = {.lex_state = 9}, + [1862] = {.lex_state = 9}, + [1863] = {.lex_state = 9}, + [1864] = {.lex_state = 10}, + [1865] = {.lex_state = 9}, + [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 = 7}, - [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 7}, - [1875] = {.lex_state = 7}, - [1876] = {.lex_state = 7}, - [1877] = {.lex_state = 7}, - [1878] = {.lex_state = 7}, - [1879] = {.lex_state = 7}, - [1880] = {.lex_state = 5}, - [1881] = {.lex_state = 7}, - [1882] = {.lex_state = 7}, - [1883] = {.lex_state = 7}, + [1872] = {.lex_state = 9}, + [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}, + [1881] = {.lex_state = 4}, + [1882] = {.lex_state = 10}, + [1883] = {.lex_state = 4}, [1884] = {.lex_state = 7}, - [1885] = {.lex_state = 5}, - [1886] = {.lex_state = 7}, - [1887] = {.lex_state = 7}, - [1888] = {.lex_state = 7}, - [1889] = {.lex_state = 7}, + [1885] = {.lex_state = 7}, + [1886] = {.lex_state = 4}, + [1887] = {.lex_state = 6}, + [1888] = {.lex_state = 6}, + [1889] = {.lex_state = 5}, [1890] = {.lex_state = 7}, - [1891] = {.lex_state = 5}, - [1892] = {.lex_state = 7}, + [1891] = {.lex_state = 7}, + [1892] = {.lex_state = 9}, [1893] = {.lex_state = 7}, [1894] = {.lex_state = 7}, [1895] = {.lex_state = 7}, [1896] = {.lex_state = 7}, [1897] = {.lex_state = 7}, - [1898] = {.lex_state = 7}, + [1898] = {.lex_state = 5}, [1899] = {.lex_state = 7}, [1900] = {.lex_state = 7}, [1901] = {.lex_state = 7}, [1902] = {.lex_state = 7}, [1903] = {.lex_state = 7}, - [1904] = {.lex_state = 7}, + [1904] = {.lex_state = 5}, [1905] = {.lex_state = 7}, [1906] = {.lex_state = 7}, [1907] = {.lex_state = 7}, @@ -14689,7 +14853,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1918] = {.lex_state = 7}, [1919] = {.lex_state = 7}, [1920] = {.lex_state = 7}, - [1921] = {.lex_state = 7}, + [1921] = {.lex_state = 5}, [1922] = {.lex_state = 7}, [1923] = {.lex_state = 7}, [1924] = {.lex_state = 7}, @@ -14698,15 +14862,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1927] = {.lex_state = 5}, [1928] = {.lex_state = 7}, [1929] = {.lex_state = 7}, - [1930] = {.lex_state = 5}, + [1930] = {.lex_state = 7}, [1931] = {.lex_state = 7}, - [1932] = {.lex_state = 7}, + [1932] = {.lex_state = 5}, [1933] = {.lex_state = 7}, [1934] = {.lex_state = 7}, [1935] = {.lex_state = 7}, [1936] = {.lex_state = 7}, [1937] = {.lex_state = 7}, - [1938] = {.lex_state = 5}, + [1938] = {.lex_state = 7}, [1939] = {.lex_state = 7}, [1940] = {.lex_state = 7}, [1941] = {.lex_state = 7}, @@ -14717,67 +14881,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1946] = {.lex_state = 7}, [1947] = {.lex_state = 7}, [1948] = {.lex_state = 7}, - [1949] = {.lex_state = 6}, + [1949] = {.lex_state = 7}, [1950] = {.lex_state = 7}, [1951] = {.lex_state = 7}, [1952] = {.lex_state = 7}, [1953] = {.lex_state = 7}, - [1954] = {.lex_state = 5}, + [1954] = {.lex_state = 7}, [1955] = {.lex_state = 7}, [1956] = {.lex_state = 7}, - [1957] = {.lex_state = 81}, - [1958] = {.lex_state = 5}, + [1957] = {.lex_state = 6}, + [1958] = {.lex_state = 7}, [1959] = {.lex_state = 7}, [1960] = {.lex_state = 5}, [1961] = {.lex_state = 7}, - [1962] = {.lex_state = 80}, - [1963] = {.lex_state = 6}, + [1962] = {.lex_state = 7}, + [1963] = {.lex_state = 7}, [1964] = {.lex_state = 7}, [1965] = {.lex_state = 7}, [1966] = {.lex_state = 7}, - [1967] = {.lex_state = 5}, - [1968] = {.lex_state = 5}, + [1967] = {.lex_state = 7}, + [1968] = {.lex_state = 7}, [1969] = {.lex_state = 7}, - [1970] = {.lex_state = 5}, - [1971] = {.lex_state = 7}, + [1970] = {.lex_state = 7}, + [1971] = {.lex_state = 5}, [1972] = {.lex_state = 7}, [1973] = {.lex_state = 7}, - [1974] = {.lex_state = 7}, + [1974] = {.lex_state = 5}, [1975] = {.lex_state = 7}, [1976] = {.lex_state = 7}, [1977] = {.lex_state = 7}, - [1978] = {.lex_state = 5}, + [1978] = {.lex_state = 7}, [1979] = {.lex_state = 7}, [1980] = {.lex_state = 7}, - [1981] = {.lex_state = 5}, - [1982] = {.lex_state = 5}, - [1983] = {.lex_state = 4}, + [1981] = {.lex_state = 7}, + [1982] = {.lex_state = 7}, + [1983] = {.lex_state = 7}, [1984] = {.lex_state = 7}, [1985] = {.lex_state = 7}, [1986] = {.lex_state = 7}, [1987] = {.lex_state = 7}, [1988] = {.lex_state = 7}, [1989] = {.lex_state = 7}, - [1990] = {.lex_state = 7}, + [1990] = {.lex_state = 6}, [1991] = {.lex_state = 7}, [1992] = {.lex_state = 7}, - [1993] = {.lex_state = 5}, - [1994] = {.lex_state = 5}, + [1993] = {.lex_state = 7}, + [1994] = {.lex_state = 7}, [1995] = {.lex_state = 7}, [1996] = {.lex_state = 7}, - [1997] = {.lex_state = 7}, - [1998] = {.lex_state = 5}, + [1997] = {.lex_state = 5}, + [1998] = {.lex_state = 7}, [1999] = {.lex_state = 7}, [2000] = {.lex_state = 7}, [2001] = {.lex_state = 7}, - [2002] = {.lex_state = 12}, - [2003] = {.lex_state = 7}, - [2004] = {.lex_state = 7}, - [2005] = {.lex_state = 80}, + [2002] = {.lex_state = 7}, + [2003] = {.lex_state = 5}, + [2004] = {.lex_state = 81}, + [2005] = {.lex_state = 5}, [2006] = {.lex_state = 7}, [2007] = {.lex_state = 7}, [2008] = {.lex_state = 7}, - [2009] = {.lex_state = 7}, + [2009] = {.lex_state = 5}, [2010] = {.lex_state = 7}, [2011] = {.lex_state = 7}, [2012] = {.lex_state = 7}, @@ -14795,789 +14959,789 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2024] = {.lex_state = 7}, [2025] = {.lex_state = 7}, [2026] = {.lex_state = 7}, - [2027] = {.lex_state = 4}, - [2028] = {.lex_state = 7}, + [2027] = {.lex_state = 7}, + [2028] = {.lex_state = 5}, [2029] = {.lex_state = 7}, - [2030] = {.lex_state = 7}, - [2031] = {.lex_state = 5}, - [2032] = {.lex_state = 7}, - [2033] = {.lex_state = 5}, - [2034] = {.lex_state = 6}, - [2035] = {.lex_state = 5}, - [2036] = {.lex_state = 5}, - [2037] = {.lex_state = 5}, - [2038] = {.lex_state = 5}, + [2030] = {.lex_state = 12}, + [2031] = {.lex_state = 7}, + [2032] = {.lex_state = 4}, + [2033] = {.lex_state = 7}, + [2034] = {.lex_state = 5}, + [2035] = {.lex_state = 7}, + [2036] = {.lex_state = 7}, + [2037] = {.lex_state = 7}, + [2038] = {.lex_state = 7}, [2039] = {.lex_state = 7}, - [2040] = {.lex_state = 7}, - [2041] = {.lex_state = 7}, + [2040] = {.lex_state = 5}, + [2041] = {.lex_state = 5}, [2042] = {.lex_state = 7}, [2043] = {.lex_state = 5}, [2044] = {.lex_state = 7}, - [2045] = {.lex_state = 7}, + [2045] = {.lex_state = 6}, [2046] = {.lex_state = 7}, - [2047] = {.lex_state = 5}, - [2048] = {.lex_state = 7}, + [2047] = {.lex_state = 7}, + [2048] = {.lex_state = 5}, [2049] = {.lex_state = 7}, [2050] = {.lex_state = 7}, - [2051] = {.lex_state = 5}, - [2052] = {.lex_state = 5}, - [2053] = {.lex_state = 5}, - [2054] = {.lex_state = 5}, + [2051] = {.lex_state = 7}, + [2052] = {.lex_state = 7}, + [2053] = {.lex_state = 7}, + [2054] = {.lex_state = 7}, [2055] = {.lex_state = 7}, [2056] = {.lex_state = 7}, - [2057] = {.lex_state = 6}, - [2058] = {.lex_state = 5}, - [2059] = {.lex_state = 7}, + [2057] = {.lex_state = 7}, + [2058] = {.lex_state = 7}, + [2059] = {.lex_state = 5}, [2060] = {.lex_state = 7}, [2061] = {.lex_state = 7}, - [2062] = {.lex_state = 5}, - [2063] = {.lex_state = 6}, + [2062] = {.lex_state = 7}, + [2063] = {.lex_state = 7}, [2064] = {.lex_state = 7}, [2065] = {.lex_state = 7}, [2066] = {.lex_state = 5}, - [2067] = {.lex_state = 12}, + [2067] = {.lex_state = 7}, [2068] = {.lex_state = 7}, [2069] = {.lex_state = 7}, - [2070] = {.lex_state = 5}, + [2070] = {.lex_state = 7}, [2071] = {.lex_state = 7}, - [2072] = {.lex_state = 5}, - [2073] = {.lex_state = 7}, - [2074] = {.lex_state = 7}, - [2075] = {.lex_state = 6}, + [2072] = {.lex_state = 7}, + [2073] = {.lex_state = 5}, + [2074] = {.lex_state = 5}, + [2075] = {.lex_state = 7}, [2076] = {.lex_state = 7}, - [2077] = {.lex_state = 7}, + [2077] = {.lex_state = 6}, [2078] = {.lex_state = 7}, - [2079] = {.lex_state = 6}, + [2079] = {.lex_state = 5}, [2080] = {.lex_state = 7}, - [2081] = {.lex_state = 5}, - [2082] = {.lex_state = 6}, - [2083] = {.lex_state = 5}, - [2084] = {.lex_state = 7}, - [2085] = {.lex_state = 5}, - [2086] = {.lex_state = 7}, - [2087] = {.lex_state = 6}, - [2088] = {.lex_state = 7}, - [2089] = {.lex_state = 5}, - [2090] = {.lex_state = 5}, - [2091] = {.lex_state = 5}, + [2081] = {.lex_state = 81}, + [2082] = {.lex_state = 5}, + [2083] = {.lex_state = 4}, + [2084] = {.lex_state = 5}, + [2085] = {.lex_state = 82}, + [2086] = {.lex_state = 5}, + [2087] = {.lex_state = 7}, + [2088] = {.lex_state = 5}, + [2089] = {.lex_state = 7}, + [2090] = {.lex_state = 7}, + [2091] = {.lex_state = 7}, [2092] = {.lex_state = 5}, - [2093] = {.lex_state = 5}, - [2094] = {.lex_state = 5}, - [2095] = {.lex_state = 4}, - [2096] = {.lex_state = 7}, - [2097] = {.lex_state = 7}, + [2093] = {.lex_state = 7}, + [2094] = {.lex_state = 7}, + [2095] = {.lex_state = 5}, + [2096] = {.lex_state = 81}, + [2097] = {.lex_state = 5}, [2098] = {.lex_state = 5}, - [2099] = {.lex_state = 5}, - [2100] = {.lex_state = 12}, - [2101] = {.lex_state = 5}, + [2099] = {.lex_state = 7}, + [2100] = {.lex_state = 5}, + [2101] = {.lex_state = 15}, [2102] = {.lex_state = 7}, - [2103] = {.lex_state = 7}, - [2104] = {.lex_state = 7}, + [2103] = {.lex_state = 5}, + [2104] = {.lex_state = 5}, [2105] = {.lex_state = 7}, - [2106] = {.lex_state = 5}, - [2107] = {.lex_state = 5}, - [2108] = {.lex_state = 6}, + [2106] = {.lex_state = 7}, + [2107] = {.lex_state = 7}, + [2108] = {.lex_state = 5}, [2109] = {.lex_state = 7}, - [2110] = {.lex_state = 5}, - [2111] = {.lex_state = 5}, + [2110] = {.lex_state = 12}, + [2111] = {.lex_state = 7}, [2112] = {.lex_state = 7}, - [2113] = {.lex_state = 4}, - [2114] = {.lex_state = 7}, - [2115] = {.lex_state = 7}, - [2116] = {.lex_state = 5}, + [2113] = {.lex_state = 12}, + [2114] = {.lex_state = 6}, + [2115] = {.lex_state = 4}, + [2116] = {.lex_state = 12}, [2117] = {.lex_state = 7}, - [2118] = {.lex_state = 7}, - [2119] = {.lex_state = 12}, - [2120] = {.lex_state = 7}, + [2118] = {.lex_state = 4}, + [2119] = {.lex_state = 7}, + [2120] = {.lex_state = 5}, [2121] = {.lex_state = 7}, [2122] = {.lex_state = 7}, [2123] = {.lex_state = 5}, - [2124] = {.lex_state = 5}, - [2125] = {.lex_state = 6}, - [2126] = {.lex_state = 5}, + [2124] = {.lex_state = 7}, + [2125] = {.lex_state = 7}, + [2126] = {.lex_state = 7}, [2127] = {.lex_state = 5}, - [2128] = {.lex_state = 5}, + [2128] = {.lex_state = 7}, [2129] = {.lex_state = 5}, - [2130] = {.lex_state = 5}, - [2131] = {.lex_state = 5}, + [2130] = {.lex_state = 7}, + [2131] = {.lex_state = 7}, [2132] = {.lex_state = 7}, [2133] = {.lex_state = 5}, - [2134] = {.lex_state = 7}, - [2135] = {.lex_state = 5}, - [2136] = {.lex_state = 5}, + [2134] = {.lex_state = 6}, + [2135] = {.lex_state = 7}, + [2136] = {.lex_state = 6}, [2137] = {.lex_state = 5}, [2138] = {.lex_state = 5}, - [2139] = {.lex_state = 6}, - [2140] = {.lex_state = 5}, + [2139] = {.lex_state = 5}, + [2140] = {.lex_state = 6}, [2141] = {.lex_state = 7}, - [2142] = {.lex_state = 7}, - [2143] = {.lex_state = 11}, - [2144] = {.lex_state = 11}, - [2145] = {.lex_state = 6}, - [2146] = {.lex_state = 5}, + [2142] = {.lex_state = 6}, + [2143] = {.lex_state = 6}, + [2144] = {.lex_state = 7}, + [2145] = {.lex_state = 5}, + [2146] = {.lex_state = 7}, [2147] = {.lex_state = 7}, - [2148] = {.lex_state = 12}, - [2149] = {.lex_state = 6}, - [2150] = {.lex_state = 5}, - [2151] = {.lex_state = 6}, - [2152] = {.lex_state = 5}, + [2148] = {.lex_state = 7}, + [2149] = {.lex_state = 7}, + [2150] = {.lex_state = 7}, + [2151] = {.lex_state = 7}, + [2152] = {.lex_state = 7}, [2153] = {.lex_state = 7}, - [2154] = {.lex_state = 6}, - [2155] = {.lex_state = 7}, - [2156] = {.lex_state = 11}, + [2154] = {.lex_state = 5}, + [2155] = {.lex_state = 5}, + [2156] = {.lex_state = 7}, [2157] = {.lex_state = 5}, - [2158] = {.lex_state = 7}, - [2159] = {.lex_state = 6}, + [2158] = {.lex_state = 5}, + [2159] = {.lex_state = 5}, [2160] = {.lex_state = 5}, - [2161] = {.lex_state = 5}, - [2162] = {.lex_state = 5}, + [2161] = {.lex_state = 7}, + [2162] = {.lex_state = 7}, [2163] = {.lex_state = 5}, - [2164] = {.lex_state = 6}, + [2164] = {.lex_state = 5}, [2165] = {.lex_state = 5}, [2166] = {.lex_state = 6}, [2167] = {.lex_state = 5}, - [2168] = {.lex_state = 5}, - [2169] = {.lex_state = 7}, - [2170] = {.lex_state = 11}, - [2171] = {.lex_state = 5}, + [2168] = {.lex_state = 7}, + [2169] = {.lex_state = 81}, + [2170] = {.lex_state = 5}, + [2171] = {.lex_state = 7}, [2172] = {.lex_state = 5}, [2173] = {.lex_state = 5}, - [2174] = {.lex_state = 5}, + [2174] = {.lex_state = 81}, [2175] = {.lex_state = 5}, - [2176] = {.lex_state = 5}, - [2177] = {.lex_state = 5}, - [2178] = {.lex_state = 6}, - [2179] = {.lex_state = 5}, + [2176] = {.lex_state = 12}, + [2177] = {.lex_state = 7}, + [2178] = {.lex_state = 5}, + [2179] = {.lex_state = 7}, [2180] = {.lex_state = 5}, - [2181] = {.lex_state = 5}, - [2182] = {.lex_state = 6}, - [2183] = {.lex_state = 7}, + [2181] = {.lex_state = 81}, + [2182] = {.lex_state = 11}, + [2183] = {.lex_state = 81}, [2184] = {.lex_state = 5}, - [2185] = {.lex_state = 5}, - [2186] = {.lex_state = 7}, - [2187] = {.lex_state = 5}, - [2188] = {.lex_state = 6}, - [2189] = {.lex_state = 6}, - [2190] = {.lex_state = 7}, - [2191] = {.lex_state = 5}, + [2185] = {.lex_state = 11}, + [2186] = {.lex_state = 5}, + [2187] = {.lex_state = 7}, + [2188] = {.lex_state = 7}, + [2189] = {.lex_state = 5}, + [2190] = {.lex_state = 5}, + [2191] = {.lex_state = 7}, [2192] = {.lex_state = 5}, - [2193] = {.lex_state = 5}, - [2194] = {.lex_state = 7}, - [2195] = {.lex_state = 7}, - [2196] = {.lex_state = 7}, - [2197] = {.lex_state = 6}, + [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 = 11}, - [2200] = {.lex_state = 7}, - [2201] = {.lex_state = 7}, + [2199] = {.lex_state = 7}, + [2200] = {.lex_state = 6}, + [2201] = {.lex_state = 5}, [2202] = {.lex_state = 6}, - [2203] = {.lex_state = 5}, - [2204] = {.lex_state = 5}, - [2205] = {.lex_state = 7}, - [2206] = {.lex_state = 7}, + [2203] = {.lex_state = 6}, + [2204] = {.lex_state = 6}, + [2205] = {.lex_state = 5}, + [2206] = {.lex_state = 5}, [2207] = {.lex_state = 5}, - [2208] = {.lex_state = 6}, - [2209] = {.lex_state = 5}, - [2210] = {.lex_state = 6}, - [2211] = {.lex_state = 6}, - [2212] = {.lex_state = 7}, - [2213] = {.lex_state = 6}, + [2208] = {.lex_state = 5}, + [2209] = {.lex_state = 6}, + [2210] = {.lex_state = 81}, + [2211] = {.lex_state = 5}, + [2212] = {.lex_state = 5}, + [2213] = {.lex_state = 5}, [2214] = {.lex_state = 7}, - [2215] = {.lex_state = 7}, - [2216] = {.lex_state = 5}, - [2217] = {.lex_state = 7}, - [2218] = {.lex_state = 7}, - [2219] = {.lex_state = 5}, + [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 = 7}, - [2222] = {.lex_state = 11}, - [2223] = {.lex_state = 6}, - [2224] = {.lex_state = 11}, - [2225] = {.lex_state = 6}, - [2226] = {.lex_state = 11}, - [2227] = {.lex_state = 7}, - [2228] = {.lex_state = 6}, - [2229] = {.lex_state = 5}, - [2230] = {.lex_state = 7}, + [2221] = {.lex_state = 15}, + [2222] = {.lex_state = 81}, + [2223] = {.lex_state = 15}, + [2224] = {.lex_state = 5}, + [2225] = {.lex_state = 5}, + [2226] = {.lex_state = 5}, + [2227] = {.lex_state = 5}, + [2228] = {.lex_state = 81}, + [2229] = {.lex_state = 7}, + [2230] = {.lex_state = 5}, [2231] = {.lex_state = 5}, - [2232] = {.lex_state = 7}, - [2233] = {.lex_state = 7}, - [2234] = {.lex_state = 7}, - [2235] = {.lex_state = 7}, - [2236] = {.lex_state = 7}, - [2237] = {.lex_state = 7}, - [2238] = {.lex_state = 11}, - [2239] = {.lex_state = 8}, - [2240] = {.lex_state = 11}, + [2232] = {.lex_state = 5}, + [2233] = {.lex_state = 81}, + [2234] = {.lex_state = 5}, + [2235] = {.lex_state = 5}, + [2236] = {.lex_state = 5}, + [2237] = {.lex_state = 5}, + [2238] = {.lex_state = 5}, + [2239] = {.lex_state = 5}, + [2240] = {.lex_state = 7}, [2241] = {.lex_state = 7}, - [2242] = {.lex_state = 7}, - [2243] = {.lex_state = 11}, - [2244] = {.lex_state = 7}, - [2245] = {.lex_state = 7}, - [2246] = {.lex_state = 11}, - [2247] = {.lex_state = 5}, + [2242] = {.lex_state = 5}, + [2243] = {.lex_state = 5}, + [2244] = {.lex_state = 11}, + [2245] = {.lex_state = 5}, + [2246] = {.lex_state = 6}, + [2247] = {.lex_state = 11}, [2248] = {.lex_state = 7}, [2249] = {.lex_state = 7}, - [2250] = {.lex_state = 7}, - [2251] = {.lex_state = 7}, - [2252] = {.lex_state = 5}, + [2250] = {.lex_state = 5}, + [2251] = {.lex_state = 11}, + [2252] = {.lex_state = 7}, [2253] = {.lex_state = 6}, [2254] = {.lex_state = 7}, - [2255] = {.lex_state = 5}, + [2255] = {.lex_state = 7}, [2256] = {.lex_state = 5}, - [2257] = {.lex_state = 11}, - [2258] = {.lex_state = 7}, + [2257] = {.lex_state = 5}, + [2258] = {.lex_state = 11}, [2259] = {.lex_state = 5}, - [2260] = {.lex_state = 7}, - [2261] = {.lex_state = 11}, - [2262] = {.lex_state = 11}, + [2260] = {.lex_state = 8}, + [2261] = {.lex_state = 6}, + [2262] = {.lex_state = 6}, [2263] = {.lex_state = 7}, - [2264] = {.lex_state = 5}, - [2265] = {.lex_state = 11}, - [2266] = {.lex_state = 5}, - [2267] = {.lex_state = 7}, - [2268] = {.lex_state = 6}, - [2269] = {.lex_state = 5}, + [2264] = {.lex_state = 7}, + [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 = 5}, - [2272] = {.lex_state = 7}, - [2273] = {.lex_state = 7}, - [2274] = {.lex_state = 7}, - [2275] = {.lex_state = 11}, - [2276] = {.lex_state = 5}, + [2271] = {.lex_state = 11}, + [2272] = {.lex_state = 11}, + [2273] = {.lex_state = 6}, + [2274] = {.lex_state = 11}, + [2275] = {.lex_state = 6}, + [2276] = {.lex_state = 11}, [2277] = {.lex_state = 7}, - [2278] = {.lex_state = 6}, + [2278] = {.lex_state = 7}, [2279] = {.lex_state = 6}, - [2280] = {.lex_state = 5}, - [2281] = {.lex_state = 6}, - [2282] = {.lex_state = 6}, + [2280] = {.lex_state = 7}, + [2281] = {.lex_state = 7}, + [2282] = {.lex_state = 7}, [2283] = {.lex_state = 7}, - [2284] = {.lex_state = 6}, + [2284] = {.lex_state = 5}, [2285] = {.lex_state = 5}, [2286] = {.lex_state = 7}, [2287] = {.lex_state = 7}, [2288] = {.lex_state = 7}, - [2289] = {.lex_state = 6}, + [2289] = {.lex_state = 7}, [2290] = {.lex_state = 7}, - [2291] = {.lex_state = 7}, - [2292] = {.lex_state = 5}, - [2293] = {.lex_state = 5}, - [2294] = {.lex_state = 5}, - [2295] = {.lex_state = 7}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 6}, - [2298] = {.lex_state = 6}, + [2291] = {.lex_state = 5}, + [2292] = {.lex_state = 7}, + [2293] = {.lex_state = 11}, + [2294] = {.lex_state = 7}, + [2295] = {.lex_state = 5}, + [2296] = {.lex_state = 7}, + [2297] = {.lex_state = 5}, + [2298] = {.lex_state = 5}, [2299] = {.lex_state = 6}, - [2300] = {.lex_state = 6}, - [2301] = {.lex_state = 6}, - [2302] = {.lex_state = 5}, + [2300] = {.lex_state = 7}, + [2301] = {.lex_state = 5}, + [2302] = {.lex_state = 7}, [2303] = {.lex_state = 6}, [2304] = {.lex_state = 6}, - [2305] = {.lex_state = 11}, - [2306] = {.lex_state = 6}, - [2307] = {.lex_state = 7}, - [2308] = {.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}, - [2313] = {.lex_state = 7}, + [2313] = {.lex_state = 11}, [2314] = {.lex_state = 5}, - [2315] = {.lex_state = 7}, - [2316] = {.lex_state = 6}, + [2315] = {.lex_state = 11}, + [2316] = {.lex_state = 5}, [2317] = {.lex_state = 7}, - [2318] = {.lex_state = 11}, - [2319] = {.lex_state = 6}, - [2320] = {.lex_state = 5}, + [2318] = {.lex_state = 7}, + [2319] = {.lex_state = 11}, + [2320] = {.lex_state = 11}, [2321] = {.lex_state = 5}, - [2322] = {.lex_state = 6}, - [2323] = {.lex_state = 6}, + [2322] = {.lex_state = 11}, + [2323] = {.lex_state = 8}, [2324] = {.lex_state = 5}, - [2325] = {.lex_state = 6}, + [2325] = {.lex_state = 5}, [2326] = {.lex_state = 7}, - [2327] = {.lex_state = 6}, - [2328] = {.lex_state = 5}, - [2329] = {.lex_state = 11}, - [2330] = {.lex_state = 6}, - [2331] = {.lex_state = 7}, + [2327] = {.lex_state = 7}, + [2328] = {.lex_state = 7}, + [2329] = {.lex_state = 5}, + [2330] = {.lex_state = 11}, + [2331] = {.lex_state = 5}, [2332] = {.lex_state = 5}, - [2333] = {.lex_state = 6}, + [2333] = {.lex_state = 7}, [2334] = {.lex_state = 7}, [2335] = {.lex_state = 7}, [2336] = {.lex_state = 7}, - [2337] = {.lex_state = 7}, - [2338] = {.lex_state = 5}, - [2339] = {.lex_state = 7}, - [2340] = {.lex_state = 6}, + [2337] = {.lex_state = 6}, + [2338] = {.lex_state = 7}, + [2339] = {.lex_state = 6}, + [2340] = {.lex_state = 11}, [2341] = {.lex_state = 6}, - [2342] = {.lex_state = 7}, - [2343] = {.lex_state = 6}, + [2342] = {.lex_state = 6}, + [2343] = {.lex_state = 11}, [2344] = {.lex_state = 5}, - [2345] = {.lex_state = 7}, + [2345] = {.lex_state = 6}, [2346] = {.lex_state = 7}, - [2347] = {.lex_state = 8}, - [2348] = {.lex_state = 11}, + [2347] = {.lex_state = 7}, + [2348] = {.lex_state = 6}, [2349] = {.lex_state = 6}, [2350] = {.lex_state = 5}, - [2351] = {.lex_state = 11}, - [2352] = {.lex_state = 5}, - [2353] = {.lex_state = 7}, + [2351] = {.lex_state = 6}, + [2352] = {.lex_state = 6}, + [2353] = {.lex_state = 6}, [2354] = {.lex_state = 11}, - [2355] = {.lex_state = 5}, - [2356] = {.lex_state = 11}, - [2357] = {.lex_state = 7}, - [2358] = {.lex_state = 5}, + [2355] = {.lex_state = 11}, + [2356] = {.lex_state = 7}, + [2357] = {.lex_state = 8}, + [2358] = {.lex_state = 7}, [2359] = {.lex_state = 5}, - [2360] = {.lex_state = 5}, - [2361] = {.lex_state = 7}, - [2362] = {.lex_state = 11}, + [2360] = {.lex_state = 7}, + [2361] = {.lex_state = 5}, + [2362] = {.lex_state = 7}, [2363] = {.lex_state = 7}, [2364] = {.lex_state = 6}, - [2365] = {.lex_state = 11}, - [2366] = {.lex_state = 7}, - [2367] = {.lex_state = 11}, - [2368] = {.lex_state = 11}, - [2369] = {.lex_state = 11}, - [2370] = {.lex_state = 11}, - [2371] = {.lex_state = 7}, - [2372] = {.lex_state = 11}, - [2373] = {.lex_state = 6}, - [2374] = {.lex_state = 7}, - [2375] = {.lex_state = 11}, - [2376] = {.lex_state = 11}, + [2365] = {.lex_state = 7}, + [2366] = {.lex_state = 5}, + [2367] = {.lex_state = 5}, + [2368] = {.lex_state = 7}, + [2369] = {.lex_state = 7}, + [2370] = {.lex_state = 6}, + [2371] = {.lex_state = 5}, + [2372] = {.lex_state = 6}, + [2373] = {.lex_state = 11}, + [2374] = {.lex_state = 6}, + [2375] = {.lex_state = 5}, + [2376] = {.lex_state = 8}, [2377] = {.lex_state = 11}, - [2378] = {.lex_state = 11}, - [2379] = {.lex_state = 5}, - [2380] = {.lex_state = 5}, - [2381] = {.lex_state = 7}, - [2382] = {.lex_state = 5}, - [2383] = {.lex_state = 11}, + [2378] = {.lex_state = 5}, + [2379] = {.lex_state = 7}, + [2380] = {.lex_state = 6}, + [2381] = {.lex_state = 11}, + [2382] = {.lex_state = 6}, + [2383] = {.lex_state = 7}, [2384] = {.lex_state = 5}, [2385] = {.lex_state = 7}, - [2386] = {.lex_state = 11}, - [2387] = {.lex_state = 7}, - [2388] = {.lex_state = 11}, - [2389] = {.lex_state = 6}, - [2390] = {.lex_state = 11}, - [2391] = {.lex_state = 5}, + [2386] = {.lex_state = 5}, + [2387] = {.lex_state = 8}, + [2388] = {.lex_state = 5}, + [2389] = {.lex_state = 7}, + [2390] = {.lex_state = 5}, + [2391] = {.lex_state = 6}, [2392] = {.lex_state = 5}, - [2393] = {.lex_state = 11}, - [2394] = {.lex_state = 7}, - [2395] = {.lex_state = 6}, + [2393] = {.lex_state = 6}, + [2394] = {.lex_state = 6}, + [2395] = {.lex_state = 11}, [2396] = {.lex_state = 7}, [2397] = {.lex_state = 7}, - [2398] = {.lex_state = 5}, - [2399] = {.lex_state = 6}, - [2400] = {.lex_state = 5}, - [2401] = {.lex_state = 6}, + [2398] = {.lex_state = 6}, + [2399] = {.lex_state = 5}, + [2400] = {.lex_state = 7}, + [2401] = {.lex_state = 7}, [2402] = {.lex_state = 6}, [2403] = {.lex_state = 6}, - [2404] = {.lex_state = 6}, - [2405] = {.lex_state = 11}, + [2404] = {.lex_state = 7}, + [2405] = {.lex_state = 15}, [2406] = {.lex_state = 7}, - [2407] = {.lex_state = 5}, - [2408] = {.lex_state = 5}, - [2409] = {.lex_state = 5}, - [2410] = {.lex_state = 7}, - [2411] = {.lex_state = 11}, + [2407] = {.lex_state = 11}, + [2408] = {.lex_state = 6}, + [2409] = {.lex_state = 7}, + [2410] = {.lex_state = 11}, + [2411] = {.lex_state = 6}, [2412] = {.lex_state = 7}, - [2413] = {.lex_state = 5}, - [2414] = {.lex_state = 11}, - [2415] = {.lex_state = 11}, - [2416] = {.lex_state = 11}, - [2417] = {.lex_state = 11}, - [2418] = {.lex_state = 5}, + [2413] = {.lex_state = 11}, + [2414] = {.lex_state = 7}, + [2415] = {.lex_state = 7}, + [2416] = {.lex_state = 6}, + [2417] = {.lex_state = 7}, + [2418] = {.lex_state = 7}, [2419] = {.lex_state = 7}, [2420] = {.lex_state = 5}, - [2421] = {.lex_state = 7}, - [2422] = {.lex_state = 7}, + [2421] = {.lex_state = 5}, + [2422] = {.lex_state = 6}, [2423] = {.lex_state = 6}, - [2424] = {.lex_state = 5}, - [2425] = {.lex_state = 7}, + [2424] = {.lex_state = 11}, + [2425] = {.lex_state = 6}, [2426] = {.lex_state = 5}, - [2427] = {.lex_state = 7}, - [2428] = {.lex_state = 5}, + [2427] = {.lex_state = 5}, + [2428] = {.lex_state = 7}, [2429] = {.lex_state = 7}, [2430] = {.lex_state = 7}, - [2431] = {.lex_state = 7}, - [2432] = {.lex_state = 5}, - [2433] = {.lex_state = 6}, - [2434] = {.lex_state = 7}, - [2435] = {.lex_state = 5}, - [2436] = {.lex_state = 5}, - [2437] = {.lex_state = 5}, - [2438] = {.lex_state = 5}, + [2431] = {.lex_state = 11}, + [2432] = {.lex_state = 6}, + [2433] = {.lex_state = 7}, + [2434] = {.lex_state = 5}, + [2435] = {.lex_state = 7}, + [2436] = {.lex_state = 7}, + [2437] = {.lex_state = 7}, + [2438] = {.lex_state = 7}, [2439] = {.lex_state = 7}, - [2440] = {.lex_state = 7}, + [2440] = {.lex_state = 5}, [2441] = {.lex_state = 11}, - [2442] = {.lex_state = 7}, - [2443] = {.lex_state = 7}, - [2444] = {.lex_state = 5}, - [2445] = {.lex_state = 7}, - [2446] = {.lex_state = 5}, + [2442] = {.lex_state = 11}, + [2443] = {.lex_state = 5}, + [2444] = {.lex_state = 7}, + [2445] = {.lex_state = 5}, + [2446] = {.lex_state = 7}, [2447] = {.lex_state = 11}, [2448] = {.lex_state = 7}, - [2449] = {.lex_state = 7}, - [2450] = {.lex_state = 6}, - [2451] = {.lex_state = 5}, - [2452] = {.lex_state = 7}, + [2449] = {.lex_state = 6}, + [2450] = {.lex_state = 7}, + [2451] = {.lex_state = 11}, + [2452] = {.lex_state = 5}, [2453] = {.lex_state = 7}, - [2454] = {.lex_state = 5}, - [2455] = {.lex_state = 5}, - [2456] = {.lex_state = 7}, - [2457] = {.lex_state = 7}, - [2458] = {.lex_state = 5}, + [2454] = {.lex_state = 7}, + [2455] = {.lex_state = 11}, + [2456] = {.lex_state = 5}, + [2457] = {.lex_state = 5}, + [2458] = {.lex_state = 11}, [2459] = {.lex_state = 5}, - [2460] = {.lex_state = 5}, - [2461] = {.lex_state = 8}, + [2460] = {.lex_state = 6}, + [2461] = {.lex_state = 11}, [2462] = {.lex_state = 5}, [2463] = {.lex_state = 11}, - [2464] = {.lex_state = 5}, + [2464] = {.lex_state = 11}, [2465] = {.lex_state = 5}, - [2466] = {.lex_state = 5}, - [2467] = {.lex_state = 5}, + [2466] = {.lex_state = 11}, + [2467] = {.lex_state = 11}, [2468] = {.lex_state = 5}, - [2469] = {.lex_state = 5}, + [2469] = {.lex_state = 6}, [2470] = {.lex_state = 5}, - [2471] = {.lex_state = 5}, - [2472] = {.lex_state = 11}, + [2471] = {.lex_state = 7}, + [2472] = {.lex_state = 7}, [2473] = {.lex_state = 7}, - [2474] = {.lex_state = 7}, + [2474] = {.lex_state = 5}, [2475] = {.lex_state = 8}, [2476] = {.lex_state = 5}, - [2477] = {.lex_state = 7}, - [2478] = {.lex_state = 5}, + [2477] = {.lex_state = 5}, + [2478] = {.lex_state = 7}, [2479] = {.lex_state = 5}, - [2480] = {.lex_state = 5}, - [2481] = {.lex_state = 5}, - [2482] = {.lex_state = 7}, - [2483] = {.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 = 7}, - [2486] = {.lex_state = 5}, - [2487] = {.lex_state = 11}, - [2488] = {.lex_state = 8}, + [2485] = {.lex_state = 6}, + [2486] = {.lex_state = 6}, + [2487] = {.lex_state = 5}, + [2488] = {.lex_state = 11}, [2489] = {.lex_state = 7}, [2490] = {.lex_state = 8}, - [2491] = {.lex_state = 7}, - [2492] = {.lex_state = 7}, + [2491] = {.lex_state = 5}, + [2492] = {.lex_state = 5}, [2493] = {.lex_state = 5}, [2494] = {.lex_state = 5}, - [2495] = {.lex_state = 5}, - [2496] = {.lex_state = 5}, + [2495] = {.lex_state = 6}, + [2496] = {.lex_state = 6}, [2497] = {.lex_state = 7}, - [2498] = {.lex_state = 7}, + [2498] = {.lex_state = 11}, [2499] = {.lex_state = 5}, - [2500] = {.lex_state = 5}, + [2500] = {.lex_state = 11}, [2501] = {.lex_state = 5}, - [2502] = {.lex_state = 8}, - [2503] = {.lex_state = 5}, - [2504] = {.lex_state = 11}, + [2502] = {.lex_state = 7}, + [2503] = {.lex_state = 7}, + [2504] = {.lex_state = 6}, [2505] = {.lex_state = 5}, - [2506] = {.lex_state = 5}, - [2507] = {.lex_state = 5}, - [2508] = {.lex_state = 5}, + [2506] = {.lex_state = 11}, + [2507] = {.lex_state = 7}, + [2508] = {.lex_state = 6}, [2509] = {.lex_state = 7}, - [2510] = {.lex_state = 7}, - [2511] = {.lex_state = 7}, - [2512] = {.lex_state = 7}, - [2513] = {.lex_state = 5}, - [2514] = {.lex_state = 5}, - [2515] = {.lex_state = 7}, + [2510] = {.lex_state = 5}, + [2511] = {.lex_state = 6}, + [2512] = {.lex_state = 6}, + [2513] = {.lex_state = 11}, + [2514] = {.lex_state = 6}, + [2515] = {.lex_state = 5}, [2516] = {.lex_state = 5}, - [2517] = {.lex_state = 5}, + [2517] = {.lex_state = 11}, [2518] = {.lex_state = 5}, - [2519] = {.lex_state = 5}, - [2520] = {.lex_state = 5}, + [2519] = {.lex_state = 7}, + [2520] = {.lex_state = 7}, [2521] = {.lex_state = 11}, [2522] = {.lex_state = 5}, - [2523] = {.lex_state = 11}, - [2524] = {.lex_state = 5}, - [2525] = {.lex_state = 5}, + [2523] = {.lex_state = 8}, + [2524] = {.lex_state = 7}, + [2525] = {.lex_state = 7}, [2526] = {.lex_state = 5}, [2527] = {.lex_state = 5}, - [2528] = {.lex_state = 8}, + [2528] = {.lex_state = 5}, [2529] = {.lex_state = 5}, - [2530] = {.lex_state = 7}, + [2530] = {.lex_state = 5}, [2531] = {.lex_state = 5}, [2532] = {.lex_state = 5}, - [2533] = {.lex_state = 11}, - [2534] = {.lex_state = 11}, - [2535] = {.lex_state = 11}, - [2536] = {.lex_state = 11}, - [2537] = {.lex_state = 7}, - [2538] = {.lex_state = 5}, - [2539] = {.lex_state = 5}, + [2533] = {.lex_state = 5}, + [2534] = {.lex_state = 5}, + [2535] = {.lex_state = 5}, + [2536] = {.lex_state = 7}, + [2537] = {.lex_state = 5}, + [2538] = {.lex_state = 7}, + [2539] = {.lex_state = 7}, [2540] = {.lex_state = 5}, - [2541] = {.lex_state = 7}, + [2541] = {.lex_state = 5}, [2542] = {.lex_state = 7}, - [2543] = {.lex_state = 5}, - [2544] = {.lex_state = 11}, - [2545] = {.lex_state = 11}, - [2546] = {.lex_state = 8}, - [2547] = {.lex_state = 8}, + [2543] = {.lex_state = 7}, + [2544] = {.lex_state = 5}, + [2545] = {.lex_state = 7}, + [2546] = {.lex_state = 5}, + [2547] = {.lex_state = 7}, [2548] = {.lex_state = 5}, [2549] = {.lex_state = 5}, - [2550] = {.lex_state = 5}, - [2551] = {.lex_state = 8}, - [2552] = {.lex_state = 7}, - [2553] = {.lex_state = 11}, + [2550] = {.lex_state = 8}, + [2551] = {.lex_state = 5}, + [2552] = {.lex_state = 5}, + [2553] = {.lex_state = 7}, [2554] = {.lex_state = 11}, - [2555] = {.lex_state = 11}, - [2556] = {.lex_state = 11}, - [2557] = {.lex_state = 7}, + [2555] = {.lex_state = 5}, + [2556] = {.lex_state = 5}, + [2557] = {.lex_state = 5}, [2558] = {.lex_state = 5}, - [2559] = {.lex_state = 11}, - [2560] = {.lex_state = 11}, - [2561] = {.lex_state = 11}, - [2562] = {.lex_state = 11}, - [2563] = {.lex_state = 7}, - [2564] = {.lex_state = 11}, - [2565] = {.lex_state = 7}, - [2566] = {.lex_state = 11}, - [2567] = {.lex_state = 11}, - [2568] = {.lex_state = 11}, - [2569] = {.lex_state = 11}, - [2570] = {.lex_state = 11}, - [2571] = {.lex_state = 11}, - [2572] = {.lex_state = 11}, - [2573] = {.lex_state = 11}, + [2559] = {.lex_state = 5}, + [2560] = {.lex_state = 5}, + [2561] = {.lex_state = 5}, + [2562] = {.lex_state = 5}, + [2563] = {.lex_state = 5}, + [2564] = {.lex_state = 5}, + [2565] = {.lex_state = 8}, + [2566] = {.lex_state = 5}, + [2567] = {.lex_state = 5}, + [2568] = {.lex_state = 7}, + [2569] = {.lex_state = 8}, + [2570] = {.lex_state = 5}, + [2571] = {.lex_state = 5}, + [2572] = {.lex_state = 7}, + [2573] = {.lex_state = 7}, [2574] = {.lex_state = 7}, - [2575] = {.lex_state = 11}, - [2576] = {.lex_state = 11}, + [2575] = {.lex_state = 7}, + [2576] = {.lex_state = 7}, [2577] = {.lex_state = 5}, - [2578] = {.lex_state = 80}, - [2579] = {.lex_state = 11}, + [2578] = {.lex_state = 5}, + [2579] = {.lex_state = 5}, [2580] = {.lex_state = 7}, [2581] = {.lex_state = 5}, - [2582] = {.lex_state = 5}, - [2583] = {.lex_state = 7}, + [2582] = {.lex_state = 7}, + [2583] = {.lex_state = 11}, [2584] = {.lex_state = 7}, - [2585] = {.lex_state = 11}, + [2585] = {.lex_state = 7}, [2586] = {.lex_state = 7}, - [2587] = {.lex_state = 11}, - [2588] = {.lex_state = 11}, - [2589] = {.lex_state = 11}, - [2590] = {.lex_state = 11}, - [2591] = {.lex_state = 11}, - [2592] = {.lex_state = 11}, + [2587] = {.lex_state = 5}, + [2588] = {.lex_state = 5}, + [2589] = {.lex_state = 5}, + [2590] = {.lex_state = 5}, + [2591] = {.lex_state = 5}, + [2592] = {.lex_state = 5}, [2593] = {.lex_state = 11}, [2594] = {.lex_state = 5}, - [2595] = {.lex_state = 7}, + [2595] = {.lex_state = 5}, [2596] = {.lex_state = 11}, - [2597] = {.lex_state = 11}, - [2598] = {.lex_state = 11}, - [2599] = {.lex_state = 80}, - [2600] = {.lex_state = 11}, - [2601] = {.lex_state = 7}, + [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 = 7}, + [2603] = {.lex_state = 5}, [2604] = {.lex_state = 7}, [2605] = {.lex_state = 11}, [2606] = {.lex_state = 11}, [2607] = {.lex_state = 11}, - [2608] = {.lex_state = 11}, + [2608] = {.lex_state = 5}, [2609] = {.lex_state = 5}, - [2610] = {.lex_state = 11}, + [2610] = {.lex_state = 7}, [2611] = {.lex_state = 5}, - [2612] = {.lex_state = 11}, - [2613] = {.lex_state = 11}, - [2614] = {.lex_state = 11}, - [2615] = {.lex_state = 11}, + [2612] = {.lex_state = 5}, + [2613] = {.lex_state = 7}, + [2614] = {.lex_state = 5}, + [2615] = {.lex_state = 7}, [2616] = {.lex_state = 11}, - [2617] = {.lex_state = 11}, + [2617] = {.lex_state = 7}, [2618] = {.lex_state = 11}, [2619] = {.lex_state = 11}, - [2620] = {.lex_state = 7}, - [2621] = {.lex_state = 11}, - [2622] = {.lex_state = 11}, - [2623] = {.lex_state = 15}, - [2624] = {.lex_state = 11}, - [2625] = {.lex_state = 7}, - [2626] = {.lex_state = 11}, - [2627] = {.lex_state = 11}, + [2620] = {.lex_state = 11}, + [2621] = {.lex_state = 7}, + [2622] = {.lex_state = 7}, + [2623] = {.lex_state = 7}, + [2624] = {.lex_state = 7}, + [2625] = {.lex_state = 5}, + [2626] = {.lex_state = 7}, + [2627] = {.lex_state = 7}, [2628] = {.lex_state = 7}, - [2629] = {.lex_state = 5}, - [2630] = {.lex_state = 11}, - [2631] = {.lex_state = 5}, - [2632] = {.lex_state = 11}, - [2633] = {.lex_state = 11}, - [2634] = {.lex_state = 11}, + [2629] = {.lex_state = 7}, + [2630] = {.lex_state = 7}, + [2631] = {.lex_state = 7}, + [2632] = {.lex_state = 7}, + [2633] = {.lex_state = 7}, + [2634] = {.lex_state = 7}, [2635] = {.lex_state = 11}, [2636] = {.lex_state = 11}, [2637] = {.lex_state = 11}, [2638] = {.lex_state = 11}, - [2639] = {.lex_state = 5}, - [2640] = {.lex_state = 7}, + [2639] = {.lex_state = 7}, + [2640] = {.lex_state = 11}, [2641] = {.lex_state = 11}, - [2642] = {.lex_state = 11}, - [2643] = {.lex_state = 11}, - [2644] = {.lex_state = 5}, - [2645] = {.lex_state = 11}, - [2646] = {.lex_state = 7}, + [2642] = {.lex_state = 7}, + [2643] = {.lex_state = 7}, + [2644] = {.lex_state = 7}, + [2645] = {.lex_state = 7}, + [2646] = {.lex_state = 11}, [2647] = {.lex_state = 7}, - [2648] = {.lex_state = 7}, + [2648] = {.lex_state = 11}, [2649] = {.lex_state = 11}, [2650] = {.lex_state = 11}, [2651] = {.lex_state = 11}, [2652] = {.lex_state = 7}, - [2653] = {.lex_state = 11}, - [2654] = {.lex_state = 7}, - [2655] = {.lex_state = 11}, - [2656] = {.lex_state = 5}, - [2657] = {.lex_state = 7}, - [2658] = {.lex_state = 11}, + [2653] = {.lex_state = 15}, + [2654] = {.lex_state = 5}, + [2655] = {.lex_state = 5}, + [2656] = {.lex_state = 11}, + [2657] = {.lex_state = 5}, + [2658] = {.lex_state = 7}, [2659] = {.lex_state = 7}, - [2660] = {.lex_state = 5}, + [2660] = {.lex_state = 7}, [2661] = {.lex_state = 11}, [2662] = {.lex_state = 11}, [2663] = {.lex_state = 11}, - [2664] = {.lex_state = 7}, + [2664] = {.lex_state = 5}, [2665] = {.lex_state = 11}, - [2666] = {.lex_state = 7}, - [2667] = {.lex_state = 5}, - [2668] = {.lex_state = 7}, - [2669] = {.lex_state = 7}, - [2670] = {.lex_state = 7}, - [2671] = {.lex_state = 7}, - [2672] = {.lex_state = 11}, + [2666] = {.lex_state = 11}, + [2667] = {.lex_state = 11}, + [2668] = {.lex_state = 5}, + [2669] = {.lex_state = 11}, + [2670] = {.lex_state = 5}, + [2671] = {.lex_state = 11}, + [2672] = {.lex_state = 7}, [2673] = {.lex_state = 11}, [2674] = {.lex_state = 11}, [2675] = {.lex_state = 11}, - [2676] = {.lex_state = 7}, + [2676] = {.lex_state = 15}, [2677] = {.lex_state = 11}, - [2678] = {.lex_state = 7}, - [2679] = {.lex_state = 5}, - [2680] = {.lex_state = 5}, + [2678] = {.lex_state = 11}, + [2679] = {.lex_state = 7}, + [2680] = {.lex_state = 11}, [2681] = {.lex_state = 11}, [2682] = {.lex_state = 11}, - [2683] = {.lex_state = 11}, + [2683] = {.lex_state = 5}, [2684] = {.lex_state = 7}, [2685] = {.lex_state = 7}, - [2686] = {.lex_state = 7}, - [2687] = {.lex_state = 7}, - [2688] = {.lex_state = 7}, - [2689] = {.lex_state = 7}, + [2686] = {.lex_state = 11}, + [2687] = {.lex_state = 11}, + [2688] = {.lex_state = 11}, + [2689] = {.lex_state = 11}, [2690] = {.lex_state = 7}, [2691] = {.lex_state = 7}, - [2692] = {.lex_state = 7}, - [2693] = {.lex_state = 7}, - [2694] = {.lex_state = 5}, + [2692] = {.lex_state = 5}, + [2693] = {.lex_state = 11}, + [2694] = {.lex_state = 11}, [2695] = {.lex_state = 11}, [2696] = {.lex_state = 11}, [2697] = {.lex_state = 11}, - [2698] = {.lex_state = 11}, - [2699] = {.lex_state = 11}, - [2700] = {.lex_state = 7}, - [2701] = {.lex_state = 11}, - [2702] = {.lex_state = 7}, + [2698] = {.lex_state = 7}, + [2699] = {.lex_state = 7}, + [2700] = {.lex_state = 5}, + [2701] = {.lex_state = 5}, + [2702] = {.lex_state = 11}, [2703] = {.lex_state = 7}, - [2704] = {.lex_state = 7}, + [2704] = {.lex_state = 11}, [2705] = {.lex_state = 7}, [2706] = {.lex_state = 7}, [2707] = {.lex_state = 7}, [2708] = {.lex_state = 7}, - [2709] = {.lex_state = 7}, - [2710] = {.lex_state = 11}, - [2711] = {.lex_state = 7}, - [2712] = {.lex_state = 7}, - [2713] = {.lex_state = 11}, - [2714] = {.lex_state = 7}, + [2709] = {.lex_state = 11}, + [2710] = {.lex_state = 5}, + [2711] = {.lex_state = 11}, + [2712] = {.lex_state = 11}, + [2713] = {.lex_state = 7}, + [2714] = {.lex_state = 11}, [2715] = {.lex_state = 7}, - [2716] = {.lex_state = 7}, - [2717] = {.lex_state = 80}, - [2718] = {.lex_state = 80}, - [2719] = {.lex_state = 80}, - [2720] = {.lex_state = 15}, - [2721] = {.lex_state = 15}, - [2722] = {.lex_state = 80}, - [2723] = {.lex_state = 80}, - [2724] = {.lex_state = 80}, - [2725] = {.lex_state = 5}, - [2726] = {.lex_state = 7}, - [2727] = {.lex_state = 80}, - [2728] = {.lex_state = 15}, - [2729] = {.lex_state = 80}, - [2730] = {.lex_state = 12}, - [2731] = {.lex_state = 12}, - [2732] = {.lex_state = 12}, - [2733] = {.lex_state = 12}, - [2734] = {.lex_state = 12}, - [2735] = {.lex_state = 12}, - [2736] = {.lex_state = 7}, - [2737] = {.lex_state = 12}, - [2738] = {.lex_state = 12}, - [2739] = {.lex_state = 12}, - [2740] = {.lex_state = 12}, - [2741] = {.lex_state = 12}, - [2742] = {.lex_state = 12}, - [2743] = {.lex_state = 12}, - [2744] = {.lex_state = 12}, - [2745] = {.lex_state = 12}, - [2746] = {.lex_state = 12}, - [2747] = {.lex_state = 12}, - [2748] = {.lex_state = 12}, - [2749] = {.lex_state = 12}, - [2750] = {.lex_state = 12}, - [2751] = {.lex_state = 12}, - [2752] = {.lex_state = 12}, - [2753] = {.lex_state = 12}, - [2754] = {.lex_state = 12}, - [2755] = {.lex_state = 12}, - [2756] = {.lex_state = 12}, - [2757] = {.lex_state = 12}, - [2758] = {.lex_state = 12}, - [2759] = {.lex_state = 12}, - [2760] = {.lex_state = 12}, - [2761] = {.lex_state = 12}, - [2762] = {.lex_state = 12}, - [2763] = {.lex_state = 12}, - [2764] = {.lex_state = 12}, - [2765] = {.lex_state = 15}, - [2766] = {.lex_state = 12}, + [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}, + [2724] = {.lex_state = 11}, + [2725] = {.lex_state = 11}, + [2726] = {.lex_state = 11}, + [2727] = {.lex_state = 11}, + [2728] = {.lex_state = 11}, + [2729] = {.lex_state = 7}, + [2730] = {.lex_state = 11}, + [2731] = {.lex_state = 11}, + [2732] = {.lex_state = 11}, + [2733] = {.lex_state = 11}, + [2734] = {.lex_state = 11}, + [2735] = {.lex_state = 7}, + [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}, + [2745] = {.lex_state = 7}, + [2746] = {.lex_state = 11}, + [2747] = {.lex_state = 11}, + [2748] = {.lex_state = 11}, + [2749] = {.lex_state = 15}, + [2750] = {.lex_state = 11}, + [2751] = {.lex_state = 7}, + [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}, + [2762] = {.lex_state = 11}, + [2763] = {.lex_state = 11}, + [2764] = {.lex_state = 11}, + [2765] = {.lex_state = 81}, + [2766] = {.lex_state = 11}, [2767] = {.lex_state = 7}, - [2768] = {.lex_state = 12}, - [2769] = {.lex_state = 12}, - [2770] = {.lex_state = 12}, - [2771] = {.lex_state = 12}, - [2772] = {.lex_state = 12}, - [2773] = {.lex_state = 12}, - [2774] = {.lex_state = 12}, - [2775] = {.lex_state = 12}, - [2776] = {.lex_state = 12}, - [2777] = {.lex_state = 12}, - [2778] = {.lex_state = 12}, - [2779] = {.lex_state = 12}, - [2780] = {.lex_state = 12}, - [2781] = {.lex_state = 12}, - [2782] = {.lex_state = 12}, - [2783] = {.lex_state = 12}, - [2784] = {.lex_state = 12}, - [2785] = {.lex_state = 12}, - [2786] = {.lex_state = 12}, - [2787] = {.lex_state = 12}, - [2788] = {.lex_state = 12}, - [2789] = {.lex_state = 12}, - [2790] = {.lex_state = 12}, - [2791] = {.lex_state = 12}, - [2792] = {.lex_state = 12}, - [2793] = {.lex_state = 12}, - [2794] = {.lex_state = 12}, - [2795] = {.lex_state = 7}, - [2796] = {.lex_state = 12}, - [2797] = {.lex_state = 12}, - [2798] = {.lex_state = 12}, - [2799] = {.lex_state = 12}, - [2800] = {.lex_state = 12}, - [2801] = {.lex_state = 12}, - [2802] = {.lex_state = 12}, - [2803] = {.lex_state = 12}, - [2804] = {.lex_state = 12}, - [2805] = {.lex_state = 12}, - [2806] = {.lex_state = 12}, - [2807] = {.lex_state = 12}, - [2808] = {.lex_state = 12}, - [2809] = {.lex_state = 12}, + [2768] = {.lex_state = 11}, + [2769] = {.lex_state = 11}, + [2770] = {.lex_state = 11}, + [2771] = {.lex_state = 11}, + [2772] = {.lex_state = 11}, + [2773] = {.lex_state = 11}, + [2774] = {.lex_state = 11}, + [2775] = {.lex_state = 11}, + [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}, + [2787] = {.lex_state = 15}, + [2788] = {.lex_state = 15}, + [2789] = {.lex_state = 15}, + [2790] = {.lex_state = 15}, + [2791] = {.lex_state = 15}, + [2792] = {.lex_state = 15}, + [2793] = {.lex_state = 15}, + [2794] = {.lex_state = 15}, + [2795] = {.lex_state = 15}, + [2796] = {.lex_state = 15}, + [2797] = {.lex_state = 15}, + [2798] = {.lex_state = 7}, + [2799] = {.lex_state = 15}, + [2800] = {.lex_state = 15}, + [2801] = {.lex_state = 15}, + [2802] = {.lex_state = 7}, + [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}, [2810] = {.lex_state = 12}, [2811] = {.lex_state = 12}, [2812] = {.lex_state = 12}, @@ -15585,648 +15749,648 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2814] = {.lex_state = 12}, [2815] = {.lex_state = 12}, [2816] = {.lex_state = 12}, - [2817] = {.lex_state = 80}, - [2818] = {.lex_state = 80}, - [2819] = {.lex_state = 80}, - [2820] = {.lex_state = 80}, - [2821] = {.lex_state = 80}, - [2822] = {.lex_state = 80}, - [2823] = {.lex_state = 80}, - [2824] = {.lex_state = 80}, - [2825] = {.lex_state = 80}, - [2826] = {.lex_state = 80}, - [2827] = {.lex_state = 80}, - [2828] = {.lex_state = 80}, - [2829] = {.lex_state = 80}, - [2830] = {.lex_state = 80}, - [2831] = {.lex_state = 15}, - [2832] = {.lex_state = 80}, - [2833] = {.lex_state = 80}, - [2834] = {.lex_state = 80}, - [2835] = {.lex_state = 80}, - [2836] = {.lex_state = 80}, - [2837] = {.lex_state = 80}, - [2838] = {.lex_state = 80}, - [2839] = {.lex_state = 80}, - [2840] = {.lex_state = 80}, - [2841] = {.lex_state = 80}, - [2842] = {.lex_state = 80}, - [2843] = {.lex_state = 80}, - [2844] = {.lex_state = 80}, - [2845] = {.lex_state = 80}, - [2846] = {.lex_state = 15}, - [2847] = {.lex_state = 80}, - [2848] = {.lex_state = 80}, - [2849] = {.lex_state = 80}, - [2850] = {.lex_state = 80}, - [2851] = {.lex_state = 80}, - [2852] = {.lex_state = 80}, - [2853] = {.lex_state = 80}, - [2854] = {.lex_state = 80}, - [2855] = {.lex_state = 80}, - [2856] = {.lex_state = 80}, - [2857] = {.lex_state = 80}, - [2858] = {.lex_state = 80}, - [2859] = {.lex_state = 80}, - [2860] = {.lex_state = 15}, - [2861] = {.lex_state = 80}, - [2862] = {.lex_state = 80}, - [2863] = {.lex_state = 80}, - [2864] = {.lex_state = 80}, - [2865] = {.lex_state = 80}, - [2866] = {.lex_state = 80}, - [2867] = {.lex_state = 80}, - [2868] = {.lex_state = 80}, - [2869] = {.lex_state = 80}, - [2870] = {.lex_state = 80}, - [2871] = {.lex_state = 80}, - [2872] = {.lex_state = 80}, - [2873] = {.lex_state = 15}, - [2874] = {.lex_state = 80}, - [2875] = {.lex_state = 80}, - [2876] = {.lex_state = 80}, - [2877] = {.lex_state = 80}, - [2878] = {.lex_state = 80}, - [2879] = {.lex_state = 80}, - [2880] = {.lex_state = 80}, - [2881] = {.lex_state = 80}, - [2882] = {.lex_state = 80}, - [2883] = {.lex_state = 80}, - [2884] = {.lex_state = 80}, - [2885] = {.lex_state = 15}, - [2886] = {.lex_state = 80}, - [2887] = {.lex_state = 15}, - [2888] = {.lex_state = 15}, - [2889] = {.lex_state = 15}, - [2890] = {.lex_state = 80}, - [2891] = {.lex_state = 80}, - [2892] = {.lex_state = 80}, - [2893] = {.lex_state = 80}, - [2894] = {.lex_state = 80}, - [2895] = {.lex_state = 15}, - [2896] = {.lex_state = 80}, - [2897] = {.lex_state = 80}, - [2898] = {.lex_state = 15}, - [2899] = {.lex_state = 80}, - [2900] = {.lex_state = 80}, - [2901] = {.lex_state = 80}, - [2902] = {.lex_state = 80}, - [2903] = {.lex_state = 80}, - [2904] = {.lex_state = 80}, - [2905] = {.lex_state = 80}, - [2906] = {.lex_state = 80}, - [2907] = {.lex_state = 15}, - [2908] = {.lex_state = 15}, - [2909] = {.lex_state = 80}, - [2910] = {.lex_state = 80}, - [2911] = {.lex_state = 80}, - [2912] = {.lex_state = 15}, - [2913] = {.lex_state = 80}, - [2914] = {.lex_state = 80}, - [2915] = {.lex_state = 80}, - [2916] = {.lex_state = 15}, - [2917] = {.lex_state = 80}, - [2918] = {.lex_state = 80}, - [2919] = {.lex_state = 80}, - [2920] = {.lex_state = 80}, - [2921] = {.lex_state = 80}, - [2922] = {.lex_state = 15}, - [2923] = {.lex_state = 80}, - [2924] = {.lex_state = 15}, - [2925] = {.lex_state = 80}, - [2926] = {.lex_state = 15}, - [2927] = {.lex_state = 80}, - [2928] = {.lex_state = 80}, - [2929] = {.lex_state = 80}, - [2930] = {.lex_state = 80}, - [2931] = {.lex_state = 80}, - [2932] = {.lex_state = 80}, - [2933] = {.lex_state = 80}, - [2934] = {.lex_state = 80}, - [2935] = {.lex_state = 15}, - [2936] = {.lex_state = 80}, - [2937] = {.lex_state = 15}, - [2938] = {.lex_state = 15}, - [2939] = {.lex_state = 15}, - [2940] = {.lex_state = 80}, - [2941] = {.lex_state = 15}, - [2942] = {.lex_state = 80}, - [2943] = {.lex_state = 80}, - [2944] = {.lex_state = 80}, - [2945] = {.lex_state = 80}, - [2946] = {.lex_state = 80}, - [2947] = {.lex_state = 80}, - [2948] = {.lex_state = 15}, - [2949] = {.lex_state = 80}, - [2950] = {.lex_state = 80}, - [2951] = {.lex_state = 15}, - [2952] = {.lex_state = 80}, - [2953] = {.lex_state = 15}, - [2954] = {.lex_state = 80}, - [2955] = {.lex_state = 80}, - [2956] = {.lex_state = 15}, - [2957] = {.lex_state = 80}, - [2958] = {.lex_state = 15}, - [2959] = {.lex_state = 15}, - [2960] = {.lex_state = 80}, - [2961] = {.lex_state = 80}, - [2962] = {.lex_state = 80}, - [2963] = {.lex_state = 80}, - [2964] = {.lex_state = 80}, - [2965] = {.lex_state = 15}, - [2966] = {.lex_state = 80}, - [2967] = {.lex_state = 80}, - [2968] = {.lex_state = 80}, - [2969] = {.lex_state = 80}, - [2970] = {.lex_state = 80}, - [2971] = {.lex_state = 80}, - [2972] = {.lex_state = 80}, - [2973] = {.lex_state = 80}, - [2974] = {.lex_state = 80}, - [2975] = {.lex_state = 80}, - [2976] = {.lex_state = 80}, - [2977] = {.lex_state = 80}, - [2978] = {.lex_state = 80}, - [2979] = {.lex_state = 80}, - [2980] = {.lex_state = 80}, - [2981] = {.lex_state = 80}, - [2982] = {.lex_state = 80}, - [2983] = {.lex_state = 80}, - [2984] = {.lex_state = 80}, - [2985] = {.lex_state = 80}, - [2986] = {.lex_state = 80}, - [2987] = {.lex_state = 80}, - [2988] = {.lex_state = 80}, - [2989] = {.lex_state = 80}, - [2990] = {.lex_state = 80}, - [2991] = {.lex_state = 80}, - [2992] = {.lex_state = 12}, - [2993] = {.lex_state = 80}, - [2994] = {.lex_state = 80}, - [2995] = {.lex_state = 80}, - [2996] = {.lex_state = 80}, - [2997] = {.lex_state = 12}, - [2998] = {.lex_state = 80}, - [2999] = {.lex_state = 80}, - [3000] = {.lex_state = 80}, - [3001] = {.lex_state = 80}, - [3002] = {.lex_state = 80}, - [3003] = {.lex_state = 80}, - [3004] = {.lex_state = 80}, - [3005] = {.lex_state = 80}, - [3006] = {.lex_state = 80}, - [3007] = {.lex_state = 80}, - [3008] = {.lex_state = 80}, - [3009] = {.lex_state = 80}, - [3010] = {.lex_state = 80}, - [3011] = {.lex_state = 12}, - [3012] = {.lex_state = 80}, - [3013] = {.lex_state = 80}, - [3014] = {.lex_state = 80}, - [3015] = {.lex_state = 80}, - [3016] = {.lex_state = 12}, - [3017] = {.lex_state = 80}, - [3018] = {.lex_state = 80}, - [3019] = {.lex_state = 80}, - [3020] = {.lex_state = 80}, - [3021] = {.lex_state = 12}, - [3022] = {.lex_state = 80}, - [3023] = {.lex_state = 80}, - [3024] = {.lex_state = 80}, - [3025] = {.lex_state = 80}, - [3026] = {.lex_state = 80}, - [3027] = {.lex_state = 80}, - [3028] = {.lex_state = 12}, - [3029] = {.lex_state = 80}, - [3030] = {.lex_state = 80}, - [3031] = {.lex_state = 80}, - [3032] = {.lex_state = 80}, - [3033] = {.lex_state = 80}, - [3034] = {.lex_state = 80}, - [3035] = {.lex_state = 80}, - [3036] = {.lex_state = 80}, - [3037] = {.lex_state = 80}, - [3038] = {.lex_state = 80}, - [3039] = {.lex_state = 80}, - [3040] = {.lex_state = 80}, - [3041] = {.lex_state = 80}, - [3042] = {.lex_state = 80}, - [3043] = {.lex_state = 80}, - [3044] = {.lex_state = 80}, - [3045] = {.lex_state = 80}, - [3046] = {.lex_state = 80}, - [3047] = {.lex_state = 80}, - [3048] = {.lex_state = 80}, - [3049] = {.lex_state = 80}, - [3050] = {.lex_state = 80}, - [3051] = {.lex_state = 80}, - [3052] = {.lex_state = 80}, - [3053] = {.lex_state = 80}, - [3054] = {.lex_state = 80}, - [3055] = {.lex_state = 80}, - [3056] = {.lex_state = 80}, - [3057] = {.lex_state = 80}, - [3058] = {.lex_state = 80}, - [3059] = {.lex_state = 80}, - [3060] = {.lex_state = 80}, - [3061] = {.lex_state = 80}, - [3062] = {.lex_state = 80}, - [3063] = {.lex_state = 80}, - [3064] = {.lex_state = 80}, - [3065] = {.lex_state = 80}, - [3066] = {.lex_state = 80}, - [3067] = {.lex_state = 80}, - [3068] = {.lex_state = 80}, - [3069] = {.lex_state = 80}, - [3070] = {.lex_state = 80}, - [3071] = {.lex_state = 80}, - [3072] = {.lex_state = 80}, - [3073] = {.lex_state = 80}, - [3074] = {.lex_state = 80}, - [3075] = {.lex_state = 80}, - [3076] = {.lex_state = 80}, - [3077] = {.lex_state = 80}, - [3078] = {.lex_state = 80}, - [3079] = {.lex_state = 80}, - [3080] = {.lex_state = 80}, - [3081] = {.lex_state = 80}, - [3082] = {.lex_state = 80}, - [3083] = {.lex_state = 80}, - [3084] = {.lex_state = 80}, - [3085] = {.lex_state = 80}, - [3086] = {.lex_state = 80}, - [3087] = {.lex_state = 80}, - [3088] = {.lex_state = 80}, - [3089] = {.lex_state = 80}, - [3090] = {.lex_state = 80}, - [3091] = {.lex_state = 80}, - [3092] = {.lex_state = 80}, - [3093] = {.lex_state = 80}, - [3094] = {.lex_state = 80}, - [3095] = {.lex_state = 80}, - [3096] = {.lex_state = 80}, - [3097] = {.lex_state = 80}, - [3098] = {.lex_state = 80}, - [3099] = {.lex_state = 80}, - [3100] = {.lex_state = 80}, - [3101] = {.lex_state = 80}, - [3102] = {.lex_state = 80}, - [3103] = {.lex_state = 80}, - [3104] = {.lex_state = 80}, - [3105] = {.lex_state = 80}, - [3106] = {.lex_state = 80}, - [3107] = {.lex_state = 80}, - [3108] = {.lex_state = 80}, - [3109] = {.lex_state = 80}, - [3110] = {.lex_state = 80}, - [3111] = {.lex_state = 80}, - [3112] = {.lex_state = 80}, - [3113] = {.lex_state = 80}, - [3114] = {.lex_state = 80}, - [3115] = {.lex_state = 80}, - [3116] = {.lex_state = 80}, - [3117] = {.lex_state = 80}, - [3118] = {.lex_state = 80}, - [3119] = {.lex_state = 80}, - [3120] = {.lex_state = 80}, - [3121] = {.lex_state = 80}, - [3122] = {.lex_state = 80}, - [3123] = {.lex_state = 80}, - [3124] = {.lex_state = 80}, - [3125] = {.lex_state = 80}, - [3126] = {.lex_state = 80}, - [3127] = {.lex_state = 80}, - [3128] = {.lex_state = 80}, - [3129] = {.lex_state = 80}, - [3130] = {.lex_state = 80}, - [3131] = {.lex_state = 80}, - [3132] = {.lex_state = 80}, - [3133] = {.lex_state = 80}, - [3134] = {.lex_state = 80}, - [3135] = {.lex_state = 80}, - [3136] = {.lex_state = 80}, - [3137] = {.lex_state = 80}, - [3138] = {.lex_state = 80}, - [3139] = {.lex_state = 80}, - [3140] = {.lex_state = 80}, - [3141] = {.lex_state = 80}, - [3142] = {.lex_state = 80}, - [3143] = {.lex_state = 80}, - [3144] = {.lex_state = 80}, - [3145] = {.lex_state = 80}, - [3146] = {.lex_state = 80}, - [3147] = {.lex_state = 80}, - [3148] = {.lex_state = 80}, - [3149] = {.lex_state = 80}, - [3150] = {.lex_state = 80}, - [3151] = {.lex_state = 80}, - [3152] = {.lex_state = 80}, - [3153] = {.lex_state = 80}, - [3154] = {.lex_state = 80}, - [3155] = {.lex_state = 80}, - [3156] = {.lex_state = 80}, - [3157] = {.lex_state = 80}, - [3158] = {.lex_state = 80}, - [3159] = {.lex_state = 80}, - [3160] = {.lex_state = 80}, - [3161] = {.lex_state = 80}, - [3162] = {.lex_state = 80}, - [3163] = {.lex_state = 80}, - [3164] = {.lex_state = 80}, - [3165] = {.lex_state = 80}, - [3166] = {.lex_state = 80}, - [3167] = {.lex_state = 80}, - [3168] = {.lex_state = 80}, - [3169] = {.lex_state = 80}, - [3170] = {.lex_state = 80}, - [3171] = {.lex_state = 80}, - [3172] = {.lex_state = 80}, - [3173] = {.lex_state = 80}, - [3174] = {.lex_state = 80}, - [3175] = {.lex_state = 80}, - [3176] = {.lex_state = 80}, - [3177] = {.lex_state = 80}, - [3178] = {.lex_state = 80}, - [3179] = {.lex_state = 80}, - [3180] = {.lex_state = 80}, - [3181] = {.lex_state = 80}, - [3182] = {.lex_state = 80}, - [3183] = {.lex_state = 80}, - [3184] = {.lex_state = 80}, - [3185] = {.lex_state = 80}, - [3186] = {.lex_state = 80}, - [3187] = {.lex_state = 80}, - [3188] = {.lex_state = 80}, - [3189] = {.lex_state = 80}, - [3190] = {.lex_state = 80}, - [3191] = {.lex_state = 80}, - [3192] = {.lex_state = 80}, - [3193] = {.lex_state = 80}, - [3194] = {.lex_state = 80}, - [3195] = {.lex_state = 80}, - [3196] = {.lex_state = 80}, - [3197] = {.lex_state = 80}, - [3198] = {.lex_state = 80}, - [3199] = {.lex_state = 80}, - [3200] = {.lex_state = 80}, - [3201] = {.lex_state = 80}, - [3202] = {.lex_state = 80}, - [3203] = {.lex_state = 80}, - [3204] = {.lex_state = 80}, - [3205] = {.lex_state = 80}, - [3206] = {.lex_state = 80}, - [3207] = {.lex_state = 80}, - [3208] = {.lex_state = 80}, - [3209] = {.lex_state = 80}, - [3210] = {.lex_state = 80}, - [3211] = {.lex_state = 80}, - [3212] = {.lex_state = 80}, - [3213] = {.lex_state = 80}, - [3214] = {.lex_state = 80}, - [3215] = {.lex_state = 80}, - [3216] = {.lex_state = 80}, - [3217] = {.lex_state = 80}, - [3218] = {.lex_state = 80}, - [3219] = {.lex_state = 80}, - [3220] = {.lex_state = 80}, - [3221] = {.lex_state = 80}, - [3222] = {.lex_state = 80}, - [3223] = {.lex_state = 80}, - [3224] = {.lex_state = 80}, - [3225] = {.lex_state = 80}, - [3226] = {.lex_state = 80}, - [3227] = {.lex_state = 80}, - [3228] = {.lex_state = 80}, - [3229] = {.lex_state = 80}, - [3230] = {.lex_state = 80}, - [3231] = {.lex_state = 80}, - [3232] = {.lex_state = 80}, - [3233] = {.lex_state = 80}, - [3234] = {.lex_state = 80}, - [3235] = {.lex_state = 80}, - [3236] = {.lex_state = 80}, - [3237] = {.lex_state = 80}, - [3238] = {.lex_state = 80}, - [3239] = {.lex_state = 80}, - [3240] = {.lex_state = 80}, - [3241] = {.lex_state = 80}, - [3242] = {.lex_state = 80}, - [3243] = {.lex_state = 80}, - [3244] = {.lex_state = 80}, - [3245] = {.lex_state = 80}, - [3246] = {.lex_state = 80}, - [3247] = {.lex_state = 80}, - [3248] = {.lex_state = 80}, - [3249] = {.lex_state = 80}, - [3250] = {.lex_state = 80}, - [3251] = {.lex_state = 80}, - [3252] = {.lex_state = 80}, - [3253] = {.lex_state = 80}, - [3254] = {.lex_state = 80}, - [3255] = {.lex_state = 80}, - [3256] = {.lex_state = 80}, - [3257] = {.lex_state = 80}, - [3258] = {.lex_state = 80}, - [3259] = {.lex_state = 80}, - [3260] = {.lex_state = 80}, - [3261] = {.lex_state = 80}, - [3262] = {.lex_state = 80}, - [3263] = {.lex_state = 80}, - [3264] = {.lex_state = 80}, - [3265] = {.lex_state = 80}, - [3266] = {.lex_state = 80}, - [3267] = {.lex_state = 80}, - [3268] = {.lex_state = 80}, - [3269] = {.lex_state = 80}, - [3270] = {.lex_state = 80}, - [3271] = {.lex_state = 80}, - [3272] = {.lex_state = 80}, - [3273] = {.lex_state = 80}, - [3274] = {.lex_state = 80}, - [3275] = {.lex_state = 80}, - [3276] = {.lex_state = 80}, - [3277] = {.lex_state = 80}, - [3278] = {.lex_state = 80}, - [3279] = {.lex_state = 80}, - [3280] = {.lex_state = 80}, - [3281] = {.lex_state = 80}, - [3282] = {.lex_state = 80}, - [3283] = {.lex_state = 80}, - [3284] = {.lex_state = 80}, - [3285] = {.lex_state = 80}, - [3286] = {.lex_state = 80}, - [3287] = {.lex_state = 80}, - [3288] = {.lex_state = 80}, - [3289] = {.lex_state = 80}, - [3290] = {.lex_state = 80}, - [3291] = {.lex_state = 80}, - [3292] = {.lex_state = 80}, - [3293] = {.lex_state = 80}, - [3294] = {.lex_state = 80}, - [3295] = {.lex_state = 80}, - [3296] = {.lex_state = 80}, - [3297] = {.lex_state = 80}, - [3298] = {.lex_state = 80}, - [3299] = {.lex_state = 80}, - [3300] = {.lex_state = 80}, - [3301] = {.lex_state = 80}, - [3302] = {.lex_state = 80}, - [3303] = {.lex_state = 80}, - [3304] = {.lex_state = 80}, - [3305] = {.lex_state = 80}, - [3306] = {.lex_state = 80}, - [3307] = {.lex_state = 80}, - [3308] = {.lex_state = 80}, - [3309] = {.lex_state = 80}, - [3310] = {.lex_state = 80}, - [3311] = {.lex_state = 80}, - [3312] = {.lex_state = 80}, - [3313] = {.lex_state = 80}, - [3314] = {.lex_state = 80}, - [3315] = {.lex_state = 80}, - [3316] = {.lex_state = 80}, - [3317] = {.lex_state = 80}, - [3318] = {.lex_state = 80}, - [3319] = {.lex_state = 80}, - [3320] = {.lex_state = 80}, - [3321] = {.lex_state = 80}, - [3322] = {.lex_state = 80}, - [3323] = {.lex_state = 80}, - [3324] = {.lex_state = 80}, - [3325] = {.lex_state = 80}, - [3326] = {.lex_state = 80}, - [3327] = {.lex_state = 80}, - [3328] = {.lex_state = 80}, - [3329] = {.lex_state = 80}, - [3330] = {.lex_state = 80}, - [3331] = {.lex_state = 80}, - [3332] = {.lex_state = 80}, - [3333] = {.lex_state = 80}, - [3334] = {.lex_state = 80}, - [3335] = {.lex_state = 80}, - [3336] = {.lex_state = 80}, - [3337] = {.lex_state = 80}, - [3338] = {.lex_state = 80}, - [3339] = {.lex_state = 80}, - [3340] = {.lex_state = 80}, - [3341] = {.lex_state = 80}, - [3342] = {.lex_state = 80}, - [3343] = {.lex_state = 80}, - [3344] = {.lex_state = 80}, - [3345] = {.lex_state = 80}, - [3346] = {.lex_state = 80}, - [3347] = {.lex_state = 80}, - [3348] = {.lex_state = 80}, - [3349] = {.lex_state = 80}, - [3350] = {.lex_state = 80}, - [3351] = {.lex_state = 80}, - [3352] = {.lex_state = 80}, - [3353] = {.lex_state = 80}, - [3354] = {.lex_state = 80}, - [3355] = {.lex_state = 80}, - [3356] = {.lex_state = 80}, - [3357] = {.lex_state = 80}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 80}, - [3360] = {.lex_state = 80}, - [3361] = {.lex_state = 80}, - [3362] = {.lex_state = 80}, - [3363] = {.lex_state = 80}, - [3364] = {.lex_state = 80}, - [3365] = {.lex_state = 80}, - [3366] = {.lex_state = 80}, - [3367] = {.lex_state = 80}, - [3368] = {.lex_state = 80}, - [3369] = {.lex_state = 80}, - [3370] = {.lex_state = 15}, - [3371] = {.lex_state = 15}, - [3372] = {.lex_state = 15}, - [3373] = {.lex_state = 15}, - [3374] = {.lex_state = 80}, - [3375] = {.lex_state = 15}, - [3376] = {.lex_state = 15}, - [3377] = {.lex_state = 80}, - [3378] = {.lex_state = 80}, - [3379] = {.lex_state = 80}, - [3380] = {.lex_state = 15}, - [3381] = {.lex_state = 15}, - [3382] = {.lex_state = 80}, - [3383] = {.lex_state = 80}, - [3384] = {.lex_state = 18}, - [3385] = {.lex_state = 18}, - [3386] = {.lex_state = 80}, - [3387] = {.lex_state = 18}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 80}, - [3390] = {.lex_state = 80}, - [3391] = {.lex_state = 18}, - [3392] = {.lex_state = 80}, - [3393] = {.lex_state = 80}, - [3394] = {.lex_state = 80}, - [3395] = {.lex_state = 18}, - [3396] = {.lex_state = 18}, - [3397] = {.lex_state = 80}, - [3398] = {.lex_state = 80}, - [3399] = {.lex_state = 80}, - [3400] = {.lex_state = 15}, - [3401] = {.lex_state = 80}, - [3402] = {.lex_state = 80}, - [3403] = {.lex_state = 18}, - [3404] = {.lex_state = 18}, - [3405] = {.lex_state = 18}, - [3406] = {.lex_state = 80}, - [3407] = {.lex_state = 15}, - [3408] = {.lex_state = 15}, - [3409] = {.lex_state = 18}, - [3410] = {.lex_state = 80}, - [3411] = {.lex_state = 80}, - [3412] = {.lex_state = 80}, - [3413] = {.lex_state = 80}, - [3414] = {.lex_state = 80}, - [3415] = {.lex_state = 80}, - [3416] = {.lex_state = 80}, - [3417] = {.lex_state = 80}, - [3418] = {.lex_state = 80}, - [3419] = {.lex_state = 80}, - [3420] = {.lex_state = 80}, - [3421] = {.lex_state = 80}, - [3422] = {.lex_state = 80}, - [3423] = {.lex_state = 80}, - [3424] = {.lex_state = 80}, - [3425] = {.lex_state = 80}, - [3426] = {.lex_state = 80}, - [3427] = {.lex_state = 80}, - [3428] = {.lex_state = 80}, - [3429] = {.lex_state = 80}, - [3430] = {.lex_state = 80}, - [3431] = {.lex_state = 80}, - [3432] = {.lex_state = 80}, - [3433] = {.lex_state = 80}, - [3434] = {.lex_state = 80}, - [3435] = {.lex_state = 80}, - [3436] = {.lex_state = 80}, - [3437] = {.lex_state = 80}, - [3438] = {.lex_state = 80}, - [3439] = {.lex_state = 80}, - [3440] = {.lex_state = 80}, - [3441] = {.lex_state = 80}, - [3442] = {.lex_state = 80}, - [3443] = {.lex_state = 80}, - [3444] = {.lex_state = 80}, - [3445] = {.lex_state = 80}, - [3446] = {.lex_state = 80}, - [3447] = {.lex_state = 80}, - [3448] = {.lex_state = 80}, - [3449] = {.lex_state = 80}, - [3450] = {.lex_state = 15}, - [3451] = {.lex_state = 80}, - [3452] = {.lex_state = 80}, - [3453] = {.lex_state = 80}, - [3454] = {.lex_state = 80}, - [3455] = {.lex_state = 15}, + [2817] = {.lex_state = 12}, + [2818] = {.lex_state = 12}, + [2819] = {.lex_state = 12}, + [2820] = {.lex_state = 12}, + [2821] = {.lex_state = 12}, + [2822] = {.lex_state = 12}, + [2823] = {.lex_state = 12}, + [2824] = {.lex_state = 12}, + [2825] = {.lex_state = 12}, + [2826] = {.lex_state = 12}, + [2827] = {.lex_state = 12}, + [2828] = {.lex_state = 12}, + [2829] = {.lex_state = 12}, + [2830] = {.lex_state = 12}, + [2831] = {.lex_state = 7}, + [2832] = {.lex_state = 12}, + [2833] = {.lex_state = 12}, + [2834] = {.lex_state = 12}, + [2835] = {.lex_state = 12}, + [2836] = {.lex_state = 12}, + [2837] = {.lex_state = 12}, + [2838] = {.lex_state = 12}, + [2839] = {.lex_state = 12}, + [2840] = {.lex_state = 12}, + [2841] = {.lex_state = 12}, + [2842] = {.lex_state = 12}, + [2843] = {.lex_state = 7}, + [2844] = {.lex_state = 12}, + [2845] = {.lex_state = 12}, + [2846] = {.lex_state = 12}, + [2847] = {.lex_state = 12}, + [2848] = {.lex_state = 12}, + [2849] = {.lex_state = 12}, + [2850] = {.lex_state = 12}, + [2851] = {.lex_state = 12}, + [2852] = {.lex_state = 12}, + [2853] = {.lex_state = 7}, + [2854] = {.lex_state = 12}, + [2855] = {.lex_state = 12}, + [2856] = {.lex_state = 12}, + [2857] = {.lex_state = 12}, + [2858] = {.lex_state = 12}, + [2859] = {.lex_state = 12}, + [2860] = {.lex_state = 12}, + [2861] = {.lex_state = 12}, + [2862] = {.lex_state = 12}, + [2863] = {.lex_state = 12}, + [2864] = {.lex_state = 12}, + [2865] = {.lex_state = 12}, + [2866] = {.lex_state = 12}, + [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}, + [2875] = {.lex_state = 12}, + [2876] = {.lex_state = 12}, + [2877] = {.lex_state = 12}, + [2878] = {.lex_state = 12}, + [2879] = {.lex_state = 12}, + [2880] = {.lex_state = 12}, + [2881] = {.lex_state = 12}, + [2882] = {.lex_state = 12}, + [2883] = {.lex_state = 12}, + [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}, + [2891] = {.lex_state = 12}, + [2892] = {.lex_state = 12}, + [2893] = {.lex_state = 12}, + [2894] = {.lex_state = 12}, + [2895] = {.lex_state = 12}, + [2896] = {.lex_state = 81}, + [2897] = {.lex_state = 81}, + [2898] = {.lex_state = 81}, + [2899] = {.lex_state = 81}, + [2900] = {.lex_state = 81}, + [2901] = {.lex_state = 81}, + [2902] = {.lex_state = 81}, + [2903] = {.lex_state = 81}, + [2904] = {.lex_state = 81}, + [2905] = {.lex_state = 81}, + [2906] = {.lex_state = 81}, + [2907] = {.lex_state = 81}, + [2908] = {.lex_state = 81}, + [2909] = {.lex_state = 81}, + [2910] = {.lex_state = 81}, + [2911] = {.lex_state = 81}, + [2912] = {.lex_state = 81}, + [2913] = {.lex_state = 81}, + [2914] = {.lex_state = 81}, + [2915] = {.lex_state = 81}, + [2916] = {.lex_state = 81}, + [2917] = {.lex_state = 81}, + [2918] = {.lex_state = 81}, + [2919] = {.lex_state = 81}, + [2920] = {.lex_state = 81}, + [2921] = {.lex_state = 81}, + [2922] = {.lex_state = 81}, + [2923] = {.lex_state = 81}, + [2924] = {.lex_state = 81}, + [2925] = {.lex_state = 81}, + [2926] = {.lex_state = 81}, + [2927] = {.lex_state = 81}, + [2928] = {.lex_state = 81}, + [2929] = {.lex_state = 81}, + [2930] = {.lex_state = 81}, + [2931] = {.lex_state = 81}, + [2932] = {.lex_state = 81}, + [2933] = {.lex_state = 81}, + [2934] = {.lex_state = 81}, + [2935] = {.lex_state = 81}, + [2936] = {.lex_state = 81}, + [2937] = {.lex_state = 81}, + [2938] = {.lex_state = 81}, + [2939] = {.lex_state = 81}, + [2940] = {.lex_state = 81}, + [2941] = {.lex_state = 81}, + [2942] = {.lex_state = 81}, + [2943] = {.lex_state = 81}, + [2944] = {.lex_state = 81}, + [2945] = {.lex_state = 81}, + [2946] = {.lex_state = 81}, + [2947] = {.lex_state = 81}, + [2948] = {.lex_state = 81}, + [2949] = {.lex_state = 81}, + [2950] = {.lex_state = 81}, + [2951] = {.lex_state = 81}, + [2952] = {.lex_state = 81}, + [2953] = {.lex_state = 81}, + [2954] = {.lex_state = 81}, + [2955] = {.lex_state = 81}, + [2956] = {.lex_state = 81}, + [2957] = {.lex_state = 81}, + [2958] = {.lex_state = 81}, + [2959] = {.lex_state = 81}, + [2960] = {.lex_state = 81}, + [2961] = {.lex_state = 81}, + [2962] = {.lex_state = 81}, + [2963] = {.lex_state = 81}, + [2964] = {.lex_state = 81}, + [2965] = {.lex_state = 81}, + [2966] = {.lex_state = 81}, + [2967] = {.lex_state = 81}, + [2968] = {.lex_state = 81}, + [2969] = {.lex_state = 81}, + [2970] = {.lex_state = 81}, + [2971] = {.lex_state = 81}, + [2972] = {.lex_state = 81}, + [2973] = {.lex_state = 81}, + [2974] = {.lex_state = 81}, + [2975] = {.lex_state = 81}, + [2976] = {.lex_state = 81}, + [2977] = {.lex_state = 81}, + [2978] = {.lex_state = 81}, + [2979] = {.lex_state = 81}, + [2980] = {.lex_state = 81}, + [2981] = {.lex_state = 81}, + [2982] = {.lex_state = 81}, + [2983] = {.lex_state = 81}, + [2984] = {.lex_state = 81}, + [2985] = {.lex_state = 81}, + [2986] = {.lex_state = 81}, + [2987] = {.lex_state = 81}, + [2988] = {.lex_state = 81}, + [2989] = {.lex_state = 81}, + [2990] = {.lex_state = 81}, + [2991] = {.lex_state = 81}, + [2992] = {.lex_state = 81}, + [2993] = {.lex_state = 81}, + [2994] = {.lex_state = 81}, + [2995] = {.lex_state = 81}, + [2996] = {.lex_state = 81}, + [2997] = {.lex_state = 81}, + [2998] = {.lex_state = 81}, + [2999] = {.lex_state = 81}, + [3000] = {.lex_state = 81}, + [3001] = {.lex_state = 81}, + [3002] = {.lex_state = 81}, + [3003] = {.lex_state = 81}, + [3004] = {.lex_state = 81}, + [3005] = {.lex_state = 81}, + [3006] = {.lex_state = 81}, + [3007] = {.lex_state = 81}, + [3008] = {.lex_state = 81}, + [3009] = {.lex_state = 81}, + [3010] = {.lex_state = 81}, + [3011] = {.lex_state = 81}, + [3012] = {.lex_state = 81}, + [3013] = {.lex_state = 81}, + [3014] = {.lex_state = 81}, + [3015] = {.lex_state = 81}, + [3016] = {.lex_state = 81}, + [3017] = {.lex_state = 81}, + [3018] = {.lex_state = 81}, + [3019] = {.lex_state = 81}, + [3020] = {.lex_state = 81}, + [3021] = {.lex_state = 81}, + [3022] = {.lex_state = 81}, + [3023] = {.lex_state = 81}, + [3024] = {.lex_state = 81}, + [3025] = {.lex_state = 81}, + [3026] = {.lex_state = 12}, + [3027] = {.lex_state = 81}, + [3028] = {.lex_state = 81}, + [3029] = {.lex_state = 81}, + [3030] = {.lex_state = 81}, + [3031] = {.lex_state = 81}, + [3032] = {.lex_state = 81}, + [3033] = {.lex_state = 81}, + [3034] = {.lex_state = 81}, + [3035] = {.lex_state = 81}, + [3036] = {.lex_state = 81}, + [3037] = {.lex_state = 12}, + [3038] = {.lex_state = 81}, + [3039] = {.lex_state = 81}, + [3040] = {.lex_state = 81}, + [3041] = {.lex_state = 81}, + [3042] = {.lex_state = 81}, + [3043] = {.lex_state = 81}, + [3044] = {.lex_state = 81}, + [3045] = {.lex_state = 81}, + [3046] = {.lex_state = 81}, + [3047] = {.lex_state = 81}, + [3048] = {.lex_state = 81}, + [3049] = {.lex_state = 81}, + [3050] = {.lex_state = 81}, + [3051] = {.lex_state = 81}, + [3052] = {.lex_state = 81}, + [3053] = {.lex_state = 81}, + [3054] = {.lex_state = 81}, + [3055] = {.lex_state = 81}, + [3056] = {.lex_state = 12}, + [3057] = {.lex_state = 81}, + [3058] = {.lex_state = 81}, + [3059] = {.lex_state = 81}, + [3060] = {.lex_state = 12}, + [3061] = {.lex_state = 81}, + [3062] = {.lex_state = 81}, + [3063] = {.lex_state = 81}, + [3064] = {.lex_state = 81}, + [3065] = {.lex_state = 81}, + [3066] = {.lex_state = 12}, + [3067] = {.lex_state = 81}, + [3068] = {.lex_state = 81}, + [3069] = {.lex_state = 81}, + [3070] = {.lex_state = 81}, + [3071] = {.lex_state = 81}, + [3072] = {.lex_state = 81}, + [3073] = {.lex_state = 81}, + [3074] = {.lex_state = 81}, + [3075] = {.lex_state = 81}, + [3076] = {.lex_state = 81}, + [3077] = {.lex_state = 81}, + [3078] = {.lex_state = 81}, + [3079] = {.lex_state = 81}, + [3080] = {.lex_state = 81}, + [3081] = {.lex_state = 81}, + [3082] = {.lex_state = 81}, + [3083] = {.lex_state = 81}, + [3084] = {.lex_state = 81}, + [3085] = {.lex_state = 81}, + [3086] = {.lex_state = 12}, + [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}, + [3094] = {.lex_state = 81}, + [3095] = {.lex_state = 81}, + [3096] = {.lex_state = 81}, + [3097] = {.lex_state = 81}, + [3098] = {.lex_state = 81}, + [3099] = {.lex_state = 81}, + [3100] = {.lex_state = 81}, + [3101] = {.lex_state = 81}, + [3102] = {.lex_state = 81}, + [3103] = {.lex_state = 81}, + [3104] = {.lex_state = 81}, + [3105] = {.lex_state = 81}, + [3106] = {.lex_state = 81}, + [3107] = {.lex_state = 81}, + [3108] = {.lex_state = 81}, + [3109] = {.lex_state = 81}, + [3110] = {.lex_state = 81}, + [3111] = {.lex_state = 15}, + [3112] = {.lex_state = 81}, + [3113] = {.lex_state = 81}, + [3114] = {.lex_state = 81}, + [3115] = {.lex_state = 81}, + [3116] = {.lex_state = 81}, + [3117] = {.lex_state = 81}, + [3118] = {.lex_state = 81}, + [3119] = {.lex_state = 81}, + [3120] = {.lex_state = 81}, + [3121] = {.lex_state = 81}, + [3122] = {.lex_state = 81}, + [3123] = {.lex_state = 81}, + [3124] = {.lex_state = 81}, + [3125] = {.lex_state = 15}, + [3126] = {.lex_state = 81}, + [3127] = {.lex_state = 81}, + [3128] = {.lex_state = 81}, + [3129] = {.lex_state = 81}, + [3130] = {.lex_state = 81}, + [3131] = {.lex_state = 81}, + [3132] = {.lex_state = 81}, + [3133] = {.lex_state = 81}, + [3134] = {.lex_state = 81}, + [3135] = {.lex_state = 81}, + [3136] = {.lex_state = 81}, + [3137] = {.lex_state = 81}, + [3138] = {.lex_state = 81}, + [3139] = {.lex_state = 81}, + [3140] = {.lex_state = 81}, + [3141] = {.lex_state = 81}, + [3142] = {.lex_state = 81}, + [3143] = {.lex_state = 81}, + [3144] = {.lex_state = 81}, + [3145] = {.lex_state = 81}, + [3146] = {.lex_state = 81}, + [3147] = {.lex_state = 81}, + [3148] = {.lex_state = 81}, + [3149] = {.lex_state = 81}, + [3150] = {.lex_state = 81}, + [3151] = {.lex_state = 81}, + [3152] = {.lex_state = 81}, + [3153] = {.lex_state = 81}, + [3154] = {.lex_state = 81}, + [3155] = {.lex_state = 81}, + [3156] = {.lex_state = 81}, + [3157] = {.lex_state = 81}, + [3158] = {.lex_state = 81}, + [3159] = {.lex_state = 81}, + [3160] = {.lex_state = 81}, + [3161] = {.lex_state = 81}, + [3162] = {.lex_state = 81}, + [3163] = {.lex_state = 81}, + [3164] = {.lex_state = 81}, + [3165] = {.lex_state = 81}, + [3166] = {.lex_state = 81}, + [3167] = {.lex_state = 81}, + [3168] = {.lex_state = 81}, + [3169] = {.lex_state = 81}, + [3170] = {.lex_state = 81}, + [3171] = {.lex_state = 81}, + [3172] = {.lex_state = 81}, + [3173] = {.lex_state = 81}, + [3174] = {.lex_state = 81}, + [3175] = {.lex_state = 81}, + [3176] = {.lex_state = 81}, + [3177] = {.lex_state = 81}, + [3178] = {.lex_state = 81}, + [3179] = {.lex_state = 81}, + [3180] = {.lex_state = 81}, + [3181] = {.lex_state = 81}, + [3182] = {.lex_state = 81}, + [3183] = {.lex_state = 81}, + [3184] = {.lex_state = 81}, + [3185] = {.lex_state = 81}, + [3186] = {.lex_state = 81}, + [3187] = {.lex_state = 81}, + [3188] = {.lex_state = 81}, + [3189] = {.lex_state = 81}, + [3190] = {.lex_state = 81}, + [3191] = {.lex_state = 81}, + [3192] = {.lex_state = 81}, + [3193] = {.lex_state = 81}, + [3194] = {.lex_state = 81}, + [3195] = {.lex_state = 81}, + [3196] = {.lex_state = 81}, + [3197] = {.lex_state = 81}, + [3198] = {.lex_state = 81}, + [3199] = {.lex_state = 81}, + [3200] = {.lex_state = 81}, + [3201] = {.lex_state = 81}, + [3202] = {.lex_state = 81}, + [3203] = {.lex_state = 81}, + [3204] = {.lex_state = 81}, + [3205] = {.lex_state = 81}, + [3206] = {.lex_state = 81}, + [3207] = {.lex_state = 81}, + [3208] = {.lex_state = 81}, + [3209] = {.lex_state = 81}, + [3210] = {.lex_state = 81}, + [3211] = {.lex_state = 81}, + [3212] = {.lex_state = 81}, + [3213] = {.lex_state = 81}, + [3214] = {.lex_state = 81}, + [3215] = {.lex_state = 81}, + [3216] = {.lex_state = 81}, + [3217] = {.lex_state = 81}, + [3218] = {.lex_state = 81}, + [3219] = {.lex_state = 81}, + [3220] = {.lex_state = 81}, + [3221] = {.lex_state = 81}, + [3222] = {.lex_state = 81}, + [3223] = {.lex_state = 81}, + [3224] = {.lex_state = 81}, + [3225] = {.lex_state = 81}, + [3226] = {.lex_state = 81}, + [3227] = {.lex_state = 81}, + [3228] = {.lex_state = 81}, + [3229] = {.lex_state = 81}, + [3230] = {.lex_state = 81}, + [3231] = {.lex_state = 81}, + [3232] = {.lex_state = 81}, + [3233] = {.lex_state = 81}, + [3234] = {.lex_state = 81}, + [3235] = {.lex_state = 81}, + [3236] = {.lex_state = 81}, + [3237] = {.lex_state = 81}, + [3238] = {.lex_state = 81}, + [3239] = {.lex_state = 15}, + [3240] = {.lex_state = 81}, + [3241] = {.lex_state = 81}, + [3242] = {.lex_state = 81}, + [3243] = {.lex_state = 81}, + [3244] = {.lex_state = 81}, + [3245] = {.lex_state = 81}, + [3246] = {.lex_state = 81}, + [3247] = {.lex_state = 81}, + [3248] = {.lex_state = 81}, + [3249] = {.lex_state = 81}, + [3250] = {.lex_state = 81}, + [3251] = {.lex_state = 81}, + [3252] = {.lex_state = 81}, + [3253] = {.lex_state = 81}, + [3254] = {.lex_state = 81}, + [3255] = {.lex_state = 81}, + [3256] = {.lex_state = 81}, + [3257] = {.lex_state = 81}, + [3258] = {.lex_state = 81}, + [3259] = {.lex_state = 81}, + [3260] = {.lex_state = 81}, + [3261] = {.lex_state = 81}, + [3262] = {.lex_state = 81}, + [3263] = {.lex_state = 81}, + [3264] = {.lex_state = 81}, + [3265] = {.lex_state = 81}, + [3266] = {.lex_state = 15}, + [3267] = {.lex_state = 81}, + [3268] = {.lex_state = 81}, + [3269] = {.lex_state = 81}, + [3270] = {.lex_state = 81}, + [3271] = {.lex_state = 81}, + [3272] = {.lex_state = 81}, + [3273] = {.lex_state = 81}, + [3274] = {.lex_state = 81}, + [3275] = {.lex_state = 81}, + [3276] = {.lex_state = 81}, + [3277] = {.lex_state = 81}, + [3278] = {.lex_state = 81}, + [3279] = {.lex_state = 81}, + [3280] = {.lex_state = 81}, + [3281] = {.lex_state = 81}, + [3282] = {.lex_state = 81}, + [3283] = {.lex_state = 81}, + [3284] = {.lex_state = 15}, + [3285] = {.lex_state = 81}, + [3286] = {.lex_state = 81}, + [3287] = {.lex_state = 81}, + [3288] = {.lex_state = 81}, + [3289] = {.lex_state = 81}, + [3290] = {.lex_state = 81}, + [3291] = {.lex_state = 81}, + [3292] = {.lex_state = 81}, + [3293] = {.lex_state = 81}, + [3294] = {.lex_state = 81}, + [3295] = {.lex_state = 81}, + [3296] = {.lex_state = 81}, + [3297] = {.lex_state = 81}, + [3298] = {.lex_state = 81}, + [3299] = {.lex_state = 81}, + [3300] = {.lex_state = 81}, + [3301] = {.lex_state = 81}, + [3302] = {.lex_state = 81}, + [3303] = {.lex_state = 81}, + [3304] = {.lex_state = 81}, + [3305] = {.lex_state = 81}, + [3306] = {.lex_state = 81}, + [3307] = {.lex_state = 81}, + [3308] = {.lex_state = 81}, + [3309] = {.lex_state = 81}, + [3310] = {.lex_state = 81}, + [3311] = {.lex_state = 81}, + [3312] = {.lex_state = 81}, + [3313] = {.lex_state = 81}, + [3314] = {.lex_state = 81}, + [3315] = {.lex_state = 81}, + [3316] = {.lex_state = 81}, + [3317] = {.lex_state = 81}, + [3318] = {.lex_state = 81}, + [3319] = {.lex_state = 81}, + [3320] = {.lex_state = 81}, + [3321] = {.lex_state = 81}, + [3322] = {.lex_state = 81}, + [3323] = {.lex_state = 81}, + [3324] = {.lex_state = 81}, + [3325] = {.lex_state = 81}, + [3326] = {.lex_state = 81}, + [3327] = {.lex_state = 81}, + [3328] = {.lex_state = 81}, + [3329] = {.lex_state = 81}, + [3330] = {.lex_state = 81}, + [3331] = {.lex_state = 81}, + [3332] = {.lex_state = 81}, + [3333] = {.lex_state = 81}, + [3334] = {.lex_state = 81}, + [3335] = {.lex_state = 81}, + [3336] = {.lex_state = 81}, + [3337] = {.lex_state = 81}, + [3338] = {.lex_state = 81}, + [3339] = {.lex_state = 81}, + [3340] = {.lex_state = 81}, + [3341] = {.lex_state = 81}, + [3342] = {.lex_state = 81}, + [3343] = {.lex_state = 81}, + [3344] = {.lex_state = 81}, + [3345] = {.lex_state = 81}, + [3346] = {.lex_state = 15}, + [3347] = {.lex_state = 81}, + [3348] = {.lex_state = 81}, + [3349] = {.lex_state = 81}, + [3350] = {.lex_state = 15}, + [3351] = {.lex_state = 81}, + [3352] = {.lex_state = 81}, + [3353] = {.lex_state = 81}, + [3354] = {.lex_state = 81}, + [3355] = {.lex_state = 81}, + [3356] = {.lex_state = 81}, + [3357] = {.lex_state = 81}, + [3358] = {.lex_state = 81}, + [3359] = {.lex_state = 81}, + [3360] = {.lex_state = 81}, + [3361] = {.lex_state = 81}, + [3362] = {.lex_state = 81}, + [3363] = {.lex_state = 81}, + [3364] = {.lex_state = 81}, + [3365] = {.lex_state = 81}, + [3366] = {.lex_state = 81}, + [3367] = {.lex_state = 81}, + [3368] = {.lex_state = 15}, + [3369] = {.lex_state = 81}, + [3370] = {.lex_state = 81}, + [3371] = {.lex_state = 81}, + [3372] = {.lex_state = 81}, + [3373] = {.lex_state = 81}, + [3374] = {.lex_state = 81}, + [3375] = {.lex_state = 81}, + [3376] = {.lex_state = 81}, + [3377] = {.lex_state = 81}, + [3378] = {.lex_state = 81}, + [3379] = {.lex_state = 81}, + [3380] = {.lex_state = 81}, + [3381] = {.lex_state = 81}, + [3382] = {.lex_state = 81}, + [3383] = {.lex_state = 81}, + [3384] = {.lex_state = 81}, + [3385] = {.lex_state = 81}, + [3386] = {.lex_state = 81}, + [3387] = {.lex_state = 81}, + [3388] = {.lex_state = 81}, + [3389] = {.lex_state = 81}, + [3390] = {.lex_state = 81}, + [3391] = {.lex_state = 81}, + [3392] = {.lex_state = 81}, + [3393] = {.lex_state = 81}, + [3394] = {.lex_state = 81}, + [3395] = {.lex_state = 81}, + [3396] = {.lex_state = 81}, + [3397] = {.lex_state = 81}, + [3398] = {.lex_state = 81}, + [3399] = {.lex_state = 81}, + [3400] = {.lex_state = 81}, + [3401] = {.lex_state = 81}, + [3402] = {.lex_state = 81}, + [3403] = {.lex_state = 81}, + [3404] = {.lex_state = 81}, + [3405] = {.lex_state = 81}, + [3406] = {.lex_state = 81}, + [3407] = {.lex_state = 81}, + [3408] = {.lex_state = 81}, + [3409] = {.lex_state = 81}, + [3410] = {.lex_state = 81}, + [3411] = {.lex_state = 81}, + [3412] = {.lex_state = 81}, + [3413] = {.lex_state = 81}, + [3414] = {.lex_state = 81}, + [3415] = {.lex_state = 81}, + [3416] = {.lex_state = 81}, + [3417] = {.lex_state = 81}, + [3418] = {.lex_state = 81}, + [3419] = {.lex_state = 81}, + [3420] = {.lex_state = 15}, + [3421] = {.lex_state = 81}, + [3422] = {.lex_state = 81}, + [3423] = {.lex_state = 81}, + [3424] = {.lex_state = 81}, + [3425] = {.lex_state = 81}, + [3426] = {.lex_state = 81}, + [3427] = {.lex_state = 81}, + [3428] = {.lex_state = 81}, + [3429] = {.lex_state = 15}, + [3430] = {.lex_state = 15}, + [3431] = {.lex_state = 81}, + [3432] = {.lex_state = 81}, + [3433] = {.lex_state = 81}, + [3434] = {.lex_state = 81}, + [3435] = {.lex_state = 18}, + [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}, + [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}, + [3452] = {.lex_state = 81}, + [3453] = {.lex_state = 18}, + [3454] = {.lex_state = 81}, + [3455] = {.lex_state = 81}, [3456] = {.lex_state = 15}, [3457] = {.lex_state = 15}, - [3458] = {.lex_state = 80}, + [3458] = {.lex_state = 15}, [3459] = {.lex_state = 15}, [3460] = {.lex_state = 15}, [3461] = {.lex_state = 15}, @@ -16234,64 +16398,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3463] = {.lex_state = 15}, [3464] = {.lex_state = 15}, [3465] = {.lex_state = 15}, - [3466] = {.lex_state = 15}, - [3467] = {.lex_state = 80}, - [3468] = {.lex_state = 80}, - [3469] = {.lex_state = 80}, - [3470] = {.lex_state = 80}, - [3471] = {.lex_state = 80}, - [3472] = {.lex_state = 80}, - [3473] = {.lex_state = 80}, - [3474] = {.lex_state = 15}, - [3475] = {.lex_state = 15}, - [3476] = {.lex_state = 15}, - [3477] = {.lex_state = 15}, - [3478] = {.lex_state = 15}, - [3479] = {.lex_state = 15}, - [3480] = {.lex_state = 15}, - [3481] = {.lex_state = 15}, - [3482] = {.lex_state = 80}, - [3483] = {.lex_state = 15}, - [3484] = {.lex_state = 15}, - [3485] = {.lex_state = 80}, - [3486] = {.lex_state = 80}, - [3487] = {.lex_state = 80}, - [3488] = {.lex_state = 80}, - [3489] = {.lex_state = 80}, - [3490] = {.lex_state = 80}, - [3491] = {.lex_state = 15}, - [3492] = {.lex_state = 80}, - [3493] = {.lex_state = 80}, - [3494] = {.lex_state = 15}, - [3495] = {.lex_state = 15}, - [3496] = {.lex_state = 15}, - [3497] = {.lex_state = 15}, - [3498] = {.lex_state = 15}, - [3499] = {.lex_state = 15}, - [3500] = {.lex_state = 15}, - [3501] = {.lex_state = 15}, - [3502] = {.lex_state = 15}, - [3503] = {.lex_state = 15}, - [3504] = {.lex_state = 15}, - [3505] = {.lex_state = 15}, - [3506] = {.lex_state = 15}, - [3507] = {.lex_state = 15}, - [3508] = {.lex_state = 15}, - [3509] = {.lex_state = 15}, - [3510] = {.lex_state = 15}, - [3511] = {.lex_state = 15}, - [3512] = {.lex_state = 15}, - [3513] = {.lex_state = 15}, - [3514] = {.lex_state = 15}, - [3515] = {.lex_state = 15}, - [3516] = {.lex_state = 15}, - [3517] = {.lex_state = 15}, - [3518] = {.lex_state = 15}, - [3519] = {.lex_state = 15}, - [3520] = {.lex_state = 15}, - [3521] = {.lex_state = 15}, - [3522] = {.lex_state = 15}, - [3523] = {.lex_state = 15}, + [3466] = {.lex_state = 18}, + [3467] = {.lex_state = 15}, + [3468] = {.lex_state = 18}, + [3469] = {.lex_state = 18}, + [3470] = {.lex_state = 18}, + [3471] = {.lex_state = 81}, + [3472] = {.lex_state = 81}, + [3473] = {.lex_state = 81}, + [3474] = {.lex_state = 81}, + [3475] = {.lex_state = 81}, + [3476] = {.lex_state = 81}, + [3477] = {.lex_state = 81}, + [3478] = {.lex_state = 81}, + [3479] = {.lex_state = 81}, + [3480] = {.lex_state = 81}, + [3481] = {.lex_state = 81}, + [3482] = {.lex_state = 81}, + [3483] = {.lex_state = 81}, + [3484] = {.lex_state = 81}, + [3485] = {.lex_state = 81}, + [3486] = {.lex_state = 81}, + [3487] = {.lex_state = 81}, + [3488] = {.lex_state = 81}, + [3489] = {.lex_state = 81}, + [3490] = {.lex_state = 81}, + [3491] = {.lex_state = 81}, + [3492] = {.lex_state = 81}, + [3493] = {.lex_state = 81}, + [3494] = {.lex_state = 81}, + [3495] = {.lex_state = 81}, + [3496] = {.lex_state = 81}, + [3497] = {.lex_state = 81}, + [3498] = {.lex_state = 81}, + [3499] = {.lex_state = 81}, + [3500] = {.lex_state = 81}, + [3501] = {.lex_state = 81}, + [3502] = {.lex_state = 81}, + [3503] = {.lex_state = 81}, + [3504] = {.lex_state = 81}, + [3505] = {.lex_state = 81}, + [3506] = {.lex_state = 81}, + [3507] = {.lex_state = 81}, + [3508] = {.lex_state = 81}, + [3509] = {.lex_state = 81}, + [3510] = {.lex_state = 81}, + [3511] = {.lex_state = 81}, + [3512] = {.lex_state = 81}, + [3513] = {.lex_state = 81}, + [3514] = {.lex_state = 81}, + [3515] = {.lex_state = 81}, + [3516] = {.lex_state = 81}, + [3517] = {.lex_state = 81}, + [3518] = {.lex_state = 81}, + [3519] = {.lex_state = 81}, + [3520] = {.lex_state = 81}, + [3521] = {.lex_state = 81}, + [3522] = {.lex_state = 81}, + [3523] = {.lex_state = 81}, [3524] = {.lex_state = 15}, [3525] = {.lex_state = 15}, [3526] = {.lex_state = 15}, @@ -16299,20 +16463,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3528] = {.lex_state = 15}, [3529] = {.lex_state = 15}, [3530] = {.lex_state = 15}, - [3531] = {.lex_state = 15}, + [3531] = {.lex_state = 81}, [3532] = {.lex_state = 15}, [3533] = {.lex_state = 15}, - [3534] = {.lex_state = 15}, + [3534] = {.lex_state = 81}, [3535] = {.lex_state = 15}, - [3536] = {.lex_state = 15}, - [3537] = {.lex_state = 15}, - [3538] = {.lex_state = 15}, - [3539] = {.lex_state = 15}, - [3540] = {.lex_state = 15}, + [3536] = {.lex_state = 81}, + [3537] = {.lex_state = 81}, + [3538] = {.lex_state = 81}, + [3539] = {.lex_state = 81}, + [3540] = {.lex_state = 81}, [3541] = {.lex_state = 15}, - [3542] = {.lex_state = 40}, - [3543] = {.lex_state = 40}, - [3544] = {.lex_state = 40}, + [3542] = {.lex_state = 81}, + [3543] = {.lex_state = 81}, + [3544] = {.lex_state = 15}, [3545] = {.lex_state = 15}, [3546] = {.lex_state = 15}, [3547] = {.lex_state = 15}, @@ -16321,19 +16485,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3550] = {.lex_state = 15}, [3551] = {.lex_state = 15}, [3552] = {.lex_state = 15}, - [3553] = {.lex_state = 40}, + [3553] = {.lex_state = 15}, [3554] = {.lex_state = 15}, [3555] = {.lex_state = 15}, - [3556] = {.lex_state = 40}, + [3556] = {.lex_state = 15}, [3557] = {.lex_state = 15}, [3558] = {.lex_state = 15}, - [3559] = {.lex_state = 40}, + [3559] = {.lex_state = 15}, [3560] = {.lex_state = 15}, - [3561] = {.lex_state = 16}, + [3561] = {.lex_state = 15}, [3562] = {.lex_state = 15}, [3563] = {.lex_state = 15}, [3564] = {.lex_state = 15}, - [3565] = {.lex_state = 16}, + [3565] = {.lex_state = 15}, [3566] = {.lex_state = 15}, [3567] = {.lex_state = 15}, [3568] = {.lex_state = 15}, @@ -16353,18 +16517,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3582] = {.lex_state = 15}, [3583] = {.lex_state = 15}, [3584] = {.lex_state = 15}, - [3585] = {.lex_state = 16}, + [3585] = {.lex_state = 15}, [3586] = {.lex_state = 15}, [3587] = {.lex_state = 15}, - [3588] = {.lex_state = 40}, + [3588] = {.lex_state = 15}, [3589] = {.lex_state = 15}, - [3590] = {.lex_state = 15}, - [3591] = {.lex_state = 15}, + [3590] = {.lex_state = 40}, + [3591] = {.lex_state = 40}, [3592] = {.lex_state = 15}, [3593] = {.lex_state = 15}, [3594] = {.lex_state = 15}, - [3595] = {.lex_state = 16}, - [3596] = {.lex_state = 15}, + [3595] = {.lex_state = 15}, + [3596] = {.lex_state = 40}, [3597] = {.lex_state = 15}, [3598] = {.lex_state = 15}, [3599] = {.lex_state = 15}, @@ -16373,16 +16537,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3602] = {.lex_state = 15}, [3603] = {.lex_state = 15}, [3604] = {.lex_state = 15}, - [3605] = {.lex_state = 16}, + [3605] = {.lex_state = 40}, [3606] = {.lex_state = 15}, - [3607] = {.lex_state = 15}, + [3607] = {.lex_state = 40}, [3608] = {.lex_state = 15}, [3609] = {.lex_state = 15}, - [3610] = {.lex_state = 15}, + [3610] = {.lex_state = 40}, [3611] = {.lex_state = 15}, - [3612] = {.lex_state = 15}, - [3613] = {.lex_state = 16}, - [3614] = {.lex_state = 16}, + [3612] = {.lex_state = 16}, + [3613] = {.lex_state = 40}, + [3614] = {.lex_state = 15}, [3615] = {.lex_state = 15}, [3616] = {.lex_state = 15}, [3617] = {.lex_state = 15}, @@ -16395,46 +16559,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3624] = {.lex_state = 15}, [3625] = {.lex_state = 15}, [3626] = {.lex_state = 15}, - [3627] = {.lex_state = 16}, + [3627] = {.lex_state = 15}, [3628] = {.lex_state = 15}, - [3629] = {.lex_state = 23}, - [3630] = {.lex_state = 16}, - [3631] = {.lex_state = 23}, + [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 = 15}, + [3635] = {.lex_state = 16}, [3636] = {.lex_state = 15}, [3637] = {.lex_state = 15}, - [3638] = {.lex_state = 16}, + [3638] = {.lex_state = 15}, [3639] = {.lex_state = 15}, [3640] = {.lex_state = 15}, [3641] = {.lex_state = 15}, [3642] = {.lex_state = 15}, [3643] = {.lex_state = 15}, - [3644] = {.lex_state = 15}, - [3645] = {.lex_state = 0, .external_lex_state = 2}, - [3646] = {.lex_state = 23}, + [3644] = {.lex_state = 16}, + [3645] = {.lex_state = 15}, + [3646] = {.lex_state = 15}, [3647] = {.lex_state = 15}, [3648] = {.lex_state = 15}, [3649] = {.lex_state = 15}, [3650] = {.lex_state = 15}, [3651] = {.lex_state = 15}, [3652] = {.lex_state = 15}, - [3653] = {.lex_state = 0, .external_lex_state = 2}, - [3654] = {.lex_state = 15}, - [3655] = {.lex_state = 23}, - [3656] = {.lex_state = 16}, + [3653] = {.lex_state = 15}, + [3654] = {.lex_state = 16}, + [3655] = {.lex_state = 15}, + [3656] = {.lex_state = 15}, [3657] = {.lex_state = 15}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 15}, + [3658] = {.lex_state = 15}, + [3659] = {.lex_state = 16}, [3660] = {.lex_state = 15}, - [3661] = {.lex_state = 15}, + [3661] = {.lex_state = 16}, [3662] = {.lex_state = 15}, [3663] = {.lex_state = 15}, [3664] = {.lex_state = 15}, - [3665] = {.lex_state = 15}, - [3666] = {.lex_state = 16}, + [3665] = {.lex_state = 16}, + [3666] = {.lex_state = 15}, [3667] = {.lex_state = 15}, [3668] = {.lex_state = 15}, [3669] = {.lex_state = 15}, @@ -16443,204 +16607,204 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3672] = {.lex_state = 15}, [3673] = {.lex_state = 15}, [3674] = {.lex_state = 15}, - [3675] = {.lex_state = 16}, + [3675] = {.lex_state = 0, .external_lex_state = 2}, [3676] = {.lex_state = 15}, [3677] = {.lex_state = 15}, [3678] = {.lex_state = 15}, [3679] = {.lex_state = 15}, - [3680] = {.lex_state = 16}, + [3680] = {.lex_state = 81}, [3681] = {.lex_state = 15}, [3682] = {.lex_state = 15}, [3683] = {.lex_state = 15}, [3684] = {.lex_state = 15}, - [3685] = {.lex_state = 15}, + [3685] = {.lex_state = 23}, [3686] = {.lex_state = 15}, [3687] = {.lex_state = 15}, - [3688] = {.lex_state = 15}, + [3688] = {.lex_state = 23}, [3689] = {.lex_state = 15}, [3690] = {.lex_state = 15}, - [3691] = {.lex_state = 80}, + [3691] = {.lex_state = 15}, [3692] = {.lex_state = 15}, - [3693] = {.lex_state = 15}, - [3694] = {.lex_state = 16}, + [3693] = {.lex_state = 23}, + [3694] = {.lex_state = 15}, [3695] = {.lex_state = 15}, - [3696] = {.lex_state = 23}, + [3696] = {.lex_state = 15}, [3697] = {.lex_state = 15}, [3698] = {.lex_state = 15}, [3699] = {.lex_state = 15}, - [3700] = {.lex_state = 16}, + [3700] = {.lex_state = 15}, [3701] = {.lex_state = 15}, [3702] = {.lex_state = 15}, - [3703] = {.lex_state = 0, .external_lex_state = 3}, - [3704] = {.lex_state = 23}, - [3705] = {.lex_state = 16}, - [3706] = {.lex_state = 23}, - [3707] = {.lex_state = 0, .external_lex_state = 3}, - [3708] = {.lex_state = 23}, - [3709] = {.lex_state = 15}, + [3703] = {.lex_state = 15}, + [3704] = {.lex_state = 16}, + [3705] = {.lex_state = 15}, + [3706] = {.lex_state = 16}, + [3707] = {.lex_state = 23}, + [3708] = {.lex_state = 15}, + [3709] = {.lex_state = 16}, [3710] = {.lex_state = 15}, - [3711] = {.lex_state = 23}, - [3712] = {.lex_state = 15}, + [3711] = {.lex_state = 15}, + [3712] = {.lex_state = 16}, [3713] = {.lex_state = 15}, - [3714] = {.lex_state = 16}, - [3715] = {.lex_state = 16}, + [3714] = {.lex_state = 15}, + [3715] = {.lex_state = 15}, [3716] = {.lex_state = 15}, - [3717] = {.lex_state = 23}, - [3718] = {.lex_state = 15}, - [3719] = {.lex_state = 23}, - [3720] = {.lex_state = 23}, - [3721] = {.lex_state = 12}, + [3717] = {.lex_state = 15}, + [3718] = {.lex_state = 23}, + [3719] = {.lex_state = 15}, + [3720] = {.lex_state = 16}, + [3721] = {.lex_state = 16}, [3722] = {.lex_state = 15}, [3723] = {.lex_state = 15}, - [3724] = {.lex_state = 23}, - [3725] = {.lex_state = 23}, - [3726] = {.lex_state = 23}, - [3727] = {.lex_state = 12}, - [3728] = {.lex_state = 12}, - [3729] = {.lex_state = 16}, - [3730] = {.lex_state = 16}, + [3724] = {.lex_state = 15}, + [3725] = {.lex_state = 15}, + [3726] = {.lex_state = 15}, + [3727] = {.lex_state = 15}, + [3728] = {.lex_state = 15}, + [3729] = {.lex_state = 15}, + [3730] = {.lex_state = 15}, [3731] = {.lex_state = 15}, - [3732] = {.lex_state = 12}, - [3733] = {.lex_state = 16}, - [3734] = {.lex_state = 12}, - [3735] = {.lex_state = 12}, + [3732] = {.lex_state = 15}, + [3733] = {.lex_state = 0}, + [3734] = {.lex_state = 15}, + [3735] = {.lex_state = 0, .external_lex_state = 2}, [3736] = {.lex_state = 15}, - [3737] = {.lex_state = 23}, + [3737] = {.lex_state = 16}, [3738] = {.lex_state = 15}, - [3739] = {.lex_state = 0, .external_lex_state = 3}, - [3740] = {.lex_state = 0, .external_lex_state = 3}, - [3741] = {.lex_state = 23}, - [3742] = {.lex_state = 0, .external_lex_state = 3}, + [3739] = {.lex_state = 15}, + [3740] = {.lex_state = 15}, + [3741] = {.lex_state = 15}, + [3742] = {.lex_state = 15}, [3743] = {.lex_state = 15}, - [3744] = {.lex_state = 23}, - [3745] = {.lex_state = 12}, - [3746] = {.lex_state = 0, .external_lex_state = 3}, - [3747] = {.lex_state = 0, .external_lex_state = 3}, - [3748] = {.lex_state = 23}, - [3749] = {.lex_state = 16}, - [3750] = {.lex_state = 16}, - [3751] = {.lex_state = 16}, - [3752] = {.lex_state = 15}, + [3744] = {.lex_state = 16}, + [3745] = {.lex_state = 16}, + [3746] = {.lex_state = 15}, + [3747] = {.lex_state = 15}, + [3748] = {.lex_state = 15}, + [3749] = {.lex_state = 15}, + [3750] = {.lex_state = 15}, + [3751] = {.lex_state = 12}, + [3752] = {.lex_state = 16}, [3753] = {.lex_state = 16}, - [3754] = {.lex_state = 15}, - [3755] = {.lex_state = 38}, - [3756] = {.lex_state = 16}, - [3757] = {.lex_state = 15}, - [3758] = {.lex_state = 15}, - [3759] = {.lex_state = 15}, - [3760] = {.lex_state = 15}, - [3761] = {.lex_state = 15}, + [3754] = {.lex_state = 12}, + [3755] = {.lex_state = 12}, + [3756] = {.lex_state = 15}, + [3757] = {.lex_state = 23}, + [3758] = {.lex_state = 16}, + [3759] = {.lex_state = 0, .external_lex_state = 3}, + [3760] = {.lex_state = 16}, + [3761] = {.lex_state = 23}, [3762] = {.lex_state = 15}, - [3763] = {.lex_state = 38}, - [3764] = {.lex_state = 15}, + [3763] = {.lex_state = 23}, + [3764] = {.lex_state = 12}, [3765] = {.lex_state = 15}, - [3766] = {.lex_state = 15}, - [3767] = {.lex_state = 15}, - [3768] = {.lex_state = 15}, - [3769] = {.lex_state = 15}, + [3766] = {.lex_state = 23}, + [3767] = {.lex_state = 23}, + [3768] = {.lex_state = 12}, + [3769] = {.lex_state = 16}, [3770] = {.lex_state = 15}, - [3771] = {.lex_state = 15}, - [3772] = {.lex_state = 15}, - [3773] = {.lex_state = 15}, - [3774] = {.lex_state = 0}, + [3771] = {.lex_state = 16}, + [3772] = {.lex_state = 23}, + [3773] = {.lex_state = 23}, + [3774] = {.lex_state = 15}, [3775] = {.lex_state = 15}, - [3776] = {.lex_state = 15}, - [3777] = {.lex_state = 15}, - [3778] = {.lex_state = 15}, - [3779] = {.lex_state = 38}, - [3780] = {.lex_state = 16}, - [3781] = {.lex_state = 16}, - [3782] = {.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 = 15}, - [3785] = {.lex_state = 16}, - [3786] = {.lex_state = 16}, + [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 = 15}, - [3790] = {.lex_state = 15}, + [3789] = {.lex_state = 16}, + [3790] = {.lex_state = 23}, [3791] = {.lex_state = 15}, [3792] = {.lex_state = 15}, [3793] = {.lex_state = 15}, - [3794] = {.lex_state = 15}, - [3795] = {.lex_state = 15}, + [3794] = {.lex_state = 23}, + [3795] = {.lex_state = 12}, [3796] = {.lex_state = 15}, - [3797] = {.lex_state = 15}, - [3798] = {.lex_state = 38}, - [3799] = {.lex_state = 15}, - [3800] = {.lex_state = 38}, - [3801] = {.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}, + [3801] = {.lex_state = 7}, [3802] = {.lex_state = 15}, [3803] = {.lex_state = 15}, - [3804] = {.lex_state = 15}, + [3804] = {.lex_state = 16}, [3805] = {.lex_state = 15}, - [3806] = {.lex_state = 38}, + [3806] = {.lex_state = 15}, [3807] = {.lex_state = 15}, [3808] = {.lex_state = 15}, [3809] = {.lex_state = 15}, - [3810] = {.lex_state = 16}, - [3811] = {.lex_state = 15}, - [3812] = {.lex_state = 15}, - [3813] = {.lex_state = 16}, + [3810] = {.lex_state = 15}, + [3811] = {.lex_state = 38}, + [3812] = {.lex_state = 38}, + [3813] = {.lex_state = 15}, [3814] = {.lex_state = 15}, [3815] = {.lex_state = 15}, - [3816] = {.lex_state = 15}, + [3816] = {.lex_state = 38}, [3817] = {.lex_state = 15}, - [3818] = {.lex_state = 38}, + [3818] = {.lex_state = 15}, [3819] = {.lex_state = 15}, - [3820] = {.lex_state = 16}, + [3820] = {.lex_state = 15}, [3821] = {.lex_state = 15}, [3822] = {.lex_state = 15}, - [3823] = {.lex_state = 38}, - [3824] = {.lex_state = 15}, - [3825] = {.lex_state = 15}, + [3823] = {.lex_state = 16}, + [3824] = {.lex_state = 38}, + [3825] = {.lex_state = 7}, [3826] = {.lex_state = 15}, [3827] = {.lex_state = 15}, - [3828] = {.lex_state = 16}, - [3829] = {.lex_state = 15}, - [3830] = {.lex_state = 38}, + [3828] = {.lex_state = 38}, + [3829] = {.lex_state = 38}, + [3830] = {.lex_state = 15}, [3831] = {.lex_state = 15}, [3832] = {.lex_state = 15}, [3833] = {.lex_state = 15}, - [3834] = {.lex_state = 15}, + [3834] = {.lex_state = 16}, [3835] = {.lex_state = 15}, - [3836] = {.lex_state = 38}, - [3837] = {.lex_state = 16}, + [3836] = {.lex_state = 16}, + [3837] = {.lex_state = 38}, [3838] = {.lex_state = 15}, [3839] = {.lex_state = 16}, [3840] = {.lex_state = 15}, [3841] = {.lex_state = 15}, - [3842] = {.lex_state = 16}, + [3842] = {.lex_state = 15}, [3843] = {.lex_state = 15}, - [3844] = {.lex_state = 15}, + [3844] = {.lex_state = 38}, [3845] = {.lex_state = 15}, - [3846] = {.lex_state = 16}, - [3847] = {.lex_state = 15}, + [3846] = {.lex_state = 15}, + [3847] = {.lex_state = 38}, [3848] = {.lex_state = 15}, [3849] = {.lex_state = 15}, - [3850] = {.lex_state = 16}, + [3850] = {.lex_state = 15}, [3851] = {.lex_state = 15}, - [3852] = {.lex_state = 38}, - [3853] = {.lex_state = 16}, + [3852] = {.lex_state = 15}, + [3853] = {.lex_state = 38}, [3854] = {.lex_state = 15}, [3855] = {.lex_state = 15}, - [3856] = {.lex_state = 15}, + [3856] = {.lex_state = 38}, [3857] = {.lex_state = 15}, [3858] = {.lex_state = 15}, - [3859] = {.lex_state = 15}, + [3859] = {.lex_state = 38}, [3860] = {.lex_state = 15}, [3861] = {.lex_state = 15}, - [3862] = {.lex_state = 16}, - [3863] = {.lex_state = 15}, + [3862] = {.lex_state = 15}, + [3863] = {.lex_state = 16}, [3864] = {.lex_state = 15}, [3865] = {.lex_state = 15}, - [3866] = {.lex_state = 16}, + [3866] = {.lex_state = 15}, [3867] = {.lex_state = 15}, [3868] = {.lex_state = 15}, [3869] = {.lex_state = 15}, [3870] = {.lex_state = 15}, - [3871] = {.lex_state = 15}, - [3872] = {.lex_state = 16}, + [3871] = {.lex_state = 38}, + [3872] = {.lex_state = 15}, [3873] = {.lex_state = 15}, [3874] = {.lex_state = 15}, [3875] = {.lex_state = 15}, @@ -16651,153 +16815,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3880] = {.lex_state = 15}, [3881] = {.lex_state = 15}, [3882] = {.lex_state = 15}, - [3883] = {.lex_state = 15}, - [3884] = {.lex_state = 16}, - [3885] = {.lex_state = 15}, + [3883] = {.lex_state = 16}, + [3884] = {.lex_state = 38}, + [3885] = {.lex_state = 16}, [3886] = {.lex_state = 15}, - [3887] = {.lex_state = 16}, - [3888] = {.lex_state = 15}, - [3889] = {.lex_state = 38}, + [3887] = {.lex_state = 15}, + [3888] = {.lex_state = 38}, + [3889] = {.lex_state = 15}, [3890] = {.lex_state = 15}, - [3891] = {.lex_state = 16}, - [3892] = {.lex_state = 16}, - [3893] = {.lex_state = 15}, + [3891] = {.lex_state = 15}, + [3892] = {.lex_state = 15}, + [3893] = {.lex_state = 38}, [3894] = {.lex_state = 15}, - [3895] = {.lex_state = 15}, + [3895] = {.lex_state = 16}, [3896] = {.lex_state = 15}, - [3897] = {.lex_state = 15}, - [3898] = {.lex_state = 15}, - [3899] = {.lex_state = 15}, - [3900] = {.lex_state = 15}, + [3897] = {.lex_state = 16}, + [3898] = {.lex_state = 16}, + [3899] = {.lex_state = 38}, + [3900] = {.lex_state = 16}, [3901] = {.lex_state = 15}, [3902] = {.lex_state = 15}, - [3903] = {.lex_state = 16}, - [3904] = {.lex_state = 15}, + [3903] = {.lex_state = 38}, + [3904] = {.lex_state = 38}, [3905] = {.lex_state = 15}, - [3906] = {.lex_state = 38}, + [3906] = {.lex_state = 15}, [3907] = {.lex_state = 15}, [3908] = {.lex_state = 15}, - [3909] = {.lex_state = 15}, + [3909] = {.lex_state = 16}, [3910] = {.lex_state = 16}, - [3911] = {.lex_state = 15}, - [3912] = {.lex_state = 38}, - [3913] = {.lex_state = 15}, - [3914] = {.lex_state = 15}, + [3911] = {.lex_state = 16}, + [3912] = {.lex_state = 16}, + [3913] = {.lex_state = 16}, + [3914] = {.lex_state = 7}, [3915] = {.lex_state = 15}, - [3916] = {.lex_state = 15}, - [3917] = {.lex_state = 15}, - [3918] = {.lex_state = 16}, + [3916] = {.lex_state = 38}, + [3917] = {.lex_state = 38}, + [3918] = {.lex_state = 15}, [3919] = {.lex_state = 15}, [3920] = {.lex_state = 15}, [3921] = {.lex_state = 15}, [3922] = {.lex_state = 15}, - [3923] = {.lex_state = 16}, - [3924] = {.lex_state = 15}, - [3925] = {.lex_state = 15}, - [3926] = {.lex_state = 15}, - [3927] = {.lex_state = 38}, - [3928] = {.lex_state = 16}, - [3929] = {.lex_state = 16}, - [3930] = {.lex_state = 16}, + [3923] = {.lex_state = 15}, + [3924] = {.lex_state = 16}, + [3925] = {.lex_state = 38}, + [3926] = {.lex_state = 16}, + [3927] = {.lex_state = 15}, + [3928] = {.lex_state = 38}, + [3929] = {.lex_state = 15}, + [3930] = {.lex_state = 15}, [3931] = {.lex_state = 15}, - [3932] = {.lex_state = 16}, - [3933] = {.lex_state = 16}, + [3932] = {.lex_state = 15}, + [3933] = {.lex_state = 15}, [3934] = {.lex_state = 15}, [3935] = {.lex_state = 15}, - [3936] = {.lex_state = 15}, + [3936] = {.lex_state = 16}, [3937] = {.lex_state = 15}, - [3938] = {.lex_state = 15}, - [3939] = {.lex_state = 23}, - [3940] = {.lex_state = 15}, - [3941] = {.lex_state = 15}, - [3942] = {.lex_state = 15}, + [3938] = {.lex_state = 16}, + [3939] = {.lex_state = 38}, + [3940] = {.lex_state = 38}, + [3941] = {.lex_state = 38}, + [3942] = {.lex_state = 38}, [3943] = {.lex_state = 15}, - [3944] = {.lex_state = 15}, - [3945] = {.lex_state = 15}, - [3946] = {.lex_state = 15}, + [3944] = {.lex_state = 38}, + [3945] = {.lex_state = 16}, + [3946] = {.lex_state = 7}, [3947] = {.lex_state = 15}, [3948] = {.lex_state = 15}, - [3949] = {.lex_state = 23}, + [3949] = {.lex_state = 15}, [3950] = {.lex_state = 15}, [3951] = {.lex_state = 15}, - [3952] = {.lex_state = 15}, - [3953] = {.lex_state = 15}, + [3952] = {.lex_state = 16}, + [3953] = {.lex_state = 16}, [3954] = {.lex_state = 15}, [3955] = {.lex_state = 15}, - [3956] = {.lex_state = 15}, + [3956] = {.lex_state = 16}, [3957] = {.lex_state = 15}, - [3958] = {.lex_state = 15}, + [3958] = {.lex_state = 16}, [3959] = {.lex_state = 15}, - [3960] = {.lex_state = 0}, + [3960] = {.lex_state = 15}, [3961] = {.lex_state = 15}, - [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 80}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 15}, - [3967] = {.lex_state = 0}, - [3968] = {.lex_state = 15}, + [3962] = {.lex_state = 7}, + [3963] = {.lex_state = 15}, + [3964] = {.lex_state = 15}, + [3965] = {.lex_state = 16}, + [3966] = {.lex_state = 38}, + [3967] = {.lex_state = 16}, + [3968] = {.lex_state = 38}, [3969] = {.lex_state = 15}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 0}, + [3970] = {.lex_state = 15}, + [3971] = {.lex_state = 15}, + [3972] = {.lex_state = 15}, [3973] = {.lex_state = 15}, [3974] = {.lex_state = 15}, [3975] = {.lex_state = 15}, [3976] = {.lex_state = 15}, [3977] = {.lex_state = 15}, - [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 0}, + [3978] = {.lex_state = 15}, + [3979] = {.lex_state = 38}, [3980] = {.lex_state = 15}, - [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 15}, - [3983] = {.lex_state = 0}, + [3981] = {.lex_state = 15}, + [3982] = {.lex_state = 38}, + [3983] = {.lex_state = 38}, [3984] = {.lex_state = 15}, [3985] = {.lex_state = 15}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 40}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 40}, - [3990] = {.lex_state = 40}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 40}, - [3993] = {.lex_state = 40}, - [3994] = {.lex_state = 40}, - [3995] = {.lex_state = 15}, - [3996] = {.lex_state = 15}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 15}, - [3999] = {.lex_state = 15}, + [3986] = {.lex_state = 15}, + [3987] = {.lex_state = 7}, + [3988] = {.lex_state = 15}, + [3989] = {.lex_state = 15}, + [3990] = {.lex_state = 15}, + [3991] = {.lex_state = 15}, + [3992] = {.lex_state = 15}, + [3993] = {.lex_state = 15}, + [3994] = {.lex_state = 16}, + [3995] = {.lex_state = 16}, + [3996] = {.lex_state = 0}, + [3997] = {.lex_state = 15}, + [3998] = {.lex_state = 16}, + [3999] = {.lex_state = 16}, [4000] = {.lex_state = 15}, - [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 0}, + [4001] = {.lex_state = 15}, + [4002] = {.lex_state = 38}, + [4003] = {.lex_state = 15}, + [4004] = {.lex_state = 15}, [4005] = {.lex_state = 15}, - [4006] = {.lex_state = 0}, - [4007] = {.lex_state = 15}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 0}, - [4012] = {.lex_state = 15}, - [4013] = {.lex_state = 0}, + [4006] = {.lex_state = 15}, + [4007] = {.lex_state = 38}, + [4008] = {.lex_state = 15}, + [4009] = {.lex_state = 7}, + [4010] = {.lex_state = 15}, + [4011] = {.lex_state = 16}, + [4012] = {.lex_state = 38}, + [4013] = {.lex_state = 15}, [4014] = {.lex_state = 15}, - [4015] = {.lex_state = 0}, + [4015] = {.lex_state = 15}, [4016] = {.lex_state = 15}, - [4017] = {.lex_state = 0}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 23}, + [4017] = {.lex_state = 15}, + [4018] = {.lex_state = 15}, + [4019] = {.lex_state = 15}, [4020] = {.lex_state = 15}, [4021] = {.lex_state = 15}, - [4022] = {.lex_state = 40}, + [4022] = {.lex_state = 15}, [4023] = {.lex_state = 15}, [4024] = {.lex_state = 15}, - [4025] = {.lex_state = 15}, - [4026] = {.lex_state = 23}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 0}, [4027] = {.lex_state = 15}, [4028] = {.lex_state = 15}, - [4029] = {.lex_state = 0}, + [4029] = {.lex_state = 15}, [4030] = {.lex_state = 15}, [4031] = {.lex_state = 15}, [4032] = {.lex_state = 0}, @@ -16808,108 +16972,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4037] = {.lex_state = 15}, [4038] = {.lex_state = 15}, [4039] = {.lex_state = 15}, - [4040] = {.lex_state = 15}, + [4040] = {.lex_state = 0}, [4041] = {.lex_state = 15}, - [4042] = {.lex_state = 23}, - [4043] = {.lex_state = 15}, + [4042] = {.lex_state = 15}, + [4043] = {.lex_state = 0}, [4044] = {.lex_state = 15}, - [4045] = {.lex_state = 0}, - [4046] = {.lex_state = 15}, + [4045] = {.lex_state = 15}, + [4046] = {.lex_state = 81}, [4047] = {.lex_state = 15}, - [4048] = {.lex_state = 15}, - [4049] = {.lex_state = 23}, - [4050] = {.lex_state = 0, .external_lex_state = 3}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 0}, + [4050] = {.lex_state = 15}, [4051] = {.lex_state = 15}, [4052] = {.lex_state = 15}, [4053] = {.lex_state = 15}, [4054] = {.lex_state = 15}, - [4055] = {.lex_state = 15}, + [4055] = {.lex_state = 0}, [4056] = {.lex_state = 15}, - [4057] = {.lex_state = 40}, - [4058] = {.lex_state = 15}, - [4059] = {.lex_state = 23}, - [4060] = {.lex_state = 15}, - [4061] = {.lex_state = 15}, - [4062] = {.lex_state = 15}, - [4063] = {.lex_state = 15}, - [4064] = {.lex_state = 23}, - [4065] = {.lex_state = 40}, + [4057] = {.lex_state = 15}, + [4058] = {.lex_state = 40}, + [4059] = {.lex_state = 0}, + [4060] = {.lex_state = 0}, + [4061] = {.lex_state = 0}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 23}, + [4064] = {.lex_state = 0}, + [4065] = {.lex_state = 15}, [4066] = {.lex_state = 15}, [4067] = {.lex_state = 15}, [4068] = {.lex_state = 15}, - [4069] = {.lex_state = 15}, + [4069] = {.lex_state = 40}, [4070] = {.lex_state = 15}, - [4071] = {.lex_state = 15}, - [4072] = {.lex_state = 15}, + [4071] = {.lex_state = 40}, + [4072] = {.lex_state = 0}, [4073] = {.lex_state = 15}, [4074] = {.lex_state = 15}, - [4075] = {.lex_state = 7}, + [4075] = {.lex_state = 0}, [4076] = {.lex_state = 15}, - [4077] = {.lex_state = 15}, + [4077] = {.lex_state = 40}, [4078] = {.lex_state = 15}, [4079] = {.lex_state = 15}, - [4080] = {.lex_state = 7}, + [4080] = {.lex_state = 40}, [4081] = {.lex_state = 15}, [4082] = {.lex_state = 15}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 7}, - [4085] = {.lex_state = 15}, - [4086] = {.lex_state = 15}, - [4087] = {.lex_state = 7}, + [4083] = {.lex_state = 15}, + [4084] = {.lex_state = 23}, + [4085] = {.lex_state = 0}, + [4086] = {.lex_state = 23}, + [4087] = {.lex_state = 40}, [4088] = {.lex_state = 15}, - [4089] = {.lex_state = 15}, + [4089] = {.lex_state = 0}, [4090] = {.lex_state = 15}, [4091] = {.lex_state = 15}, - [4092] = {.lex_state = 15}, - [4093] = {.lex_state = 15}, - [4094] = {.lex_state = 15}, - [4095] = {.lex_state = 7}, - [4096] = {.lex_state = 15}, + [4092] = {.lex_state = 0}, + [4093] = {.lex_state = 0}, + [4094] = {.lex_state = 0}, + [4095] = {.lex_state = 40}, + [4096] = {.lex_state = 0}, [4097] = {.lex_state = 15}, - [4098] = {.lex_state = 15}, - [4099] = {.lex_state = 15}, + [4098] = {.lex_state = 0}, + [4099] = {.lex_state = 40}, [4100] = {.lex_state = 15}, - [4101] = {.lex_state = 15}, + [4101] = {.lex_state = 0}, [4102] = {.lex_state = 15}, - [4103] = {.lex_state = 15}, + [4103] = {.lex_state = 23}, [4104] = {.lex_state = 15}, [4105] = {.lex_state = 15}, [4106] = {.lex_state = 15}, [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 15}, + [4108] = {.lex_state = 0}, [4109] = {.lex_state = 15}, - [4110] = {.lex_state = 15}, + [4110] = {.lex_state = 0}, [4111] = {.lex_state = 15}, [4112] = {.lex_state = 15}, - [4113] = {.lex_state = 15}, - [4114] = {.lex_state = 15}, + [4113] = {.lex_state = 0}, + [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 15}, - [4117] = {.lex_state = 15}, - [4118] = {.lex_state = 15}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 16}, + [4116] = {.lex_state = 0}, + [4117] = {.lex_state = 23}, + [4118] = {.lex_state = 40}, + [4119] = {.lex_state = 15}, + [4120] = {.lex_state = 15}, [4121] = {.lex_state = 15}, - [4122] = {.lex_state = 15}, - [4123] = {.lex_state = 0}, + [4122] = {.lex_state = 0}, + [4123] = {.lex_state = 15}, [4124] = {.lex_state = 15}, [4125] = {.lex_state = 0}, [4126] = {.lex_state = 15}, [4127] = {.lex_state = 15}, - [4128] = {.lex_state = 15}, - [4129] = {.lex_state = 15}, - [4130] = {.lex_state = 15}, + [4128] = {.lex_state = 0}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 23}, [4131] = {.lex_state = 15}, [4132] = {.lex_state = 15}, - [4133] = {.lex_state = 15}, + [4133] = {.lex_state = 23}, [4134] = {.lex_state = 15}, [4135] = {.lex_state = 15}, - [4136] = {.lex_state = 15}, - [4137] = {.lex_state = 7}, + [4136] = {.lex_state = 0}, + [4137] = {.lex_state = 0}, [4138] = {.lex_state = 15}, - [4139] = {.lex_state = 15}, - [4140] = {.lex_state = 15}, - [4141] = {.lex_state = 15}, + [4139] = {.lex_state = 0, .external_lex_state = 3}, + [4140] = {.lex_state = 0}, + [4141] = {.lex_state = 23}, [4142] = {.lex_state = 15}, [4143] = {.lex_state = 15}, [4144] = {.lex_state = 15}, @@ -16920,20 +17084,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4149] = {.lex_state = 15}, [4150] = {.lex_state = 15}, [4151] = {.lex_state = 15}, - [4152] = {.lex_state = 15}, + [4152] = {.lex_state = 0}, [4153] = {.lex_state = 15}, [4154] = {.lex_state = 15}, [4155] = {.lex_state = 15}, [4156] = {.lex_state = 15}, - [4157] = {.lex_state = 16}, - [4158] = {.lex_state = 0}, + [4157] = {.lex_state = 15}, + [4158] = {.lex_state = 15}, [4159] = {.lex_state = 15}, [4160] = {.lex_state = 15}, [4161] = {.lex_state = 15}, [4162] = {.lex_state = 15}, [4163] = {.lex_state = 15}, [4164] = {.lex_state = 15}, - [4165] = {.lex_state = 15}, + [4165] = {.lex_state = 0}, [4166] = {.lex_state = 15}, [4167] = {.lex_state = 15}, [4168] = {.lex_state = 15}, @@ -16947,11 +17111,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4176] = {.lex_state = 15}, [4177] = {.lex_state = 15}, [4178] = {.lex_state = 15}, - [4179] = {.lex_state = 16}, + [4179] = {.lex_state = 15}, [4180] = {.lex_state = 15}, [4181] = {.lex_state = 15}, [4182] = {.lex_state = 15}, - [4183] = {.lex_state = 0}, + [4183] = {.lex_state = 15}, [4184] = {.lex_state = 15}, [4185] = {.lex_state = 15}, [4186] = {.lex_state = 15}, @@ -16965,22 +17129,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4194] = {.lex_state = 15}, [4195] = {.lex_state = 15}, [4196] = {.lex_state = 15}, - [4197] = {.lex_state = 15}, - [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 0}, + [4197] = {.lex_state = 7}, + [4198] = {.lex_state = 15}, + [4199] = {.lex_state = 15}, [4200] = {.lex_state = 15}, [4201] = {.lex_state = 15}, [4202] = {.lex_state = 15}, [4203] = {.lex_state = 15}, - [4204] = {.lex_state = 15}, + [4204] = {.lex_state = 0}, [4205] = {.lex_state = 15}, [4206] = {.lex_state = 15}, - [4207] = {.lex_state = 15}, + [4207] = {.lex_state = 7}, [4208] = {.lex_state = 15}, - [4209] = {.lex_state = 0}, + [4209] = {.lex_state = 15}, [4210] = {.lex_state = 15}, [4211] = {.lex_state = 15}, - [4212] = {.lex_state = 7}, + [4212] = {.lex_state = 15}, [4213] = {.lex_state = 15}, [4214] = {.lex_state = 15}, [4215] = {.lex_state = 15}, @@ -16990,13 +17154,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4219] = {.lex_state = 15}, [4220] = {.lex_state = 15}, [4221] = {.lex_state = 15}, - [4222] = {.lex_state = 7}, + [4222] = {.lex_state = 15}, [4223] = {.lex_state = 15}, [4224] = {.lex_state = 15}, [4225] = {.lex_state = 15}, [4226] = {.lex_state = 15}, [4227] = {.lex_state = 15}, - [4228] = {.lex_state = 16}, + [4228] = {.lex_state = 15}, [4229] = {.lex_state = 15}, [4230] = {.lex_state = 15}, [4231] = {.lex_state = 15}, @@ -17026,8 +17190,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4255] = {.lex_state = 15}, [4256] = {.lex_state = 15}, [4257] = {.lex_state = 15}, - [4258] = {.lex_state = 15}, - [4259] = {.lex_state = 15}, + [4258] = {.lex_state = 7}, + [4259] = {.lex_state = 7}, [4260] = {.lex_state = 15}, [4261] = {.lex_state = 15}, [4262] = {.lex_state = 15}, @@ -17066,20 +17230,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4295] = {.lex_state = 15}, [4296] = {.lex_state = 15}, [4297] = {.lex_state = 15}, - [4298] = {.lex_state = 15}, - [4299] = {.lex_state = 15}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 7}, [4300] = {.lex_state = 15}, [4301] = {.lex_state = 15}, [4302] = {.lex_state = 15}, [4303] = {.lex_state = 15}, [4304] = {.lex_state = 15}, - [4305] = {.lex_state = 7}, + [4305] = {.lex_state = 15}, [4306] = {.lex_state = 15}, [4307] = {.lex_state = 15}, [4308] = {.lex_state = 15}, [4309] = {.lex_state = 15}, [4310] = {.lex_state = 15}, - [4311] = {.lex_state = 7}, + [4311] = {.lex_state = 15}, [4312] = {.lex_state = 15}, [4313] = {.lex_state = 15}, [4314] = {.lex_state = 15}, @@ -17089,10 +17253,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4318] = {.lex_state = 15}, [4319] = {.lex_state = 15}, [4320] = {.lex_state = 15}, - [4321] = {.lex_state = 15}, + [4321] = {.lex_state = 16}, [4322] = {.lex_state = 15}, [4323] = {.lex_state = 15}, - [4324] = {.lex_state = 7}, + [4324] = {.lex_state = 15}, [4325] = {.lex_state = 15}, [4326] = {.lex_state = 15}, [4327] = {.lex_state = 15}, @@ -17108,12 +17272,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4337] = {.lex_state = 15}, [4338] = {.lex_state = 15}, [4339] = {.lex_state = 15}, - [4340] = {.lex_state = 15}, + [4340] = {.lex_state = 7}, [4341] = {.lex_state = 15}, - [4342] = {.lex_state = 7}, + [4342] = {.lex_state = 15}, [4343] = {.lex_state = 15}, [4344] = {.lex_state = 15}, - [4345] = {.lex_state = 15}, + [4345] = {.lex_state = 0}, [4346] = {.lex_state = 15}, [4347] = {.lex_state = 15}, [4348] = {.lex_state = 15}, @@ -17125,16 +17289,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4354] = {.lex_state = 15}, [4355] = {.lex_state = 15}, [4356] = {.lex_state = 15}, - [4357] = {.lex_state = 15}, - [4358] = {.lex_state = 15}, + [4357] = {.lex_state = 16}, + [4358] = {.lex_state = 0}, [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 = 15}, - [4366] = {.lex_state = 15}, + [4365] = {.lex_state = 7}, + [4366] = {.lex_state = 0}, [4367] = {.lex_state = 15}, [4368] = {.lex_state = 15}, [4369] = {.lex_state = 15}, @@ -17145,677 +17309,677 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4374] = {.lex_state = 15}, [4375] = {.lex_state = 15}, [4376] = {.lex_state = 15}, - [4377] = {.lex_state = 7}, - [4378] = {.lex_state = 0}, + [4377] = {.lex_state = 0}, + [4378] = {.lex_state = 15}, [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, + [4380] = {.lex_state = 15}, [4381] = {.lex_state = 15}, - [4382] = {.lex_state = 80}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 0}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 0}, - [4392] = {.lex_state = 0}, + [4382] = {.lex_state = 15}, + [4383] = {.lex_state = 15}, + [4384] = {.lex_state = 15}, + [4385] = {.lex_state = 15}, + [4386] = {.lex_state = 15}, + [4387] = {.lex_state = 15}, + [4388] = {.lex_state = 15}, + [4389] = {.lex_state = 15}, + [4390] = {.lex_state = 15}, + [4391] = {.lex_state = 15}, + [4392] = {.lex_state = 15}, [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 0}, - [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 0}, + [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}, + [4401] = {.lex_state = 15}, + [4402] = {.lex_state = 15}, + [4403] = {.lex_state = 15}, [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 80}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, + [4405] = {.lex_state = 16}, + [4406] = {.lex_state = 15}, + [4407] = {.lex_state = 15}, + [4408] = {.lex_state = 15}, + [4409] = {.lex_state = 15}, + [4410] = {.lex_state = 15}, + [4411] = {.lex_state = 15}, + [4412] = {.lex_state = 15}, + [4413] = {.lex_state = 15}, + [4414] = {.lex_state = 15}, + [4415] = {.lex_state = 15}, [4416] = {.lex_state = 0}, [4417] = {.lex_state = 15}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 80}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 80}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 80}, - [4452] = {.lex_state = 0}, + [4418] = {.lex_state = 15}, + [4419] = {.lex_state = 15}, + [4420] = {.lex_state = 15}, + [4421] = {.lex_state = 15}, + [4422] = {.lex_state = 7}, + [4423] = {.lex_state = 15}, + [4424] = {.lex_state = 15}, + [4425] = {.lex_state = 15}, + [4426] = {.lex_state = 15}, + [4427] = {.lex_state = 7}, + [4428] = {.lex_state = 15}, + [4429] = {.lex_state = 15}, + [4430] = {.lex_state = 15}, + [4431] = {.lex_state = 15}, + [4432] = {.lex_state = 7}, + [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}, + [4440] = {.lex_state = 15}, + [4441] = {.lex_state = 15}, + [4442] = {.lex_state = 15}, + [4443] = {.lex_state = 15}, + [4444] = {.lex_state = 15}, + [4445] = {.lex_state = 15}, + [4446] = {.lex_state = 15}, + [4447] = {.lex_state = 15}, + [4448] = {.lex_state = 15}, + [4449] = {.lex_state = 7}, + [4450] = {.lex_state = 15}, + [4451] = {.lex_state = 15}, + [4452] = {.lex_state = 15}, [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, + [4454] = {.lex_state = 15}, + [4455] = {.lex_state = 15}, + [4456] = {.lex_state = 15}, + [4457] = {.lex_state = 15}, + [4458] = {.lex_state = 15}, [4459] = {.lex_state = 15}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 0}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 0}, - [4476] = {.lex_state = 80}, + [4460] = {.lex_state = 15}, + [4461] = {.lex_state = 15}, + [4462] = {.lex_state = 15}, + [4463] = {.lex_state = 15}, + [4464] = {.lex_state = 15}, + [4465] = {.lex_state = 15}, + [4466] = {.lex_state = 15}, + [4467] = {.lex_state = 15}, + [4468] = {.lex_state = 15}, + [4469] = {.lex_state = 15}, + [4470] = {.lex_state = 15}, + [4471] = {.lex_state = 15}, + [4472] = {.lex_state = 15}, + [4473] = {.lex_state = 15}, + [4474] = {.lex_state = 15}, + [4475] = {.lex_state = 15}, + [4476] = {.lex_state = 0}, [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 0}, - [4481] = {.lex_state = 0}, + [4478] = {.lex_state = 15}, + [4479] = {.lex_state = 15}, + [4480] = {.lex_state = 15}, + [4481] = {.lex_state = 15}, [4482] = {.lex_state = 0}, [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 15}, - [4485] = {.lex_state = 0}, + [4484] = {.lex_state = 0}, + [4485] = {.lex_state = 15}, [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 0}, + [4487] = {.lex_state = 15}, + [4488] = {.lex_state = 15}, + [4489] = {.lex_state = 15}, + [4490] = {.lex_state = 15}, [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 0}, + [4492] = {.lex_state = 15}, + [4493] = {.lex_state = 15}, + [4494] = {.lex_state = 15}, [4495] = {.lex_state = 0}, [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 0}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 126}, - [4502] = {.lex_state = 0}, - [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 0}, - [4506] = {.lex_state = 80}, + [4497] = {.lex_state = 15}, + [4498] = {.lex_state = 15}, + [4499] = {.lex_state = 15}, + [4500] = {.lex_state = 15}, + [4501] = {.lex_state = 15}, + [4502] = {.lex_state = 15}, + [4503] = {.lex_state = 15}, + [4504] = {.lex_state = 15}, + [4505] = {.lex_state = 15}, + [4506] = {.lex_state = 15}, [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 0}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, + [4509] = {.lex_state = 15}, + [4510] = {.lex_state = 15}, + [4511] = {.lex_state = 15}, + [4512] = {.lex_state = 15}, + [4513] = {.lex_state = 15}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 0}, + [4517] = {.lex_state = 15}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 80}, - [4520] = {.lex_state = 0}, + [4519] = {.lex_state = 0}, + [4520] = {.lex_state = 15}, [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 0}, + [4522] = {.lex_state = 15}, [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 0}, + [4524] = {.lex_state = 15}, [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 80}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, + [4526] = {.lex_state = 0}, + [4527] = {.lex_state = 15}, + [4528] = {.lex_state = 15}, + [4529] = {.lex_state = 15}, [4530] = {.lex_state = 0}, - [4531] = {.lex_state = 0}, + [4531] = {.lex_state = 15}, [4532] = {.lex_state = 0}, [4533] = {.lex_state = 0}, [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 0}, + [4535] = {.lex_state = 15}, + [4536] = {.lex_state = 15}, [4537] = {.lex_state = 0}, [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 0}, + [4539] = {.lex_state = 15}, [4540] = {.lex_state = 0}, [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 7}, - [4543] = {.lex_state = 7}, + [4542] = {.lex_state = 0}, + [4543] = {.lex_state = 15}, [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 7}, - [4546] = {.lex_state = 7}, - [4547] = {.lex_state = 7}, - [4548] = {.lex_state = 80}, - [4549] = {.lex_state = 7}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 7}, + [4545] = {.lex_state = 0}, + [4546] = {.lex_state = 0}, + [4547] = {.lex_state = 0}, + [4548] = {.lex_state = 15}, + [4549] = {.lex_state = 0}, + [4550] = {.lex_state = 15}, + [4551] = {.lex_state = 0}, [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 0}, + [4554] = {.lex_state = 15}, [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 0}, - [4557] = {.lex_state = 80}, - [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 7}, - [4560] = {.lex_state = 7}, - [4561] = {.lex_state = 7}, - [4562] = {.lex_state = 7}, - [4563] = {.lex_state = 7}, - [4564] = {.lex_state = 7}, + [4556] = {.lex_state = 15}, + [4557] = {.lex_state = 15}, + [4558] = {.lex_state = 15}, + [4559] = {.lex_state = 0}, + [4560] = {.lex_state = 15}, + [4561] = {.lex_state = 0}, + [4562] = {.lex_state = 15}, + [4563] = {.lex_state = 15}, + [4564] = {.lex_state = 15}, [4565] = {.lex_state = 0}, [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 7}, + [4567] = {.lex_state = 0}, [4568] = {.lex_state = 0}, [4569] = {.lex_state = 0}, [4570] = {.lex_state = 0}, - [4571] = {.lex_state = 0}, + [4571] = {.lex_state = 15}, [4572] = {.lex_state = 0}, - [4573] = {.lex_state = 0}, + [4573] = {.lex_state = 81}, [4574] = {.lex_state = 0}, [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 0}, + [4576] = {.lex_state = 15}, [4577] = {.lex_state = 0}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 0}, + [4579] = {.lex_state = 15}, [4580] = {.lex_state = 0}, [4581] = {.lex_state = 0}, [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 7}, - [4584] = {.lex_state = 7}, - [4585] = {.lex_state = 7}, - [4586] = {.lex_state = 7}, + [4583] = {.lex_state = 0}, + [4584] = {.lex_state = 15}, + [4585] = {.lex_state = 15}, + [4586] = {.lex_state = 0}, [4587] = {.lex_state = 0}, - [4588] = {.lex_state = 0}, + [4588] = {.lex_state = 15}, [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 7}, - [4591] = {.lex_state = 7}, + [4590] = {.lex_state = 0}, + [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 7}, - [4594] = {.lex_state = 80}, - [4595] = {.lex_state = 0}, + [4593] = {.lex_state = 15}, + [4594] = {.lex_state = 0}, + [4595] = {.lex_state = 15}, [4596] = {.lex_state = 0}, - [4597] = {.lex_state = 0}, + [4597] = {.lex_state = 15}, [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, + [4599] = {.lex_state = 81}, + [4600] = {.lex_state = 15}, + [4601] = {.lex_state = 15}, [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, + [4603] = {.lex_state = 15}, + [4604] = {.lex_state = 81}, [4605] = {.lex_state = 15}, [4606] = {.lex_state = 15}, - [4607] = {.lex_state = 15}, - [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 15}, + [4607] = {.lex_state = 0}, + [4608] = {.lex_state = 15}, + [4609] = {.lex_state = 0}, [4610] = {.lex_state = 15}, - [4611] = {.lex_state = 7}, - [4612] = {.lex_state = 7}, - [4613] = {.lex_state = 15}, + [4611] = {.lex_state = 15}, + [4612] = {.lex_state = 0}, + [4613] = {.lex_state = 0}, [4614] = {.lex_state = 15}, [4615] = {.lex_state = 15}, - [4616] = {.lex_state = 7}, - [4617] = {.lex_state = 7}, - [4618] = {.lex_state = 7}, - [4619] = {.lex_state = 7}, + [4616] = {.lex_state = 0}, + [4617] = {.lex_state = 15}, + [4618] = {.lex_state = 15}, + [4619] = {.lex_state = 0}, [4620] = {.lex_state = 15}, [4621] = {.lex_state = 0}, [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 15}, + [4623] = {.lex_state = 81}, [4624] = {.lex_state = 15}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 15}, + [4625] = {.lex_state = 15}, + [4626] = {.lex_state = 0}, [4627] = {.lex_state = 0}, [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 7}, - [4630] = {.lex_state = 15}, - [4631] = {.lex_state = 15}, - [4632] = {.lex_state = 15}, - [4633] = {.lex_state = 15}, - [4634] = {.lex_state = 15}, + [4629] = {.lex_state = 0}, + [4630] = {.lex_state = 0}, + [4631] = {.lex_state = 0}, + [4632] = {.lex_state = 0}, + [4633] = {.lex_state = 0}, + [4634] = {.lex_state = 0}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 15}, - [4637] = {.lex_state = 15}, + [4636] = {.lex_state = 0}, + [4637] = {.lex_state = 0}, [4638] = {.lex_state = 0}, [4639] = {.lex_state = 15}, - [4640] = {.lex_state = 15}, - [4641] = {.lex_state = 15}, + [4640] = {.lex_state = 0}, + [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, + [4643] = {.lex_state = 15}, + [4644] = {.lex_state = 15}, [4645] = {.lex_state = 0}, [4646] = {.lex_state = 0}, [4647] = {.lex_state = 15}, [4648] = {.lex_state = 15}, [4649] = {.lex_state = 15}, [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 15}, - [4652] = {.lex_state = 0}, + [4651] = {.lex_state = 0}, + [4652] = {.lex_state = 15}, [4653] = {.lex_state = 0}, [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 15}, + [4655] = {.lex_state = 0}, [4656] = {.lex_state = 15}, - [4657] = {.lex_state = 0}, + [4657] = {.lex_state = 15}, [4658] = {.lex_state = 0}, - [4659] = {.lex_state = 15}, + [4659] = {.lex_state = 0}, [4660] = {.lex_state = 15}, - [4661] = {.lex_state = 15}, - [4662] = {.lex_state = 7}, - [4663] = {.lex_state = 7}, - [4664] = {.lex_state = 7}, - [4665] = {.lex_state = 0}, + [4661] = {.lex_state = 0}, + [4662] = {.lex_state = 15}, + [4663] = {.lex_state = 15}, + [4664] = {.lex_state = 0}, + [4665] = {.lex_state = 15}, [4666] = {.lex_state = 15}, - [4667] = {.lex_state = 7}, - [4668] = {.lex_state = 7}, + [4667] = {.lex_state = 0}, + [4668] = {.lex_state = 0}, [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 7}, - [4671] = {.lex_state = 7}, + [4670] = {.lex_state = 0}, + [4671] = {.lex_state = 0}, [4672] = {.lex_state = 0}, [4673] = {.lex_state = 0}, [4674] = {.lex_state = 15}, - [4675] = {.lex_state = 15}, - [4676] = {.lex_state = 15}, - [4677] = {.lex_state = 15}, + [4675] = {.lex_state = 0}, + [4676] = {.lex_state = 0}, + [4677] = {.lex_state = 0}, [4678] = {.lex_state = 0}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 15}, [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 0}, + [4682] = {.lex_state = 15}, [4683] = {.lex_state = 0}, [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 15}, + [4685] = {.lex_state = 0}, [4686] = {.lex_state = 15}, - [4687] = {.lex_state = 15}, - [4688] = {.lex_state = 15}, + [4687] = {.lex_state = 0}, + [4688] = {.lex_state = 0}, [4689] = {.lex_state = 15}, [4690] = {.lex_state = 15}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, + [4691] = {.lex_state = 15}, + [4692] = {.lex_state = 15}, [4693] = {.lex_state = 15}, - [4694] = {.lex_state = 0}, + [4694] = {.lex_state = 15}, [4695] = {.lex_state = 15}, [4696] = {.lex_state = 15}, [4697] = {.lex_state = 15}, [4698] = {.lex_state = 15}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 15}, + [4699] = {.lex_state = 15}, + [4700] = {.lex_state = 0}, [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 80}, - [4703] = {.lex_state = 0}, + [4702] = {.lex_state = 15}, + [4703] = {.lex_state = 15}, [4704] = {.lex_state = 15}, [4705] = {.lex_state = 0}, [4706] = {.lex_state = 15}, [4707] = {.lex_state = 0}, [4708] = {.lex_state = 0}, - [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 15}, - [4711] = {.lex_state = 7}, - [4712] = {.lex_state = 7}, - [4713] = {.lex_state = 80}, - [4714] = {.lex_state = 15}, + [4709] = {.lex_state = 15}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 0}, + [4712] = {.lex_state = 0}, + [4713] = {.lex_state = 0}, + [4714] = {.lex_state = 0}, [4715] = {.lex_state = 15}, - [4716] = {.lex_state = 7}, - [4717] = {.lex_state = 7}, - [4718] = {.lex_state = 15}, - [4719] = {.lex_state = 7}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 15}, - [4722] = {.lex_state = 7}, - [4723] = {.lex_state = 15}, - [4724] = {.lex_state = 0}, + [4716] = {.lex_state = 15}, + [4717] = {.lex_state = 0}, + [4718] = {.lex_state = 0}, + [4719] = {.lex_state = 81}, + [4720] = {.lex_state = 15}, + [4721] = {.lex_state = 0}, + [4722] = {.lex_state = 0}, + [4723] = {.lex_state = 0}, + [4724] = {.lex_state = 15}, [4725] = {.lex_state = 15}, [4726] = {.lex_state = 15}, [4727] = {.lex_state = 15}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 0}, + [4728] = {.lex_state = 15}, + [4729] = {.lex_state = 15}, + [4730] = {.lex_state = 15}, + [4731] = {.lex_state = 15}, [4732] = {.lex_state = 15}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 15}, - [4735] = {.lex_state = 0}, + [4733] = {.lex_state = 15}, + [4734] = {.lex_state = 0}, + [4735] = {.lex_state = 15}, [4736] = {.lex_state = 15}, - [4737] = {.lex_state = 0}, + [4737] = {.lex_state = 15}, [4738] = {.lex_state = 15}, - [4739] = {.lex_state = 7}, + [4739] = {.lex_state = 0}, [4740] = {.lex_state = 15}, - [4741] = {.lex_state = 15}, - [4742] = {.lex_state = 15}, - [4743] = {.lex_state = 80}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 0}, + [4743] = {.lex_state = 15}, [4744] = {.lex_state = 15}, - [4745] = {.lex_state = 0}, - [4746] = {.lex_state = 0}, - [4747] = {.lex_state = 0}, + [4745] = {.lex_state = 15}, + [4746] = {.lex_state = 15}, + [4747] = {.lex_state = 15}, [4748] = {.lex_state = 0}, [4749] = {.lex_state = 0}, [4750] = {.lex_state = 15}, [4751] = {.lex_state = 0}, - [4752] = {.lex_state = 15}, - [4753] = {.lex_state = 0}, + [4752] = {.lex_state = 0}, + [4753] = {.lex_state = 15}, [4754] = {.lex_state = 15}, [4755] = {.lex_state = 0}, - [4756] = {.lex_state = 15}, + [4756] = {.lex_state = 0}, [4757] = {.lex_state = 15}, [4758] = {.lex_state = 0}, [4759] = {.lex_state = 0}, - [4760] = {.lex_state = 15}, - [4761] = {.lex_state = 0}, + [4760] = {.lex_state = 0}, + [4761] = {.lex_state = 15}, [4762] = {.lex_state = 15}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 0}, + [4764] = {.lex_state = 81}, [4765] = {.lex_state = 15}, - [4766] = {.lex_state = 0}, - [4767] = {.lex_state = 15}, - [4768] = {.lex_state = 0}, - [4769] = {.lex_state = 15}, + [4766] = {.lex_state = 15}, + [4767] = {.lex_state = 0}, + [4768] = {.lex_state = 15}, + [4769] = {.lex_state = 0}, [4770] = {.lex_state = 0}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 0}, - [4773] = {.lex_state = 0}, + [4771] = {.lex_state = 15}, + [4772] = {.lex_state = 15}, + [4773] = {.lex_state = 15}, [4774] = {.lex_state = 15}, [4775] = {.lex_state = 15}, [4776] = {.lex_state = 15}, [4777] = {.lex_state = 15}, - [4778] = {.lex_state = 15}, - [4779] = {.lex_state = 15}, - [4780] = {.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 = 0}, - [4784] = {.lex_state = 0}, - [4785] = {.lex_state = 80}, - [4786] = {.lex_state = 80}, - [4787] = {.lex_state = 0}, + [4783] = {.lex_state = 15}, + [4784] = {.lex_state = 15}, + [4785] = {.lex_state = 15}, + [4786] = {.lex_state = 0}, + [4787] = {.lex_state = 15}, [4788] = {.lex_state = 0}, [4789] = {.lex_state = 15}, - [4790] = {.lex_state = 0}, + [4790] = {.lex_state = 15}, [4791] = {.lex_state = 15}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 15}, - [4794] = {.lex_state = 0}, - [4795] = {.lex_state = 15}, + [4792] = {.lex_state = 15}, + [4793] = {.lex_state = 0}, + [4794] = {.lex_state = 81}, + [4795] = {.lex_state = 0}, [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 80}, - [4799] = {.lex_state = 80}, - [4800] = {.lex_state = 15}, - [4801] = {.lex_state = 15}, - [4802] = {.lex_state = 15}, - [4803] = {.lex_state = 15}, - [4804] = {.lex_state = 15}, + [4797] = {.lex_state = 81}, + [4798] = {.lex_state = 7}, + [4799] = {.lex_state = 0}, + [4800] = {.lex_state = 7}, + [4801] = {.lex_state = 7}, + [4802] = {.lex_state = 7}, + [4803] = {.lex_state = 0}, + [4804] = {.lex_state = 7}, [4805] = {.lex_state = 0}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 15}, + [4806] = {.lex_state = 15}, + [4807] = {.lex_state = 7}, [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 15}, + [4809] = {.lex_state = 0}, [4810] = {.lex_state = 15}, - [4811] = {.lex_state = 15}, - [4812] = {.lex_state = 15}, - [4813] = {.lex_state = 15}, + [4811] = {.lex_state = 0}, + [4812] = {.lex_state = 0}, + [4813] = {.lex_state = 0}, [4814] = {.lex_state = 15}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 15}, - [4817] = {.lex_state = 15}, + [4815] = {.lex_state = 15}, + [4816] = {.lex_state = 7}, + [4817] = {.lex_state = 81}, [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 0}, + [4819] = {.lex_state = 15}, [4820] = {.lex_state = 15}, - [4821] = {.lex_state = 0}, - [4822] = {.lex_state = 80}, - [4823] = {.lex_state = 0}, + [4821] = {.lex_state = 7}, + [4822] = {.lex_state = 0}, + [4823] = {.lex_state = 15}, [4824] = {.lex_state = 15}, [4825] = {.lex_state = 0}, [4826] = {.lex_state = 15}, - [4827] = {.lex_state = 15}, - [4828] = {.lex_state = 15}, + [4827] = {.lex_state = 0}, + [4828] = {.lex_state = 0}, [4829] = {.lex_state = 0}, [4830] = {.lex_state = 0}, [4831] = {.lex_state = 0}, [4832] = {.lex_state = 0}, - [4833] = {.lex_state = 0}, - [4834] = {.lex_state = 15}, + [4833] = {.lex_state = 15}, + [4834] = {.lex_state = 0}, [4835] = {.lex_state = 0}, [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 15}, - [4838] = {.lex_state = 15}, + [4837] = {.lex_state = 7}, + [4838] = {.lex_state = 0}, [4839] = {.lex_state = 0}, - [4840] = {.lex_state = 15}, - [4841] = {.lex_state = 15}, - [4842] = {.lex_state = 15}, - [4843] = {.lex_state = 15}, - [4844] = {.lex_state = 15}, - [4845] = {.lex_state = 0}, - [4846] = {.lex_state = 15}, - [4847] = {.lex_state = 15}, - [4848] = {.lex_state = 0}, - [4849] = {.lex_state = 80}, - [4850] = {.lex_state = 15}, - [4851] = {.lex_state = 15}, - [4852] = {.lex_state = 15}, + [4840] = {.lex_state = 0}, + [4841] = {.lex_state = 0}, + [4842] = {.lex_state = 0}, + [4843] = {.lex_state = 7}, + [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}, + [4851] = {.lex_state = 7}, + [4852] = {.lex_state = 0}, [4853] = {.lex_state = 0}, [4854] = {.lex_state = 0}, [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 0}, - [4857] = {.lex_state = 15}, - [4858] = {.lex_state = 0}, + [4856] = {.lex_state = 81}, + [4857] = {.lex_state = 0}, + [4858] = {.lex_state = 7}, [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 15}, - [4861] = {.lex_state = 15}, - [4862] = {.lex_state = 80}, - [4863] = {.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}, - [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 15}, - [4868] = {.lex_state = 0}, - [4869] = {.lex_state = 15}, - [4870] = {.lex_state = 15}, - [4871] = {.lex_state = 15}, - [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 15}, - [4874] = {.lex_state = 15}, + [4866] = {.lex_state = 7}, + [4867] = {.lex_state = 0}, + [4868] = {.lex_state = 7}, + [4869] = {.lex_state = 0}, + [4870] = {.lex_state = 0}, + [4871] = {.lex_state = 0}, + [4872] = {.lex_state = 7}, + [4873] = {.lex_state = 7}, + [4874] = {.lex_state = 0}, [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 15}, - [4877] = {.lex_state = 15}, - [4878] = {.lex_state = 15}, + [4876] = {.lex_state = 0}, + [4877] = {.lex_state = 7}, + [4878] = {.lex_state = 0}, [4879] = {.lex_state = 0}, [4880] = {.lex_state = 0}, - [4881] = {.lex_state = 80}, + [4881] = {.lex_state = 0}, [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 80}, - [4884] = {.lex_state = 15}, - [4885] = {.lex_state = 15}, - [4886] = {.lex_state = 15}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 15}, + [4883] = {.lex_state = 0}, + [4884] = {.lex_state = 7}, + [4885] = {.lex_state = 7}, + [4886] = {.lex_state = 7}, + [4887] = {.lex_state = 7}, + [4888] = {.lex_state = 7}, [4889] = {.lex_state = 0}, - [4890] = {.lex_state = 0}, - [4891] = {.lex_state = 0}, - [4892] = {.lex_state = 15}, - [4893] = {.lex_state = 15}, - [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 0}, - [4896] = {.lex_state = 0}, - [4897] = {.lex_state = 15}, - [4898] = {.lex_state = 15}, + [4890] = {.lex_state = 7}, + [4891] = {.lex_state = 7}, + [4892] = {.lex_state = 7}, + [4893] = {.lex_state = 0}, + [4894] = {.lex_state = 15}, + [4895] = {.lex_state = 81}, + [4896] = {.lex_state = 15}, + [4897] = {.lex_state = 0}, + [4898] = {.lex_state = 0}, [4899] = {.lex_state = 0}, - [4900] = {.lex_state = 0}, + [4900] = {.lex_state = 12}, [4901] = {.lex_state = 0}, [4902] = {.lex_state = 0}, - [4903] = {.lex_state = 15}, - [4904] = {.lex_state = 15}, + [4903] = {.lex_state = 0}, + [4904] = {.lex_state = 7}, [4905] = {.lex_state = 0}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 80}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 0}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 15}, + [4906] = {.lex_state = 7}, + [4907] = {.lex_state = 7}, + [4908] = {.lex_state = 7}, + [4909] = {.lex_state = 7}, + [4910] = {.lex_state = 7}, + [4911] = {.lex_state = 0}, [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 80}, - [4914] = {.lex_state = 15}, - [4915] = {.lex_state = 15}, - [4916] = {.lex_state = 80}, - [4917] = {.lex_state = 15}, - [4918] = {.lex_state = 15}, - [4919] = {.lex_state = 80}, - [4920] = {.lex_state = 15}, - [4921] = {.lex_state = 15}, - [4922] = {.lex_state = 15}, - [4923] = {.lex_state = 15}, - [4924] = {.lex_state = 15}, - [4925] = {.lex_state = 15}, - [4926] = {.lex_state = 15}, - [4927] = {.lex_state = 15}, - [4928] = {.lex_state = 15}, - [4929] = {.lex_state = 15}, - [4930] = {.lex_state = 15}, + [4913] = {.lex_state = 7}, + [4914] = {.lex_state = 0}, + [4915] = {.lex_state = 0}, + [4916] = {.lex_state = 0}, + [4917] = {.lex_state = 0}, + [4918] = {.lex_state = 0}, + [4919] = {.lex_state = 0}, + [4920] = {.lex_state = 0}, + [4921] = {.lex_state = 0}, + [4922] = {.lex_state = 0}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 0}, + [4925] = {.lex_state = 0}, + [4926] = {.lex_state = 0}, + [4927] = {.lex_state = 7}, + [4928] = {.lex_state = 0}, + [4929] = {.lex_state = 0}, + [4930] = {.lex_state = 0}, [4931] = {.lex_state = 0}, [4932] = {.lex_state = 15}, - [4933] = {.lex_state = 0}, + [4933] = {.lex_state = 7}, [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 15}, - [4936] = {.lex_state = 0}, - [4937] = {.lex_state = 0}, + [4935] = {.lex_state = 7}, + [4936] = {.lex_state = 7}, + [4937] = {.lex_state = 7}, [4938] = {.lex_state = 0}, - [4939] = {.lex_state = 15}, - [4940] = {.lex_state = 0}, - [4941] = {.lex_state = 0}, + [4939] = {.lex_state = 7}, + [4940] = {.lex_state = 7}, + [4941] = {.lex_state = 7}, [4942] = {.lex_state = 0}, [4943] = {.lex_state = 0}, [4944] = {.lex_state = 0}, [4945] = {.lex_state = 0}, [4946] = {.lex_state = 0}, [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 0}, + [4948] = {.lex_state = 12}, [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 80}, + [4950] = {.lex_state = 15}, [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 0}, + [4952] = {.lex_state = 81}, [4953] = {.lex_state = 0}, [4954] = {.lex_state = 0}, [4955] = {.lex_state = 0}, [4956] = {.lex_state = 0}, [4957] = {.lex_state = 0}, [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 80}, + [4959] = {.lex_state = 0}, [4960] = {.lex_state = 0}, [4961] = {.lex_state = 0}, [4962] = {.lex_state = 0}, [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 80}, + [4964] = {.lex_state = 15}, [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 7}, + [4966] = {.lex_state = 0}, [4967] = {.lex_state = 0}, [4968] = {.lex_state = 0}, - [4969] = {.lex_state = 15}, - [4970] = {.lex_state = 80}, + [4969] = {.lex_state = 0}, + [4970] = {.lex_state = 0}, [4971] = {.lex_state = 0}, [4972] = {.lex_state = 0}, [4973] = {.lex_state = 0}, - [4974] = {.lex_state = 80}, - [4975] = {.lex_state = 15}, + [4974] = {.lex_state = 0}, + [4975] = {.lex_state = 0}, [4976] = {.lex_state = 0}, [4977] = {.lex_state = 0}, [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 0}, + [4979] = {.lex_state = 81}, [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 7}, + [4981] = {.lex_state = 0}, [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 80}, - [4984] = {.lex_state = 15}, - [4985] = {.lex_state = 0}, + [4983] = {.lex_state = 0}, + [4984] = {.lex_state = 0}, + [4985] = {.lex_state = 15}, [4986] = {.lex_state = 0}, [4987] = {.lex_state = 0}, [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 80}, - [4990] = {.lex_state = 80}, + [4989] = {.lex_state = 0}, + [4990] = {.lex_state = 0}, [4991] = {.lex_state = 0}, [4992] = {.lex_state = 0}, [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 80}, - [4996] = {.lex_state = 80}, - [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 7}, + [4994] = {.lex_state = 7}, + [4995] = {.lex_state = 0}, + [4996] = {.lex_state = 0}, + [4997] = {.lex_state = 81}, + [4998] = {.lex_state = 15}, [4999] = {.lex_state = 0}, [5000] = {.lex_state = 0}, [5001] = {.lex_state = 0}, - [5002] = {.lex_state = 80}, + [5002] = {.lex_state = 0}, [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 0}, + [5004] = {.lex_state = 81}, [5005] = {.lex_state = 0}, - [5006] = {.lex_state = 80}, + [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, [5008] = {.lex_state = 0}, [5009] = {.lex_state = 0}, [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 0}, + [5011] = {.lex_state = 81}, [5012] = {.lex_state = 0}, [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 80}, - [5015] = {.lex_state = 7}, + [5014] = {.lex_state = 0}, + [5015] = {.lex_state = 81}, [5016] = {.lex_state = 0}, [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 15}, - [5019] = {.lex_state = 0}, + [5018] = {.lex_state = 81}, + [5019] = {.lex_state = 81}, [5020] = {.lex_state = 0}, [5021] = {.lex_state = 0}, [5022] = {.lex_state = 0}, [5023] = {.lex_state = 0}, [5024] = {.lex_state = 0}, [5025] = {.lex_state = 0}, - [5026] = {.lex_state = 80}, - [5027] = {.lex_state = 0}, - [5028] = {.lex_state = 15}, - [5029] = {.lex_state = 80}, - [5030] = {.lex_state = 0}, - [5031] = {.lex_state = 15}, - [5032] = {.lex_state = 15}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 81}, + [5028] = {.lex_state = 0}, + [5029] = {.lex_state = 15}, + [5030] = {.lex_state = 81}, + [5031] = {.lex_state = 0}, + [5032] = {.lex_state = 0}, [5033] = {.lex_state = 0}, - [5034] = {.lex_state = 0}, + [5034] = {.lex_state = 15}, [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 12}, + [5036] = {.lex_state = 81}, [5037] = {.lex_state = 0}, - [5038] = {.lex_state = 0}, - [5039] = {.lex_state = 0}, - [5040] = {.lex_state = 80}, + [5038] = {.lex_state = 81}, + [5039] = {.lex_state = 15}, + [5040] = {.lex_state = 0}, [5041] = {.lex_state = 0}, [5042] = {.lex_state = 0}, [5043] = {.lex_state = 0}, [5044] = {.lex_state = 0}, [5045] = {.lex_state = 0}, [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 80}, + [5047] = {.lex_state = 0}, [5048] = {.lex_state = 0}, [5049] = {.lex_state = 0}, [5050] = {.lex_state = 0}, @@ -17825,36 +17989,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5054] = {.lex_state = 0}, [5055] = {.lex_state = 0}, [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 80}, - [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 80}, - [5060] = {.lex_state = 7}, + [5057] = {.lex_state = 0}, + [5058] = {.lex_state = 81}, + [5059] = {.lex_state = 0}, + [5060] = {.lex_state = 0}, [5061] = {.lex_state = 0}, [5062] = {.lex_state = 0}, [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 0}, + [5064] = {.lex_state = 81}, [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 15}, + [5066] = {.lex_state = 0}, [5067] = {.lex_state = 0}, - [5068] = {.lex_state = 80}, + [5068] = {.lex_state = 0}, [5069] = {.lex_state = 0}, - [5070] = {.lex_state = 15}, + [5070] = {.lex_state = 0}, [5071] = {.lex_state = 0}, [5072] = {.lex_state = 0}, - [5073] = {.lex_state = 0}, - [5074] = {.lex_state = 0}, + [5073] = {.lex_state = 81}, + [5074] = {.lex_state = 15}, [5075] = {.lex_state = 0}, [5076] = {.lex_state = 0}, [5077] = {.lex_state = 0}, [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 0}, - [5080] = {.lex_state = 80}, - [5081] = {.lex_state = 80}, + [5079] = {.lex_state = 81}, + [5080] = {.lex_state = 0}, + [5081] = {.lex_state = 0}, [5082] = {.lex_state = 0}, - [5083] = {.lex_state = 15}, - [5084] = {.lex_state = 15}, + [5083] = {.lex_state = 0}, + [5084] = {.lex_state = 81}, [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 7}, + [5086] = {.lex_state = 0}, [5087] = {.lex_state = 0}, [5088] = {.lex_state = 0}, [5089] = {.lex_state = 0}, @@ -17862,32 +18026,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5091] = {.lex_state = 0}, [5092] = {.lex_state = 0}, [5093] = {.lex_state = 0}, - [5094] = {.lex_state = 12}, + [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 15}, - [5097] = {.lex_state = 15}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 80}, - [5100] = {.lex_state = 80}, - [5101] = {.lex_state = 0}, + [5096] = {.lex_state = 81}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 15}, + [5099] = {.lex_state = 0}, + [5100] = {.lex_state = 0}, + [5101] = {.lex_state = 15}, [5102] = {.lex_state = 0}, [5103] = {.lex_state = 0}, [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 0}, + [5105] = {.lex_state = 81}, [5106] = {.lex_state = 0}, - [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 0}, + [5107] = {.lex_state = 81}, + [5108] = {.lex_state = 15}, [5109] = {.lex_state = 0}, [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 80}, + [5111] = {.lex_state = 0}, [5112] = {.lex_state = 0}, [5113] = {.lex_state = 0}, - [5114] = {.lex_state = 15}, + [5114] = {.lex_state = 0}, [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 15}, + [5116] = {.lex_state = 0}, [5117] = {.lex_state = 0}, [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 0}, + [5119] = {.lex_state = 81}, [5120] = {.lex_state = 0}, [5121] = {.lex_state = 0}, [5122] = {.lex_state = 0}, @@ -17900,117 +18064,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5129] = {.lex_state = 0}, [5130] = {.lex_state = 0}, [5131] = {.lex_state = 0}, - [5132] = {.lex_state = 80}, + [5132] = {.lex_state = 0}, [5133] = {.lex_state = 0}, [5134] = {.lex_state = 0}, - [5135] = {.lex_state = 0}, + [5135] = {.lex_state = 81}, [5136] = {.lex_state = 0}, - [5137] = {.lex_state = 0}, + [5137] = {.lex_state = 81}, [5138] = {.lex_state = 0}, - [5139] = {.lex_state = 80}, + [5139] = {.lex_state = 0}, [5140] = {.lex_state = 0}, [5141] = {.lex_state = 0}, - [5142] = {.lex_state = 0}, + [5142] = {.lex_state = 81}, [5143] = {.lex_state = 0}, [5144] = {.lex_state = 0}, [5145] = {.lex_state = 0}, - [5146] = {.lex_state = 16}, + [5146] = {.lex_state = 0}, [5147] = {.lex_state = 0}, [5148] = {.lex_state = 0}, - [5149] = {.lex_state = 0}, + [5149] = {.lex_state = 81}, [5150] = {.lex_state = 0}, [5151] = {.lex_state = 0}, [5152] = {.lex_state = 0}, [5153] = {.lex_state = 0}, - [5154] = {.lex_state = 15}, + [5154] = {.lex_state = 0}, [5155] = {.lex_state = 0}, - [5156] = {.lex_state = 15}, - [5157] = {.lex_state = 15}, + [5156] = {.lex_state = 0}, + [5157] = {.lex_state = 0}, [5158] = {.lex_state = 0}, [5159] = {.lex_state = 0}, [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 15}, - [5162] = {.lex_state = 15}, - [5163] = {.lex_state = 0}, + [5161] = {.lex_state = 0}, + [5162] = {.lex_state = 0}, + [5163] = {.lex_state = 81}, [5164] = {.lex_state = 0}, - [5165] = {.lex_state = 0}, + [5165] = {.lex_state = 15}, [5166] = {.lex_state = 0}, - [5167] = {.lex_state = 0}, - [5168] = {.lex_state = 15}, + [5167] = {.lex_state = 81}, + [5168] = {.lex_state = 0}, [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 15}, + [5170] = {.lex_state = 0}, [5171] = {.lex_state = 0}, - [5172] = {.lex_state = 15}, - [5173] = {.lex_state = 0}, - [5174] = {.lex_state = 15}, + [5172] = {.lex_state = 81}, + [5173] = {.lex_state = 15}, + [5174] = {.lex_state = 0}, [5175] = {.lex_state = 0}, [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 15}, - [5178] = {.lex_state = 15}, + [5177] = {.lex_state = 0}, + [5178] = {.lex_state = 134}, [5179] = {.lex_state = 0}, - [5180] = {.lex_state = 0}, + [5180] = {.lex_state = 81}, [5181] = {.lex_state = 0}, [5182] = {.lex_state = 0}, - [5183] = {.lex_state = 16}, + [5183] = {.lex_state = 0}, [5184] = {.lex_state = 0}, - [5185] = {.lex_state = 15}, - [5186] = {.lex_state = 0}, + [5185] = {.lex_state = 0}, + [5186] = {.lex_state = 81}, [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 16}, + [5188] = {.lex_state = 0}, [5189] = {.lex_state = 0}, [5190] = {.lex_state = 0}, [5191] = {.lex_state = 0}, [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 15}, - [5194] = {.lex_state = 15}, - [5195] = {.lex_state = 0}, + [5193] = {.lex_state = 81}, + [5194] = {.lex_state = 0}, + [5195] = {.lex_state = 81}, [5196] = {.lex_state = 0}, - [5197] = {.lex_state = 15}, + [5197] = {.lex_state = 0}, [5198] = {.lex_state = 0}, - [5199] = {.lex_state = 0}, + [5199] = {.lex_state = 81}, [5200] = {.lex_state = 0}, [5201] = {.lex_state = 0}, [5202] = {.lex_state = 0}, - [5203] = {.lex_state = 0}, - [5204] = {.lex_state = 0}, + [5203] = {.lex_state = 15}, + [5204] = {.lex_state = 81}, [5205] = {.lex_state = 0}, [5206] = {.lex_state = 0}, [5207] = {.lex_state = 0}, - [5208] = {.lex_state = 0}, + [5208] = {.lex_state = 15}, [5209] = {.lex_state = 0}, [5210] = {.lex_state = 0}, [5211] = {.lex_state = 0}, - [5212] = {.lex_state = 0}, - [5213] = {.lex_state = 15}, - [5214] = {.lex_state = 0}, - [5215] = {.lex_state = 0}, + [5212] = {.lex_state = 81}, + [5213] = {.lex_state = 0}, + [5214] = {.lex_state = 15}, + [5215] = {.lex_state = 15}, [5216] = {.lex_state = 0}, [5217] = {.lex_state = 0}, - [5218] = {.lex_state = 15}, + [5218] = {.lex_state = 0}, [5219] = {.lex_state = 0}, - [5220] = {.lex_state = 15}, + [5220] = {.lex_state = 0}, [5221] = {.lex_state = 0}, [5222] = {.lex_state = 0}, - [5223] = {.lex_state = 0}, + [5223] = {.lex_state = 81}, [5224] = {.lex_state = 0}, - [5225] = {.lex_state = 0}, + [5225] = {.lex_state = 15}, [5226] = {.lex_state = 0}, [5227] = {.lex_state = 0}, - [5228] = {.lex_state = 0}, + [5228] = {.lex_state = 15}, [5229] = {.lex_state = 0}, [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 15}, + [5231] = {.lex_state = 81}, [5232] = {.lex_state = 0}, [5233] = {.lex_state = 0}, - [5234] = {.lex_state = 15}, - [5235] = {.lex_state = 0}, - [5236] = {.lex_state = 15}, + [5234] = {.lex_state = 0}, + [5235] = {.lex_state = 81}, + [5236] = {.lex_state = 0}, [5237] = {.lex_state = 0}, [5238] = {.lex_state = 0}, [5239] = {.lex_state = 0}, - [5240] = {.lex_state = 15}, + [5240] = {.lex_state = 0}, [5241] = {.lex_state = 0}, - [5242] = {.lex_state = 0}, + [5242] = {.lex_state = 81}, [5243] = {.lex_state = 0}, [5244] = {.lex_state = 0}, [5245] = {.lex_state = 0}, @@ -18018,33 +18182,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5247] = {.lex_state = 0}, [5248] = {.lex_state = 0}, [5249] = {.lex_state = 0}, - [5250] = {.lex_state = 7}, + [5250] = {.lex_state = 81}, [5251] = {.lex_state = 0}, [5252] = {.lex_state = 0}, [5253] = {.lex_state = 0}, [5254] = {.lex_state = 0}, [5255] = {.lex_state = 0}, [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 0}, - [5258] = {.lex_state = 0}, - [5259] = {.lex_state = 0}, + [5257] = {.lex_state = 15}, + [5258] = {.lex_state = 7}, + [5259] = {.lex_state = 81}, [5260] = {.lex_state = 0}, - [5261] = {.lex_state = 0}, + [5261] = {.lex_state = 81}, [5262] = {.lex_state = 0}, [5263] = {.lex_state = 0}, [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 0}, + [5265] = {.lex_state = 81}, [5266] = {.lex_state = 0}, [5267] = {.lex_state = 0}, [5268] = {.lex_state = 0}, [5269] = {.lex_state = 0}, - [5270] = {.lex_state = 0}, + [5270] = {.lex_state = 15}, [5271] = {.lex_state = 0}, [5272] = {.lex_state = 0}, [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 15}, + [5274] = {.lex_state = 0}, [5275] = {.lex_state = 0}, - [5276] = {.lex_state = 15}, + [5276] = {.lex_state = 0}, [5277] = {.lex_state = 0}, [5278] = {.lex_state = 0}, [5279] = {.lex_state = 0}, @@ -18053,54 +18217,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5282] = {.lex_state = 0}, [5283] = {.lex_state = 0}, [5284] = {.lex_state = 0}, - [5285] = {.lex_state = 7}, + [5285] = {.lex_state = 0}, [5286] = {.lex_state = 0}, - [5287] = {.lex_state = 0}, + [5287] = {.lex_state = 16}, [5288] = {.lex_state = 0}, [5289] = {.lex_state = 0}, [5290] = {.lex_state = 0}, - [5291] = {.lex_state = 0}, - [5292] = {.lex_state = 15}, - [5293] = {.lex_state = 0}, + [5291] = {.lex_state = 15}, + [5292] = {.lex_state = 0}, + [5293] = {.lex_state = 15}, [5294] = {.lex_state = 0}, [5295] = {.lex_state = 0}, [5296] = {.lex_state = 0}, - [5297] = {.lex_state = 0}, - [5298] = {.lex_state = 0}, + [5297] = {.lex_state = 15}, + [5298] = {.lex_state = 15}, [5299] = {.lex_state = 0}, [5300] = {.lex_state = 16}, - [5301] = {.lex_state = 0}, + [5301] = {.lex_state = 15}, [5302] = {.lex_state = 0}, - [5303] = {.lex_state = 0}, + [5303] = {.lex_state = 15}, [5304] = {.lex_state = 0}, [5305] = {.lex_state = 0}, - [5306] = {.lex_state = 16}, - [5307] = {.lex_state = 7}, - [5308] = {.lex_state = 0}, + [5306] = {.lex_state = 0}, + [5307] = {.lex_state = 15}, + [5308] = {.lex_state = 15}, [5309] = {.lex_state = 15}, [5310] = {.lex_state = 0}, [5311] = {.lex_state = 0}, [5312] = {.lex_state = 0}, [5313] = {.lex_state = 0}, [5314] = {.lex_state = 0}, - [5315] = {.lex_state = 0}, + [5315] = {.lex_state = 15}, [5316] = {.lex_state = 0}, [5317] = {.lex_state = 0}, - [5318] = {.lex_state = 0}, + [5318] = {.lex_state = 15}, [5319] = {.lex_state = 0}, - [5320] = {.lex_state = 12}, + [5320] = {.lex_state = 15}, [5321] = {.lex_state = 0}, - [5322] = {.lex_state = 0}, - [5323] = {.lex_state = 15}, + [5322] = {.lex_state = 15}, + [5323] = {.lex_state = 0}, [5324] = {.lex_state = 0}, [5325] = {.lex_state = 0}, [5326] = {.lex_state = 15}, - [5327] = {.lex_state = 15}, + [5327] = {.lex_state = 0}, [5328] = {.lex_state = 0}, [5329] = {.lex_state = 0}, [5330] = {.lex_state = 0}, [5331] = {.lex_state = 0}, - [5332] = {.lex_state = 15}, + [5332] = {.lex_state = 0}, [5333] = {.lex_state = 0}, [5334] = {.lex_state = 0}, [5335] = {.lex_state = 0}, @@ -18112,12 +18276,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5341] = {.lex_state = 0}, [5342] = {.lex_state = 0}, [5343] = {.lex_state = 0}, - [5344] = {.lex_state = 0}, + [5344] = {.lex_state = 15}, [5345] = {.lex_state = 0}, [5346] = {.lex_state = 0}, [5347] = {.lex_state = 0}, [5348] = {.lex_state = 0}, - [5349] = {.lex_state = 80}, + [5349] = {.lex_state = 0}, [5350] = {.lex_state = 0}, [5351] = {.lex_state = 0}, [5352] = {.lex_state = 0}, @@ -18138,7 +18302,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5367] = {.lex_state = 0}, [5368] = {.lex_state = 0}, [5369] = {.lex_state = 0}, - [5370] = {.lex_state = 12}, + [5370] = {.lex_state = 0}, [5371] = {.lex_state = 0}, [5372] = {.lex_state = 0}, [5373] = {.lex_state = 0}, @@ -18147,10 +18311,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5376] = {.lex_state = 0}, [5377] = {.lex_state = 0}, [5378] = {.lex_state = 0}, - [5379] = {.lex_state = 0}, + [5379] = {.lex_state = 15}, [5380] = {.lex_state = 0}, [5381] = {.lex_state = 0}, - [5382] = {.lex_state = 15}, + [5382] = {.lex_state = 0}, [5383] = {.lex_state = 0}, [5384] = {.lex_state = 0}, [5385] = {.lex_state = 0}, @@ -18160,24 +18324,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5389] = {.lex_state = 0}, [5390] = {.lex_state = 0}, [5391] = {.lex_state = 0}, - [5392] = {.lex_state = 0}, + [5392] = {.lex_state = 15}, [5393] = {.lex_state = 0}, [5394] = {.lex_state = 0}, - [5395] = {.lex_state = 15}, - [5396] = {.lex_state = 15}, + [5395] = {.lex_state = 0}, + [5396] = {.lex_state = 0}, [5397] = {.lex_state = 0}, [5398] = {.lex_state = 0}, [5399] = {.lex_state = 0}, [5400] = {.lex_state = 0}, - [5401] = {.lex_state = 16}, + [5401] = {.lex_state = 0}, [5402] = {.lex_state = 0}, [5403] = {.lex_state = 0}, [5404] = {.lex_state = 0}, - [5405] = {.lex_state = 15}, - [5406] = {.lex_state = 0}, - [5407] = {.lex_state = 0}, - [5408] = {.lex_state = 15}, - [5409] = {.lex_state = 15}, + [5405] = {.lex_state = 0}, + [5406] = {.lex_state = 7}, + [5407] = {.lex_state = 15}, + [5408] = {.lex_state = 0}, + [5409] = {.lex_state = 0}, [5410] = {.lex_state = 0}, [5411] = {.lex_state = 0}, [5412] = {.lex_state = 0}, @@ -18185,27 +18349,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5414] = {.lex_state = 0}, [5415] = {.lex_state = 0}, [5416] = {.lex_state = 0}, - [5417] = {.lex_state = 0}, + [5417] = {.lex_state = 15}, [5418] = {.lex_state = 0}, [5419] = {.lex_state = 0}, [5420] = {.lex_state = 0}, - [5421] = {.lex_state = 7}, - [5422] = {.lex_state = 0}, - [5423] = {.lex_state = 0}, - [5424] = {.lex_state = 15}, + [5421] = {.lex_state = 0}, + [5422] = {.lex_state = 15}, + [5423] = {.lex_state = 15}, + [5424] = {.lex_state = 0}, [5425] = {.lex_state = 0}, [5426] = {.lex_state = 0}, - [5427] = {.lex_state = 15}, - [5428] = {.lex_state = 15}, + [5427] = {.lex_state = 0}, + [5428] = {.lex_state = 0}, [5429] = {.lex_state = 0}, - [5430] = {.lex_state = 7}, + [5430] = {.lex_state = 0}, [5431] = {.lex_state = 0}, - [5432] = {.lex_state = 15}, - [5433] = {.lex_state = 15}, + [5432] = {.lex_state = 0}, + [5433] = {.lex_state = 0}, [5434] = {.lex_state = 0}, [5435] = {.lex_state = 0}, [5436] = {.lex_state = 0}, - [5437] = {.lex_state = 0}, + [5437] = {.lex_state = 15}, [5438] = {.lex_state = 0}, [5439] = {.lex_state = 0}, [5440] = {.lex_state = 0}, @@ -18214,11 +18378,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5443] = {.lex_state = 0}, [5444] = {.lex_state = 0}, [5445] = {.lex_state = 0}, - [5446] = {.lex_state = 15}, + [5446] = {.lex_state = 0}, [5447] = {.lex_state = 0}, [5448] = {.lex_state = 0}, [5449] = {.lex_state = 0}, - [5450] = {.lex_state = 15}, + [5450] = {.lex_state = 0}, [5451] = {.lex_state = 0}, [5452] = {.lex_state = 0}, [5453] = {.lex_state = 0}, @@ -18227,58 +18391,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5456] = {.lex_state = 0}, [5457] = {.lex_state = 0}, [5458] = {.lex_state = 0}, - [5459] = {.lex_state = 15}, + [5459] = {.lex_state = 0}, [5460] = {.lex_state = 0}, [5461] = {.lex_state = 0}, [5462] = {.lex_state = 0}, - [5463] = {.lex_state = 15}, + [5463] = {.lex_state = 0}, [5464] = {.lex_state = 0}, - [5465] = {.lex_state = 0}, - [5466] = {.lex_state = 15}, + [5465] = {.lex_state = 16}, + [5466] = {.lex_state = 0}, [5467] = {.lex_state = 0}, [5468] = {.lex_state = 0}, [5469] = {.lex_state = 0}, - [5470] = {.lex_state = 15}, + [5470] = {.lex_state = 0}, [5471] = {.lex_state = 0}, [5472] = {.lex_state = 0}, [5473] = {.lex_state = 0}, [5474] = {.lex_state = 0}, [5475] = {.lex_state = 0}, [5476] = {.lex_state = 0}, - [5477] = {.lex_state = 15}, - [5478] = {.lex_state = 15}, + [5477] = {.lex_state = 0}, + [5478] = {.lex_state = 0}, [5479] = {.lex_state = 0}, [5480] = {.lex_state = 0}, [5481] = {.lex_state = 0}, [5482] = {.lex_state = 0}, [5483] = {.lex_state = 0}, - [5484] = {.lex_state = 15}, + [5484] = {.lex_state = 0}, [5485] = {.lex_state = 0}, [5486] = {.lex_state = 0}, [5487] = {.lex_state = 0}, - [5488] = {.lex_state = 0}, + [5488] = {.lex_state = 81}, [5489] = {.lex_state = 0}, [5490] = {.lex_state = 0}, - [5491] = {.lex_state = 15}, - [5492] = {.lex_state = 15}, + [5491] = {.lex_state = 0}, + [5492] = {.lex_state = 0}, [5493] = {.lex_state = 0}, [5494] = {.lex_state = 0}, [5495] = {.lex_state = 0}, [5496] = {.lex_state = 0}, - [5497] = {.lex_state = 15}, + [5497] = {.lex_state = 0}, [5498] = {.lex_state = 0}, - [5499] = {.lex_state = 15}, + [5499] = {.lex_state = 0}, [5500] = {.lex_state = 0}, [5501] = {.lex_state = 0}, [5502] = {.lex_state = 0}, - [5503] = {.lex_state = 15}, - [5504] = {.lex_state = 15}, - [5505] = {.lex_state = 0}, + [5503] = {.lex_state = 0}, + [5504] = {.lex_state = 0}, + [5505] = {.lex_state = 16}, [5506] = {.lex_state = 0}, - [5507] = {.lex_state = 0}, + [5507] = {.lex_state = 15}, [5508] = {.lex_state = 0}, [5509] = {.lex_state = 0}, - [5510] = {.lex_state = 0}, + [5510] = {.lex_state = 15}, [5511] = {.lex_state = 0}, [5512] = {.lex_state = 0}, [5513] = {.lex_state = 0}, @@ -18289,54 +18453,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5518] = {.lex_state = 0}, [5519] = {.lex_state = 0}, [5520] = {.lex_state = 0}, - [5521] = {.lex_state = 0}, + [5521] = {.lex_state = 16}, [5522] = {.lex_state = 0}, - [5523] = {.lex_state = 7}, - [5524] = {.lex_state = 0}, + [5523] = {.lex_state = 0}, + [5524] = {.lex_state = 15}, [5525] = {.lex_state = 0}, [5526] = {.lex_state = 0}, [5527] = {.lex_state = 0}, [5528] = {.lex_state = 0}, [5529] = {.lex_state = 0}, - [5530] = {.lex_state = 15}, + [5530] = {.lex_state = 0}, [5531] = {.lex_state = 0}, - [5532] = {.lex_state = 0}, + [5532] = {.lex_state = 16}, [5533] = {.lex_state = 0}, - [5534] = {.lex_state = 0}, - [5535] = {.lex_state = 0}, - [5536] = {.lex_state = 0}, - [5537] = {.lex_state = 0}, - [5538] = {.lex_state = 7}, - [5539] = {.lex_state = 15}, + [5534] = {.lex_state = 15}, + [5535] = {.lex_state = 15}, + [5536] = {.lex_state = 15}, + [5537] = {.lex_state = 15}, + [5538] = {.lex_state = 0}, + [5539] = {.lex_state = 0}, [5540] = {.lex_state = 0}, [5541] = {.lex_state = 0}, - [5542] = {.lex_state = 0}, + [5542] = {.lex_state = 15}, [5543] = {.lex_state = 0}, [5544] = {.lex_state = 0}, [5545] = {.lex_state = 0}, [5546] = {.lex_state = 0}, [5547] = {.lex_state = 0}, - [5548] = {.lex_state = 15}, + [5548] = {.lex_state = 0}, [5549] = {.lex_state = 0}, [5550] = {.lex_state = 0}, [5551] = {.lex_state = 0}, [5552] = {.lex_state = 0}, - [5553] = {.lex_state = 7}, - [5554] = {.lex_state = 0}, - [5555] = {.lex_state = 15}, - [5556] = {.lex_state = 0}, + [5553] = {.lex_state = 0}, + [5554] = {.lex_state = 7}, + [5555] = {.lex_state = 0}, + [5556] = {.lex_state = 15}, [5557] = {.lex_state = 0}, [5558] = {.lex_state = 0}, [5559] = {.lex_state = 0}, [5560] = {.lex_state = 0}, - [5561] = {.lex_state = 15}, - [5562] = {.lex_state = 0}, + [5561] = {.lex_state = 0}, + [5562] = {.lex_state = 15}, [5563] = {.lex_state = 0}, [5564] = {.lex_state = 0}, [5565] = {.lex_state = 0}, - [5566] = {.lex_state = 0}, + [5566] = {.lex_state = 15}, [5567] = {.lex_state = 0}, - [5568] = {.lex_state = 0}, + [5568] = {.lex_state = 15}, [5569] = {.lex_state = 0}, [5570] = {.lex_state = 0}, [5571] = {.lex_state = 0}, @@ -18349,142 +18513,142 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5578] = {.lex_state = 0}, [5579] = {.lex_state = 0}, [5580] = {.lex_state = 0}, - [5581] = {.lex_state = 0}, + [5581] = {.lex_state = 15}, [5582] = {.lex_state = 0}, [5583] = {.lex_state = 0}, [5584] = {.lex_state = 0}, [5585] = {.lex_state = 0}, [5586] = {.lex_state = 0}, - [5587] = {.lex_state = 7}, + [5587] = {.lex_state = 0}, [5588] = {.lex_state = 0}, - [5589] = {.lex_state = 15}, - [5590] = {.lex_state = 0}, + [5589] = {.lex_state = 0}, + [5590] = {.lex_state = 7}, [5591] = {.lex_state = 0}, - [5592] = {.lex_state = 0}, - [5593] = {.lex_state = 15}, - [5594] = {.lex_state = 0}, + [5592] = {.lex_state = 15}, + [5593] = {.lex_state = 0}, + [5594] = {.lex_state = 15}, [5595] = {.lex_state = 0}, - [5596] = {.lex_state = 7}, - [5597] = {.lex_state = 15}, + [5596] = {.lex_state = 0}, + [5597] = {.lex_state = 12}, [5598] = {.lex_state = 0}, - [5599] = {.lex_state = 0}, - [5600] = {.lex_state = 0}, + [5599] = {.lex_state = 15}, + [5600] = {.lex_state = 15}, [5601] = {.lex_state = 0}, - [5602] = {.lex_state = 0}, + [5602] = {.lex_state = 15}, [5603] = {.lex_state = 0}, - [5604] = {.lex_state = 0}, - [5605] = {.lex_state = 7}, + [5604] = {.lex_state = 15}, + [5605] = {.lex_state = 0}, [5606] = {.lex_state = 0}, - [5607] = {.lex_state = 7}, - [5608] = {.lex_state = 0}, + [5607] = {.lex_state = 0}, + [5608] = {.lex_state = 15}, [5609] = {.lex_state = 0}, [5610] = {.lex_state = 0}, - [5611] = {.lex_state = 0}, - [5612] = {.lex_state = 0}, + [5611] = {.lex_state = 15}, + [5612] = {.lex_state = 15}, [5613] = {.lex_state = 0}, [5614] = {.lex_state = 15}, [5615] = {.lex_state = 0}, - [5616] = {.lex_state = 0}, - [5617] = {.lex_state = 0}, + [5616] = {.lex_state = 15}, + [5617] = {.lex_state = 7}, [5618] = {.lex_state = 0}, [5619] = {.lex_state = 0}, [5620] = {.lex_state = 0}, - [5621] = {.lex_state = 15}, + [5621] = {.lex_state = 0}, [5622] = {.lex_state = 0}, [5623] = {.lex_state = 0}, - [5624] = {.lex_state = 0}, + [5624] = {.lex_state = 15}, [5625] = {.lex_state = 0}, [5626] = {.lex_state = 0}, [5627] = {.lex_state = 0}, - [5628] = {.lex_state = 15}, + [5628] = {.lex_state = 0}, [5629] = {.lex_state = 0}, [5630] = {.lex_state = 0}, - [5631] = {.lex_state = 15}, - [5632] = {.lex_state = 0}, + [5631] = {.lex_state = 0}, + [5632] = {.lex_state = 15}, [5633] = {.lex_state = 0}, - [5634] = {.lex_state = 15}, - [5635] = {.lex_state = 15}, - [5636] = {.lex_state = 15}, - [5637] = {.lex_state = 7}, - [5638] = {.lex_state = 0}, + [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 = 0}, - [5641] = {.lex_state = 7}, - [5642] = {.lex_state = 15}, + [5640] = {.lex_state = 15}, + [5641] = {.lex_state = 0}, + [5642] = {.lex_state = 0}, [5643] = {.lex_state = 0}, [5644] = {.lex_state = 0}, [5645] = {.lex_state = 0}, - [5646] = {.lex_state = 15}, - [5647] = {.lex_state = 0}, - [5648] = {.lex_state = 15}, - [5649] = {.lex_state = 0}, + [5646] = {.lex_state = 0}, + [5647] = {.lex_state = 15}, + [5648] = {.lex_state = 0}, + [5649] = {.lex_state = 15}, [5650] = {.lex_state = 0}, [5651] = {.lex_state = 0}, - [5652] = {.lex_state = 15}, + [5652] = {.lex_state = 0}, [5653] = {.lex_state = 0}, - [5654] = {.lex_state = 15}, + [5654] = {.lex_state = 0}, [5655] = {.lex_state = 0}, [5656] = {.lex_state = 0}, [5657] = {.lex_state = 0}, - [5658] = {.lex_state = 0}, + [5658] = {.lex_state = 15}, [5659] = {.lex_state = 0}, [5660] = {.lex_state = 0}, - [5661] = {.lex_state = 0}, - [5662] = {.lex_state = 80}, + [5661] = {.lex_state = 7}, + [5662] = {.lex_state = 0}, [5663] = {.lex_state = 0}, [5664] = {.lex_state = 0}, - [5665] = {.lex_state = 39}, - [5666] = {.lex_state = 0}, + [5665] = {.lex_state = 15}, + [5666] = {.lex_state = 7}, [5667] = {.lex_state = 0}, [5668] = {.lex_state = 0}, [5669] = {.lex_state = 15}, - [5670] = {.lex_state = 15}, - [5671] = {.lex_state = 15}, - [5672] = {.lex_state = 0}, + [5670] = {.lex_state = 0}, + [5671] = {.lex_state = 0}, + [5672] = {.lex_state = 15}, [5673] = {.lex_state = 0}, [5674] = {.lex_state = 0}, [5675] = {.lex_state = 0}, [5676] = {.lex_state = 0}, [5677] = {.lex_state = 0}, - [5678] = {.lex_state = 0}, + [5678] = {.lex_state = 15}, [5679] = {.lex_state = 0}, [5680] = {.lex_state = 0}, - [5681] = {.lex_state = 15}, + [5681] = {.lex_state = 0}, [5682] = {.lex_state = 0}, [5683] = {.lex_state = 0}, [5684] = {.lex_state = 0}, [5685] = {.lex_state = 0}, - [5686] = {.lex_state = 0}, - [5687] = {.lex_state = 0}, + [5686] = {.lex_state = 7}, + [5687] = {.lex_state = 15}, [5688] = {.lex_state = 0}, - [5689] = {.lex_state = 7}, - [5690] = {.lex_state = 15}, + [5689] = {.lex_state = 0}, + [5690] = {.lex_state = 0}, [5691] = {.lex_state = 0}, - [5692] = {.lex_state = 0}, - [5693] = {.lex_state = 7}, + [5692] = {.lex_state = 15}, + [5693] = {.lex_state = 0}, [5694] = {.lex_state = 0}, - [5695] = {.lex_state = 7}, - [5696] = {.lex_state = 7}, - [5697] = {.lex_state = 15}, - [5698] = {.lex_state = 7}, - [5699] = {.lex_state = 0, .external_lex_state = 4}, - [5700] = {.lex_state = 7}, + [5695] = {.lex_state = 0}, + [5696] = {.lex_state = 0}, + [5697] = {.lex_state = 12}, + [5698] = {.lex_state = 0}, + [5699] = {.lex_state = 0}, + [5700] = {.lex_state = 0}, [5701] = {.lex_state = 0}, - [5702] = {.lex_state = 7}, - [5703] = {.lex_state = 0}, - [5704] = {.lex_state = 0}, + [5702] = {.lex_state = 15}, + [5703] = {.lex_state = 7}, + [5704] = {.lex_state = 15}, [5705] = {.lex_state = 0}, - [5706] = {.lex_state = 15}, + [5706] = {.lex_state = 0}, [5707] = {.lex_state = 0}, [5708] = {.lex_state = 0}, [5709] = {.lex_state = 0}, [5710] = {.lex_state = 0}, [5711] = {.lex_state = 15}, - [5712] = {.lex_state = 15}, + [5712] = {.lex_state = 0}, [5713] = {.lex_state = 0}, [5714] = {.lex_state = 0}, [5715] = {.lex_state = 0}, - [5716] = {.lex_state = 15}, + [5716] = {.lex_state = 0}, [5717] = {.lex_state = 0}, [5718] = {.lex_state = 0}, [5719] = {.lex_state = 0}, @@ -18493,390 +18657,390 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5722] = {.lex_state = 0}, [5723] = {.lex_state = 0}, [5724] = {.lex_state = 0}, - [5725] = {.lex_state = 39}, - [5726] = {.lex_state = 15}, - [5727] = {.lex_state = 39}, + [5725] = {.lex_state = 0}, + [5726] = {.lex_state = 0}, + [5727] = {.lex_state = 15}, [5728] = {.lex_state = 0}, [5729] = {.lex_state = 0}, - [5730] = {.lex_state = 15}, - [5731] = {.lex_state = 15}, + [5730] = {.lex_state = 0}, + [5731] = {.lex_state = 0}, [5732] = {.lex_state = 0}, [5733] = {.lex_state = 0}, - [5734] = {.lex_state = 7}, + [5734] = {.lex_state = 0}, [5735] = {.lex_state = 0}, [5736] = {.lex_state = 0}, - [5737] = {.lex_state = 39}, + [5737] = {.lex_state = 0}, [5738] = {.lex_state = 0}, - [5739] = {.lex_state = 15}, - [5740] = {.lex_state = 0}, - [5741] = {.lex_state = 80}, - [5742] = {.lex_state = 15}, - [5743] = {.lex_state = 15}, + [5739] = {.lex_state = 0}, + [5740] = {.lex_state = 7}, + [5741] = {.lex_state = 0}, + [5742] = {.lex_state = 0}, + [5743] = {.lex_state = 0}, [5744] = {.lex_state = 0}, [5745] = {.lex_state = 0}, - [5746] = {.lex_state = 0}, + [5746] = {.lex_state = 15}, [5747] = {.lex_state = 15}, [5748] = {.lex_state = 0}, - [5749] = {.lex_state = 0}, + [5749] = {.lex_state = 7}, [5750] = {.lex_state = 0}, - [5751] = {.lex_state = 0}, - [5752] = {.lex_state = 15}, - [5753] = {.lex_state = 0}, + [5751] = {.lex_state = 7}, + [5752] = {.lex_state = 0}, + [5753] = {.lex_state = 7}, [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 0}, + [5755] = {.lex_state = 15}, [5756] = {.lex_state = 0}, [5757] = {.lex_state = 0}, [5758] = {.lex_state = 0}, - [5759] = {.lex_state = 7}, + [5759] = {.lex_state = 0}, [5760] = {.lex_state = 0}, - [5761] = {.lex_state = 0}, + [5761] = {.lex_state = 15}, [5762] = {.lex_state = 0}, - [5763] = {.lex_state = 7}, + [5763] = {.lex_state = 15}, [5764] = {.lex_state = 0}, - [5765] = {.lex_state = 7}, - [5766] = {.lex_state = 7}, - [5767] = {.lex_state = 0}, - [5768] = {.lex_state = 7}, - [5769] = {.lex_state = 0}, - [5770] = {.lex_state = 7}, - [5771] = {.lex_state = 0}, - [5772] = {.lex_state = 7}, + [5765] = {.lex_state = 0}, + [5766] = {.lex_state = 0}, + [5767] = {.lex_state = 15}, + [5768] = {.lex_state = 0}, + [5769] = {.lex_state = 15}, + [5770] = {.lex_state = 15}, + [5771] = {.lex_state = 15}, + [5772] = {.lex_state = 15}, [5773] = {.lex_state = 0}, [5774] = {.lex_state = 0}, [5775] = {.lex_state = 0}, [5776] = {.lex_state = 15}, [5777] = {.lex_state = 0}, - [5778] = {.lex_state = 15}, + [5778] = {.lex_state = 0}, [5779] = {.lex_state = 0}, [5780] = {.lex_state = 0}, [5781] = {.lex_state = 0}, - [5782] = {.lex_state = 15}, - [5783] = {.lex_state = 0}, + [5782] = {.lex_state = 0}, + [5783] = {.lex_state = 39}, [5784] = {.lex_state = 0}, [5785] = {.lex_state = 0}, [5786] = {.lex_state = 0}, - [5787] = {.lex_state = 15}, - [5788] = {.lex_state = 0}, + [5787] = {.lex_state = 0}, + [5788] = {.lex_state = 15}, [5789] = {.lex_state = 15}, [5790] = {.lex_state = 0}, [5791] = {.lex_state = 0}, - [5792] = {.lex_state = 126}, + [5792] = {.lex_state = 0}, [5793] = {.lex_state = 0}, [5794] = {.lex_state = 0}, - [5795] = {.lex_state = 39}, - [5796] = {.lex_state = 0}, + [5795] = {.lex_state = 0}, + [5796] = {.lex_state = 15}, [5797] = {.lex_state = 0}, [5798] = {.lex_state = 0}, - [5799] = {.lex_state = 0}, - [5800] = {.lex_state = 15}, + [5799] = {.lex_state = 15}, + [5800] = {.lex_state = 0}, [5801] = {.lex_state = 0}, [5802] = {.lex_state = 0}, [5803] = {.lex_state = 0}, - [5804] = {.lex_state = 15}, + [5804] = {.lex_state = 0, .external_lex_state = 4}, [5805] = {.lex_state = 0}, - [5806] = {.lex_state = 15}, - [5807] = {.lex_state = 15}, + [5806] = {.lex_state = 0}, + [5807] = {.lex_state = 7}, [5808] = {.lex_state = 0}, - [5809] = {.lex_state = 0}, + [5809] = {.lex_state = 15}, [5810] = {.lex_state = 0}, - [5811] = {.lex_state = 0}, - [5812] = {.lex_state = 7}, - [5813] = {.lex_state = 0}, - [5814] = {.lex_state = 15}, + [5811] = {.lex_state = 7}, + [5812] = {.lex_state = 0}, + [5813] = {.lex_state = 7}, + [5814] = {.lex_state = 7}, [5815] = {.lex_state = 0}, [5816] = {.lex_state = 7}, [5817] = {.lex_state = 0}, [5818] = {.lex_state = 7}, [5819] = {.lex_state = 7}, - [5820] = {.lex_state = 0}, - [5821] = {.lex_state = 7}, - [5822] = {.lex_state = 0}, - [5823] = {.lex_state = 7}, - [5824] = {.lex_state = 0}, - [5825] = {.lex_state = 7}, - [5826] = {.lex_state = 0}, - [5827] = {.lex_state = 0}, + [5820] = {.lex_state = 7}, + [5821] = {.lex_state = 0}, + [5822] = {.lex_state = 7}, + [5823] = {.lex_state = 0}, + [5824] = {.lex_state = 15}, + [5825] = {.lex_state = 0}, + [5826] = {.lex_state = 15}, + [5827] = {.lex_state = 15}, [5828] = {.lex_state = 0}, - [5829] = {.lex_state = 15}, + [5829] = {.lex_state = 0}, [5830] = {.lex_state = 0}, [5831] = {.lex_state = 15}, [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 7}, - [5834] = {.lex_state = 15}, + [5833] = {.lex_state = 0}, + [5834] = {.lex_state = 0}, [5835] = {.lex_state = 15}, [5836] = {.lex_state = 0}, - [5837] = {.lex_state = 15}, + [5837] = {.lex_state = 0}, [5838] = {.lex_state = 0}, [5839] = {.lex_state = 0}, [5840] = {.lex_state = 0}, [5841] = {.lex_state = 0}, - [5842] = {.lex_state = 15}, + [5842] = {.lex_state = 0}, [5843] = {.lex_state = 0}, [5844] = {.lex_state = 0}, - [5845] = {.lex_state = 0, .external_lex_state = 4}, + [5845] = {.lex_state = 15}, [5846] = {.lex_state = 0}, [5847] = {.lex_state = 0}, - [5848] = {.lex_state = 39}, - [5849] = {.lex_state = 15}, + [5848] = {.lex_state = 7}, + [5849] = {.lex_state = 0}, [5850] = {.lex_state = 0}, [5851] = {.lex_state = 0}, [5852] = {.lex_state = 0}, - [5853] = {.lex_state = 15}, + [5853] = {.lex_state = 0}, [5854] = {.lex_state = 0}, [5855] = {.lex_state = 0}, - [5856] = {.lex_state = 0}, - [5857] = {.lex_state = 0}, - [5858] = {.lex_state = 15}, - [5859] = {.lex_state = 15}, - [5860] = {.lex_state = 15}, + [5856] = {.lex_state = 39}, + [5857] = {.lex_state = 15}, + [5858] = {.lex_state = 0}, + [5859] = {.lex_state = 0}, + [5860] = {.lex_state = 0}, [5861] = {.lex_state = 0}, [5862] = {.lex_state = 15}, [5863] = {.lex_state = 0}, - [5864] = {.lex_state = 7}, - [5865] = {.lex_state = 0}, + [5864] = {.lex_state = 0}, + [5865] = {.lex_state = 15}, [5866] = {.lex_state = 0}, [5867] = {.lex_state = 0}, - [5868] = {.lex_state = 7}, - [5869] = {.lex_state = 15}, - [5870] = {.lex_state = 7}, - [5871] = {.lex_state = 7}, - [5872] = {.lex_state = 7}, - [5873] = {.lex_state = 7}, + [5868] = {.lex_state = 15}, + [5869] = {.lex_state = 0}, + [5870] = {.lex_state = 0}, + [5871] = {.lex_state = 15}, + [5872] = {.lex_state = 0}, + [5873] = {.lex_state = 0}, [5874] = {.lex_state = 0}, - [5875] = {.lex_state = 7}, + [5875] = {.lex_state = 0}, [5876] = {.lex_state = 0}, - [5877] = {.lex_state = 7}, - [5878] = {.lex_state = 0}, + [5877] = {.lex_state = 0}, + [5878] = {.lex_state = 7}, [5879] = {.lex_state = 0}, [5880] = {.lex_state = 0}, - [5881] = {.lex_state = 15}, - [5882] = {.lex_state = 15}, - [5883] = {.lex_state = 15}, - [5884] = {.lex_state = 80}, - [5885] = {.lex_state = 0}, - [5886] = {.lex_state = 15}, - [5887] = {.lex_state = 15}, + [5881] = {.lex_state = 0}, + [5882] = {.lex_state = 7}, + [5883] = {.lex_state = 0}, + [5884] = {.lex_state = 7}, + [5885] = {.lex_state = 7}, + [5886] = {.lex_state = 81}, + [5887] = {.lex_state = 7}, [5888] = {.lex_state = 15}, - [5889] = {.lex_state = 0}, + [5889] = {.lex_state = 7}, [5890] = {.lex_state = 0}, - [5891] = {.lex_state = 0}, - [5892] = {.lex_state = 15}, - [5893] = {.lex_state = 0}, + [5891] = {.lex_state = 7}, + [5892] = {.lex_state = 0}, + [5893] = {.lex_state = 15}, [5894] = {.lex_state = 15}, - [5895] = {.lex_state = 0}, + [5895] = {.lex_state = 15}, [5896] = {.lex_state = 0}, - [5897] = {.lex_state = 7}, - [5898] = {.lex_state = 0}, - [5899] = {.lex_state = 15}, - [5900] = {.lex_state = 39}, - [5901] = {.lex_state = 0}, + [5897] = {.lex_state = 0}, + [5898] = {.lex_state = 15}, + [5899] = {.lex_state = 0}, + [5900] = {.lex_state = 0}, + [5901] = {.lex_state = 7}, [5902] = {.lex_state = 15}, - [5903] = {.lex_state = 0}, - [5904] = {.lex_state = 7}, - [5905] = {.lex_state = 15}, - [5906] = {.lex_state = 0}, - [5907] = {.lex_state = 0}, + [5903] = {.lex_state = 15}, + [5904] = {.lex_state = 0, .external_lex_state = 4}, + [5905] = {.lex_state = 0}, + [5906] = {.lex_state = 15}, + [5907] = {.lex_state = 15}, [5908] = {.lex_state = 0}, [5909] = {.lex_state = 15}, - [5910] = {.lex_state = 0}, + [5910] = {.lex_state = 15}, [5911] = {.lex_state = 0}, [5912] = {.lex_state = 0}, [5913] = {.lex_state = 0}, - [5914] = {.lex_state = 0}, - [5915] = {.lex_state = 0}, - [5916] = {.lex_state = 7}, + [5914] = {.lex_state = 15}, + [5915] = {.lex_state = 39}, + [5916] = {.lex_state = 0}, [5917] = {.lex_state = 0}, [5918] = {.lex_state = 15}, - [5919] = {.lex_state = 0}, - [5920] = {.lex_state = 7}, + [5919] = {.lex_state = 15}, + [5920] = {.lex_state = 15}, [5921] = {.lex_state = 0}, - [5922] = {.lex_state = 7}, - [5923] = {.lex_state = 7}, + [5922] = {.lex_state = 0}, + [5923] = {.lex_state = 0}, [5924] = {.lex_state = 0}, - [5925] = {.lex_state = 7}, + [5925] = {.lex_state = 0}, [5926] = {.lex_state = 0}, - [5927] = {.lex_state = 7}, - [5928] = {.lex_state = 0}, - [5929] = {.lex_state = 7}, + [5927] = {.lex_state = 15}, + [5928] = {.lex_state = 7}, + [5929] = {.lex_state = 0}, [5930] = {.lex_state = 0}, - [5931] = {.lex_state = 0, .external_lex_state = 5}, - [5932] = {.lex_state = 0}, - [5933] = {.lex_state = 15}, + [5931] = {.lex_state = 0}, + [5932] = {.lex_state = 7}, + [5933] = {.lex_state = 0}, [5934] = {.lex_state = 0}, - [5935] = {.lex_state = 15}, + [5935] = {.lex_state = 0}, [5936] = {.lex_state = 7}, - [5937] = {.lex_state = 15}, - [5938] = {.lex_state = 0}, - [5939] = {.lex_state = 15}, - [5940] = {.lex_state = 0}, - [5941] = {.lex_state = 0}, - [5942] = {.lex_state = 7}, - [5943] = {.lex_state = 0}, + [5937] = {.lex_state = 7}, + [5938] = {.lex_state = 7}, + [5939] = {.lex_state = 7}, + [5940] = {.lex_state = 15}, + [5941] = {.lex_state = 7}, + [5942] = {.lex_state = 15}, + [5943] = {.lex_state = 7}, [5944] = {.lex_state = 0}, - [5945] = {.lex_state = 0}, - [5946] = {.lex_state = 15}, + [5945] = {.lex_state = 7}, + [5946] = {.lex_state = 0}, [5947] = {.lex_state = 0}, [5948] = {.lex_state = 0}, - [5949] = {.lex_state = 0}, + [5949] = {.lex_state = 15}, [5950] = {.lex_state = 0}, - [5951] = {.lex_state = 15}, - [5952] = {.lex_state = 39}, - [5953] = {.lex_state = 15}, - [5954] = {.lex_state = 15}, + [5951] = {.lex_state = 81}, + [5952] = {.lex_state = 15}, + [5953] = {.lex_state = 0}, + [5954] = {.lex_state = 0}, [5955] = {.lex_state = 0}, - [5956] = {.lex_state = 0}, + [5956] = {.lex_state = 15}, [5957] = {.lex_state = 15}, - [5958] = {.lex_state = 0}, + [5958] = {.lex_state = 15}, [5959] = {.lex_state = 0}, - [5960] = {.lex_state = 0}, - [5961] = {.lex_state = 0, .external_lex_state = 4}, + [5960] = {.lex_state = 81}, + [5961] = {.lex_state = 15}, [5962] = {.lex_state = 15}, - [5963] = {.lex_state = 0}, + [5963] = {.lex_state = 15}, [5964] = {.lex_state = 0}, [5965] = {.lex_state = 0}, - [5966] = {.lex_state = 15}, - [5967] = {.lex_state = 15}, - [5968] = {.lex_state = 7}, - [5969] = {.lex_state = 0}, - [5970] = {.lex_state = 0}, + [5966] = {.lex_state = 39}, + [5967] = {.lex_state = 0}, + [5968] = {.lex_state = 39}, + [5969] = {.lex_state = 39}, + [5970] = {.lex_state = 7}, [5971] = {.lex_state = 0}, - [5972] = {.lex_state = 7}, + [5972] = {.lex_state = 15}, [5973] = {.lex_state = 0}, - [5974] = {.lex_state = 7}, - [5975] = {.lex_state = 7}, - [5976] = {.lex_state = 15}, - [5977] = {.lex_state = 7}, + [5974] = {.lex_state = 15}, + [5975] = {.lex_state = 0}, + [5976] = {.lex_state = 0}, + [5977] = {.lex_state = 0}, [5978] = {.lex_state = 0}, - [5979] = {.lex_state = 7}, + [5979] = {.lex_state = 0}, [5980] = {.lex_state = 0}, - [5981] = {.lex_state = 7}, + [5981] = {.lex_state = 0}, [5982] = {.lex_state = 0}, [5983] = {.lex_state = 15}, [5984] = {.lex_state = 0}, - [5985] = {.lex_state = 39}, - [5986] = {.lex_state = 15}, - [5987] = {.lex_state = 15}, + [5985] = {.lex_state = 7}, + [5986] = {.lex_state = 0}, + [5987] = {.lex_state = 7}, [5988] = {.lex_state = 0}, - [5989] = {.lex_state = 0}, + [5989] = {.lex_state = 7}, [5990] = {.lex_state = 0}, - [5991] = {.lex_state = 0}, - [5992] = {.lex_state = 15}, + [5991] = {.lex_state = 7}, + [5992] = {.lex_state = 7}, [5993] = {.lex_state = 0}, - [5994] = {.lex_state = 0}, - [5995] = {.lex_state = 0}, - [5996] = {.lex_state = 126}, - [5997] = {.lex_state = 7}, - [5998] = {.lex_state = 0}, + [5994] = {.lex_state = 7}, + [5995] = {.lex_state = 15}, + [5996] = {.lex_state = 7}, + [5997] = {.lex_state = 15}, + [5998] = {.lex_state = 7}, [5999] = {.lex_state = 0}, [6000] = {.lex_state = 15}, [6001] = {.lex_state = 0}, [6002] = {.lex_state = 15}, - [6003] = {.lex_state = 0}, - [6004] = {.lex_state = 7}, - [6005] = {.lex_state = 0}, - [6006] = {.lex_state = 7}, + [6003] = {.lex_state = 15}, + [6004] = {.lex_state = 0}, + [6005] = {.lex_state = 15}, + [6006] = {.lex_state = 0}, [6007] = {.lex_state = 0}, - [6008] = {.lex_state = 15}, - [6009] = {.lex_state = 7}, - [6010] = {.lex_state = 7}, + [6008] = {.lex_state = 0}, + [6009] = {.lex_state = 15}, + [6010] = {.lex_state = 0}, [6011] = {.lex_state = 0}, [6012] = {.lex_state = 0}, [6013] = {.lex_state = 0}, [6014] = {.lex_state = 0}, - [6015] = {.lex_state = 7}, - [6016] = {.lex_state = 0}, - [6017] = {.lex_state = 0}, + [6015] = {.lex_state = 0}, + [6016] = {.lex_state = 15}, + [6017] = {.lex_state = 15}, [6018] = {.lex_state = 0}, [6019] = {.lex_state = 0}, [6020] = {.lex_state = 0}, [6021] = {.lex_state = 0}, - [6022] = {.lex_state = 0}, + [6022] = {.lex_state = 39}, [6023] = {.lex_state = 15}, - [6024] = {.lex_state = 7}, - [6025] = {.lex_state = 0}, - [6026] = {.lex_state = 0}, - [6027] = {.lex_state = 0}, + [6024] = {.lex_state = 0}, + [6025] = {.lex_state = 15}, + [6026] = {.lex_state = 7}, + [6027] = {.lex_state = 15}, [6028] = {.lex_state = 0}, [6029] = {.lex_state = 0}, [6030] = {.lex_state = 0}, [6031] = {.lex_state = 0}, [6032] = {.lex_state = 0}, - [6033] = {.lex_state = 15}, - [6034] = {.lex_state = 0}, + [6033] = {.lex_state = 0}, + [6034] = {.lex_state = 0, .external_lex_state = 5}, [6035] = {.lex_state = 0}, [6036] = {.lex_state = 0}, [6037] = {.lex_state = 0}, - [6038] = {.lex_state = 0}, - [6039] = {.lex_state = 0}, + [6038] = {.lex_state = 7}, + [6039] = {.lex_state = 0, .external_lex_state = 4}, [6040] = {.lex_state = 0}, [6041] = {.lex_state = 0}, [6042] = {.lex_state = 7}, - [6043] = {.lex_state = 15}, - [6044] = {.lex_state = 0, .external_lex_state = 4}, - [6045] = {.lex_state = 15}, + [6043] = {.lex_state = 0}, + [6044] = {.lex_state = 7}, + [6045] = {.lex_state = 7}, [6046] = {.lex_state = 0}, - [6047] = {.lex_state = 0}, + [6047] = {.lex_state = 7}, [6048] = {.lex_state = 0}, [6049] = {.lex_state = 7}, [6050] = {.lex_state = 0}, [6051] = {.lex_state = 7}, - [6052] = {.lex_state = 80}, + [6052] = {.lex_state = 0}, [6053] = {.lex_state = 0}, [6054] = {.lex_state = 7}, - [6055] = {.lex_state = 7}, + [6055] = {.lex_state = 15}, [6056] = {.lex_state = 0}, [6057] = {.lex_state = 0}, - [6058] = {.lex_state = 0}, - [6059] = {.lex_state = 7}, + [6058] = {.lex_state = 15}, + [6059] = {.lex_state = 0}, [6060] = {.lex_state = 15}, - [6061] = {.lex_state = 0}, - [6062] = {.lex_state = 0}, - [6063] = {.lex_state = 80}, - [6064] = {.lex_state = 15}, - [6065] = {.lex_state = 15}, + [6061] = {.lex_state = 15}, + [6062] = {.lex_state = 15}, + [6063] = {.lex_state = 0}, + [6064] = {.lex_state = 0}, + [6065] = {.lex_state = 0}, [6066] = {.lex_state = 0}, - [6067] = {.lex_state = 0}, + [6067] = {.lex_state = 15}, [6068] = {.lex_state = 0}, [6069] = {.lex_state = 15}, [6070] = {.lex_state = 0}, - [6071] = {.lex_state = 0}, - [6072] = {.lex_state = 15}, - [6073] = {.lex_state = 0, .external_lex_state = 4}, + [6071] = {.lex_state = 15}, + [6072] = {.lex_state = 0}, + [6073] = {.lex_state = 0}, [6074] = {.lex_state = 0}, - [6075] = {.lex_state = 0}, + [6075] = {.lex_state = 39}, [6076] = {.lex_state = 0}, - [6077] = {.lex_state = 15}, + [6077] = {.lex_state = 0}, [6078] = {.lex_state = 0}, [6079] = {.lex_state = 0}, [6080] = {.lex_state = 15}, - [6081] = {.lex_state = 15}, - [6082] = {.lex_state = 7}, - [6083] = {.lex_state = 15}, - [6084] = {.lex_state = 15}, + [6081] = {.lex_state = 0}, + [6082] = {.lex_state = 0}, + [6083] = {.lex_state = 0}, + [6084] = {.lex_state = 0}, [6085] = {.lex_state = 0}, - [6086] = {.lex_state = 7}, - [6087] = {.lex_state = 7}, + [6086] = {.lex_state = 0}, + [6087] = {.lex_state = 15}, [6088] = {.lex_state = 0}, [6089] = {.lex_state = 15}, - [6090] = {.lex_state = 7}, + [6090] = {.lex_state = 0}, [6091] = {.lex_state = 7}, - [6092] = {.lex_state = 15}, - [6093] = {.lex_state = 0}, - [6094] = {.lex_state = 7}, + [6092] = {.lex_state = 134}, + [6093] = {.lex_state = 15}, + [6094] = {.lex_state = 0}, [6095] = {.lex_state = 7}, [6096] = {.lex_state = 15}, - [6097] = {.lex_state = 15}, - [6098] = {.lex_state = 0}, - [6099] = {.lex_state = 0}, - [6100] = {.lex_state = 0}, + [6097] = {.lex_state = 7}, + [6098] = {.lex_state = 7}, + [6099] = {.lex_state = 15}, + [6100] = {.lex_state = 7}, [6101] = {.lex_state = 15}, - [6102] = {.lex_state = 0}, + [6102] = {.lex_state = 7}, [6103] = {.lex_state = 0}, - [6104] = {.lex_state = 0}, - [6105] = {.lex_state = 15}, + [6104] = {.lex_state = 7}, + [6105] = {.lex_state = 0}, [6106] = {.lex_state = 0}, [6107] = {.lex_state = 15}, - [6108] = {.lex_state = 0}, + [6108] = {.lex_state = 39}, [6109] = {.lex_state = 0}, [6110] = {.lex_state = 15}, [6111] = {.lex_state = 15}, @@ -18884,155 +19048,155 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6113] = {.lex_state = 0}, [6114] = {.lex_state = 0}, [6115] = {.lex_state = 15}, - [6116] = {.lex_state = 7}, - [6117] = {.lex_state = 15}, - [6118] = {.lex_state = 15}, + [6116] = {.lex_state = 0}, + [6117] = {.lex_state = 0}, + [6118] = {.lex_state = 0}, [6119] = {.lex_state = 0}, - [6120] = {.lex_state = 7}, + [6120] = {.lex_state = 0}, [6121] = {.lex_state = 7}, - [6122] = {.lex_state = 7}, + [6122] = {.lex_state = 0}, [6123] = {.lex_state = 0}, - [6124] = {.lex_state = 7}, - [6125] = {.lex_state = 7}, - [6126] = {.lex_state = 15}, + [6124] = {.lex_state = 15}, + [6125] = {.lex_state = 0}, + [6126] = {.lex_state = 0}, [6127] = {.lex_state = 0}, [6128] = {.lex_state = 7}, - [6129] = {.lex_state = 0}, - [6130] = {.lex_state = 15}, + [6129] = {.lex_state = 15}, + [6130] = {.lex_state = 7}, [6131] = {.lex_state = 0}, [6132] = {.lex_state = 0}, - [6133] = {.lex_state = 0}, - [6134] = {.lex_state = 0}, + [6133] = {.lex_state = 7}, + [6134] = {.lex_state = 7}, [6135] = {.lex_state = 0}, [6136] = {.lex_state = 0}, [6137] = {.lex_state = 0}, - [6138] = {.lex_state = 15}, - [6139] = {.lex_state = 0}, + [6138] = {.lex_state = 0}, + [6139] = {.lex_state = 7}, [6140] = {.lex_state = 0}, [6141] = {.lex_state = 0}, [6142] = {.lex_state = 0}, [6143] = {.lex_state = 0}, [6144] = {.lex_state = 0}, [6145] = {.lex_state = 15}, - [6146] = {.lex_state = 0}, - [6147] = {.lex_state = 0}, + [6146] = {.lex_state = 15}, + [6147] = {.lex_state = 0, .external_lex_state = 4}, [6148] = {.lex_state = 0}, [6149] = {.lex_state = 0}, - [6150] = {.lex_state = 7}, - [6151] = {.lex_state = 15}, + [6150] = {.lex_state = 0}, + [6151] = {.lex_state = 0}, [6152] = {.lex_state = 0}, [6153] = {.lex_state = 0}, - [6154] = {.lex_state = 7}, - [6155] = {.lex_state = 7}, + [6154] = {.lex_state = 15}, + [6155] = {.lex_state = 15}, [6156] = {.lex_state = 0}, - [6157] = {.lex_state = 0}, - [6158] = {.lex_state = 7}, - [6159] = {.lex_state = 7}, + [6157] = {.lex_state = 15}, + [6158] = {.lex_state = 15}, + [6159] = {.lex_state = 0}, [6160] = {.lex_state = 0}, [6161] = {.lex_state = 0}, - [6162] = {.lex_state = 7}, + [6162] = {.lex_state = 0}, [6163] = {.lex_state = 0}, [6164] = {.lex_state = 0}, - [6165] = {.lex_state = 15}, + [6165] = {.lex_state = 0}, [6166] = {.lex_state = 15}, - [6167] = {.lex_state = 0}, - [6168] = {.lex_state = 0, .external_lex_state = 4}, + [6167] = {.lex_state = 7}, + [6168] = {.lex_state = 15}, [6169] = {.lex_state = 0}, - [6170] = {.lex_state = 0}, + [6170] = {.lex_state = 15}, [6171] = {.lex_state = 0}, [6172] = {.lex_state = 0}, - [6173] = {.lex_state = 15}, - [6174] = {.lex_state = 0}, + [6173] = {.lex_state = 0, .external_lex_state = 4}, + [6174] = {.lex_state = 7}, [6175] = {.lex_state = 0}, - [6176] = {.lex_state = 0}, - [6177] = {.lex_state = 7}, + [6176] = {.lex_state = 7}, + [6177] = {.lex_state = 0}, [6178] = {.lex_state = 0}, - [6179] = {.lex_state = 15}, - [6180] = {.lex_state = 0}, + [6179] = {.lex_state = 7}, + [6180] = {.lex_state = 7}, [6181] = {.lex_state = 0}, [6182] = {.lex_state = 0}, - [6183] = {.lex_state = 15}, + [6183] = {.lex_state = 0}, [6184] = {.lex_state = 7}, - [6185] = {.lex_state = 15}, + [6185] = {.lex_state = 0}, [6186] = {.lex_state = 0}, [6187] = {.lex_state = 0}, - [6188] = {.lex_state = 7}, - [6189] = {.lex_state = 7}, + [6188] = {.lex_state = 0}, + [6189] = {.lex_state = 0}, [6190] = {.lex_state = 0}, [6191] = {.lex_state = 0}, - [6192] = {.lex_state = 7}, - [6193] = {.lex_state = 7}, - [6194] = {.lex_state = 0}, + [6192] = {.lex_state = 0}, + [6193] = {.lex_state = 0}, + [6194] = {.lex_state = 7}, [6195] = {.lex_state = 0}, - [6196] = {.lex_state = 7}, - [6197] = {.lex_state = 0}, - [6198] = {.lex_state = 15}, - [6199] = {.lex_state = 0}, - [6200] = {.lex_state = 15}, - [6201] = {.lex_state = 0}, - [6202] = {.lex_state = 0}, - [6203] = {.lex_state = 15}, + [6196] = {.lex_state = 0}, + [6197] = {.lex_state = 0, .external_lex_state = 4}, + [6198] = {.lex_state = 0}, + [6199] = {.lex_state = 15}, + [6200] = {.lex_state = 0}, + [6201] = {.lex_state = 15}, + [6202] = {.lex_state = 15}, + [6203] = {.lex_state = 0}, [6204] = {.lex_state = 0}, [6205] = {.lex_state = 0}, [6206] = {.lex_state = 0}, [6207] = {.lex_state = 0}, - [6208] = {.lex_state = 0}, - [6209] = {.lex_state = 0}, - [6210] = {.lex_state = 0}, + [6208] = {.lex_state = 7}, + [6209] = {.lex_state = 15}, + [6210] = {.lex_state = 15}, [6211] = {.lex_state = 0}, - [6212] = {.lex_state = 0}, - [6213] = {.lex_state = 0}, + [6212] = {.lex_state = 7}, + [6213] = {.lex_state = 7}, [6214] = {.lex_state = 15}, [6215] = {.lex_state = 0}, - [6216] = {.lex_state = 0}, - [6217] = {.lex_state = 15}, - [6218] = {.lex_state = 15}, + [6216] = {.lex_state = 7}, + [6217] = {.lex_state = 7}, + [6218] = {.lex_state = 0}, [6219] = {.lex_state = 0}, - [6220] = {.lex_state = 0}, - [6221] = {.lex_state = 15}, - [6222] = {.lex_state = 15}, + [6220] = {.lex_state = 7}, + [6221] = {.lex_state = 0}, + [6222] = {.lex_state = 0}, [6223] = {.lex_state = 0}, [6224] = {.lex_state = 0}, - [6225] = {.lex_state = 15}, - [6226] = {.lex_state = 0}, - [6227] = {.lex_state = 15}, + [6225] = {.lex_state = 0}, + [6226] = {.lex_state = 15}, + [6227] = {.lex_state = 0}, [6228] = {.lex_state = 0}, - [6229] = {.lex_state = 0}, - [6230] = {.lex_state = 15}, - [6231] = {.lex_state = 15}, - [6232] = {.lex_state = 15}, + [6229] = {.lex_state = 81}, + [6230] = {.lex_state = 0}, + [6231] = {.lex_state = 0}, + [6232] = {.lex_state = 0}, [6233] = {.lex_state = 0}, [6234] = {.lex_state = 0}, - [6235] = {.lex_state = 15}, - [6236] = {.lex_state = 15}, - [6237] = {.lex_state = 0}, - [6238] = {.lex_state = 15}, - [6239] = {.lex_state = 0}, + [6235] = {.lex_state = 0}, + [6236] = {.lex_state = 0}, + [6237] = {.lex_state = 15}, + [6238] = {.lex_state = 81}, + [6239] = {.lex_state = 15}, [6240] = {.lex_state = 0}, - [6241] = {.lex_state = 7}, + [6241] = {.lex_state = 0}, [6242] = {.lex_state = 0}, - [6243] = {.lex_state = 0}, - [6244] = {.lex_state = 0}, + [6243] = {.lex_state = 7}, + [6244] = {.lex_state = 15}, [6245] = {.lex_state = 15}, [6246] = {.lex_state = 0}, - [6247] = {.lex_state = 0}, - [6248] = {.lex_state = 15}, - [6249] = {.lex_state = 15}, + [6247] = {.lex_state = 7}, + [6248] = {.lex_state = 7}, + [6249] = {.lex_state = 0}, [6250] = {.lex_state = 0}, - [6251] = {.lex_state = 15}, - [6252] = {.lex_state = 0}, + [6251] = {.lex_state = 7}, + [6252] = {.lex_state = 7}, [6253] = {.lex_state = 0}, [6254] = {.lex_state = 0}, - [6255] = {.lex_state = 0}, - [6256] = {.lex_state = 0}, - [6257] = {.lex_state = 15}, - [6258] = {.lex_state = 15}, + [6255] = {.lex_state = 7}, + [6256] = {.lex_state = 15}, + [6257] = {.lex_state = 0}, + [6258] = {.lex_state = 0}, [6259] = {.lex_state = 0}, - [6260] = {.lex_state = 0}, - [6261] = {.lex_state = 15}, + [6260] = {.lex_state = 15}, + [6261] = {.lex_state = 0}, [6262] = {.lex_state = 15}, [6263] = {.lex_state = 0}, - [6264] = {.lex_state = 15}, + [6264] = {.lex_state = 0}, [6265] = {.lex_state = 0}, [6266] = {.lex_state = 0}, [6267] = {.lex_state = 0}, @@ -19040,69 +19204,198 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6269] = {.lex_state = 0}, [6270] = {.lex_state = 0}, [6271] = {.lex_state = 15}, - [6272] = {.lex_state = 0}, + [6272] = {.lex_state = 15}, [6273] = {.lex_state = 0}, - [6274] = {.lex_state = 15}, - [6275] = {.lex_state = 15}, + [6274] = {.lex_state = 0, .external_lex_state = 5}, + [6275] = {.lex_state = 0}, [6276] = {.lex_state = 0}, - [6277] = {.lex_state = 15}, - [6278] = {.lex_state = 0}, - [6279] = {.lex_state = 0}, - [6280] = {.lex_state = 0, .external_lex_state = 5}, - [6281] = {.lex_state = 0}, - [6282] = {.lex_state = 0}, - [6283] = {.lex_state = 15}, + [6277] = {.lex_state = 0}, + [6278] = {.lex_state = 7}, + [6279] = {.lex_state = 15}, + [6280] = {.lex_state = 15}, + [6281] = {.lex_state = 15}, + [6282] = {.lex_state = 7}, + [6283] = {.lex_state = 7}, [6284] = {.lex_state = 15}, [6285] = {.lex_state = 0}, - [6286] = {.lex_state = 0}, - [6287] = {.lex_state = 15}, + [6286] = {.lex_state = 7}, + [6287] = {.lex_state = 7}, [6288] = {.lex_state = 15}, [6289] = {.lex_state = 0}, - [6290] = {.lex_state = 15}, + [6290] = {.lex_state = 7}, [6291] = {.lex_state = 0}, [6292] = {.lex_state = 0}, [6293] = {.lex_state = 0}, [6294] = {.lex_state = 0}, - [6295] = {.lex_state = 15}, - [6296] = {.lex_state = 126}, + [6295] = {.lex_state = 0}, + [6296] = {.lex_state = 0}, [6297] = {.lex_state = 0}, [6298] = {.lex_state = 0}, - [6299] = {.lex_state = 15}, - [6300] = {.lex_state = 126}, - [6301] = {.lex_state = 15}, - [6302] = {.lex_state = 126}, - [6303] = {.lex_state = 15}, - [6304] = {.lex_state = 126}, - [6305] = {.lex_state = 15}, - [6306] = {.lex_state = 126}, + [6299] = {.lex_state = 0}, + [6300] = {.lex_state = 0}, + [6301] = {.lex_state = 7}, + [6302] = {.lex_state = 0}, + [6303] = {.lex_state = 0}, + [6304] = {.lex_state = 0}, + [6305] = {.lex_state = 0}, + [6306] = {.lex_state = 0}, [6307] = {.lex_state = 15}, - [6308] = {.lex_state = 126}, + [6308] = {.lex_state = 0}, [6309] = {.lex_state = 15}, - [6310] = {.lex_state = 126}, - [6311] = {.lex_state = 15}, - [6312] = {.lex_state = 126}, - [6313] = {.lex_state = 15}, - [6314] = {.lex_state = 126}, - [6315] = {.lex_state = 15}, - [6316] = {.lex_state = 126}, - [6317] = {.lex_state = 15}, - [6318] = {.lex_state = 126}, - [6319] = {.lex_state = 15}, - [6320] = {.lex_state = 126}, - [6321] = {.lex_state = 0}, - [6322] = {.lex_state = 0}, + [6310] = {.lex_state = 0}, + [6311] = {.lex_state = 0}, + [6312] = {.lex_state = 0}, + [6313] = {.lex_state = 7}, + [6314] = {.lex_state = 15}, + [6315] = {.lex_state = 0}, + [6316] = {.lex_state = 15}, + [6317] = {.lex_state = 7}, + [6318] = {.lex_state = 7}, + [6319] = {.lex_state = 0}, + [6320] = {.lex_state = 0}, + [6321] = {.lex_state = 7}, + [6322] = {.lex_state = 7}, [6323] = {.lex_state = 0}, [6324] = {.lex_state = 0}, - [6325] = {.lex_state = 0}, - [6326] = {.lex_state = 0}, - [6327] = {.lex_state = 15}, - [6328] = {.lex_state = 15}, - [6329] = {.lex_state = 15}, + [6325] = {.lex_state = 7}, + [6326] = {.lex_state = 15}, + [6327] = {.lex_state = 0}, + [6328] = {.lex_state = 0}, + [6329] = {.lex_state = 0}, [6330] = {.lex_state = 0}, - [6331] = {.lex_state = 15}, - [6332] = {.lex_state = 0}, + [6331] = {.lex_state = 0}, + [6332] = {.lex_state = 15}, [6333] = {.lex_state = 0}, [6334] = {.lex_state = 0}, + [6335] = {.lex_state = 0}, + [6336] = {.lex_state = 15}, + [6337] = {.lex_state = 0}, + [6338] = {.lex_state = 15}, + [6339] = {.lex_state = 0}, + [6340] = {.lex_state = 0}, + [6341] = {.lex_state = 0}, + [6342] = {.lex_state = 0}, + [6343] = {.lex_state = 0}, + [6344] = {.lex_state = 0}, + [6345] = {.lex_state = 0}, + [6346] = {.lex_state = 0}, + [6347] = {.lex_state = 15}, + [6348] = {.lex_state = 0}, + [6349] = {.lex_state = 0}, + [6350] = {.lex_state = 15}, + [6351] = {.lex_state = 15}, + [6352] = {.lex_state = 0}, + [6353] = {.lex_state = 0}, + [6354] = {.lex_state = 15}, + [6355] = {.lex_state = 0}, + [6356] = {.lex_state = 0}, + [6357] = {.lex_state = 0}, + [6358] = {.lex_state = 0}, + [6359] = {.lex_state = 0}, + [6360] = {.lex_state = 0}, + [6361] = {.lex_state = 15}, + [6362] = {.lex_state = 0}, + [6363] = {.lex_state = 0}, + [6364] = {.lex_state = 15}, + [6365] = {.lex_state = 15}, + [6366] = {.lex_state = 0}, + [6367] = {.lex_state = 15}, + [6368] = {.lex_state = 0}, + [6369] = {.lex_state = 0}, + [6370] = {.lex_state = 0}, + [6371] = {.lex_state = 0}, + [6372] = {.lex_state = 0}, + [6373] = {.lex_state = 0}, + [6374] = {.lex_state = 15}, + [6375] = {.lex_state = 0}, + [6376] = {.lex_state = 0}, + [6377] = {.lex_state = 15}, + [6378] = {.lex_state = 15}, + [6379] = {.lex_state = 0}, + [6380] = {.lex_state = 15}, + [6381] = {.lex_state = 0}, + [6382] = {.lex_state = 0}, + [6383] = {.lex_state = 15}, + [6384] = {.lex_state = 0}, + [6385] = {.lex_state = 0}, + [6386] = {.lex_state = 0}, + [6387] = {.lex_state = 15}, + [6388] = {.lex_state = 0}, + [6389] = {.lex_state = 0}, + [6390] = {.lex_state = 15}, + [6391] = {.lex_state = 15}, + [6392] = {.lex_state = 0}, + [6393] = {.lex_state = 15}, + [6394] = {.lex_state = 0}, + [6395] = {.lex_state = 15}, + [6396] = {.lex_state = 0}, + [6397] = {.lex_state = 0}, + [6398] = {.lex_state = 0}, + [6399] = {.lex_state = 0}, + [6400] = {.lex_state = 15}, + [6401] = {.lex_state = 15}, + [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}, + [6409] = {.lex_state = 0}, + [6410] = {.lex_state = 0}, + [6411] = {.lex_state = 134}, + [6412] = {.lex_state = 0}, + [6413] = {.lex_state = 15}, + [6414] = {.lex_state = 0}, + [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}, + [6423] = {.lex_state = 0}, + [6424] = {.lex_state = 15}, + [6425] = {.lex_state = 134}, + [6426] = {.lex_state = 0}, + [6427] = {.lex_state = 0}, + [6428] = {.lex_state = 15}, + [6429] = {.lex_state = 134}, + [6430] = {.lex_state = 15}, + [6431] = {.lex_state = 134}, + [6432] = {.lex_state = 15}, + [6433] = {.lex_state = 134}, + [6434] = {.lex_state = 15}, + [6435] = {.lex_state = 134}, + [6436] = {.lex_state = 15}, + [6437] = {.lex_state = 134}, + [6438] = {.lex_state = 15}, + [6439] = {.lex_state = 134}, + [6440] = {.lex_state = 15}, + [6441] = {.lex_state = 134}, + [6442] = {.lex_state = 15}, + [6443] = {.lex_state = 134}, + [6444] = {.lex_state = 15}, + [6445] = {.lex_state = 134}, + [6446] = {.lex_state = 15}, + [6447] = {.lex_state = 134}, + [6448] = {.lex_state = 15}, + [6449] = {.lex_state = 134}, + [6450] = {.lex_state = 15}, + [6451] = {.lex_state = 7}, + [6452] = {.lex_state = 0}, + [6453] = {.lex_state = 15}, + [6454] = {.lex_state = 15}, + [6455] = {.lex_state = 0}, + [6456] = {.lex_state = 0}, + [6457] = {.lex_state = 0}, + [6458] = {.lex_state = 0}, + [6459] = {.lex_state = 15}, + [6460] = {.lex_state = 0}, + [6461] = {.lex_state = 0}, + [6462] = {.lex_state = 0}, + [6463] = {.lex_state = 7}, }; enum { @@ -19168,11 +19461,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1), [anon_sym_print] = ACTIONS(1), [anon_sym_namespace] = ACTIONS(1), + [anon_sym_include] = ACTIONS(1), + [anon_sym_include_once] = ACTIONS(1), + [anon_sym_require] = ACTIONS(1), + [anon_sym_require_once] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_self] = ACTIONS(1), [anon_sym_parent] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_LT_LT_LT] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), @@ -19182,7 +19483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1), [anon_sym_throw] = ACTIONS(1), [anon_sym_echo] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), [anon_sym_unset] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), @@ -19196,7 +19496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), [anon_sym_default] = ACTIONS(1), [anon_sym_foreach] = ACTIONS(1), [anon_sym_as2] = ACTIONS(1), @@ -19220,6 +19519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(1), [anon_sym_NULL] = ACTIONS(1), [sym_string] = ACTIONS(1), + [aux_sym_expression_tree_token1] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), @@ -19253,10 +19553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_include] = ACTIONS(1), - [anon_sym_include_once] = ACTIONS(1), - [anon_sym_require] = ACTIONS(1), - [anon_sym_require_once] = ACTIONS(1), [anon_sym_list] = ACTIONS(1), [anon_sym_PIPE_GT] = ACTIONS(1), [anon_sym_QMARK_QMARK] = ACTIONS(1), @@ -19272,8 +19568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_LT_EQ_GT] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), @@ -19339,12 +19633,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__embedded_opening_brace] = ACTIONS(1), }, [1] = { - [sym_script] = STATE(6195), - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_script] = STATE(6059), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(38), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), + [sym__expression] = STATE(2708), [sym_empty_statement] = STATE(38), [sym_expression_statement] = STATE(38), [sym_compound_statement] = STATE(38), @@ -19367,6 +19662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = STATE(1929), [sym_false] = STATE(1929), [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -19374,28 +19670,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), + [sym_selection_expression] = STATE(1892), [sym_alias_declaration] = STATE(38), [sym_function_declaration] = STATE(38), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), + [sym__function_declaration_header] = STATE(4853), + [sym_parameters] = STATE(4449), [sym_trait_declaration] = STATE(38), [sym_interface_declaration] = STATE(38), [sym_class_declaration] = STATE(38), @@ -19405,17 +19701,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_class_declaration] = STATE(38), [sym_enum_class_label] = STATE(1929), [sym_namespace_declaration] = STATE(38), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(38), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_script_token1] = ACTIONS(9), @@ -19429,64 +19725,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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), @@ -19503,11 +19799,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(2), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), + [sym__expression] = STATE(2632), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_compound_statement] = STATE(2), @@ -19530,6 +19827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = STATE(1929), [sym_false] = STATE(1929), [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -19537,28 +19835,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), + [sym_selection_expression] = STATE(1892), [sym_alias_declaration] = STATE(2), [sym_function_declaration] = STATE(2), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4449), [sym_trait_declaration] = STATE(2), [sym_interface_declaration] = STATE(2), [sym_class_declaration] = STATE(2), @@ -19568,17 +19866,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_class_declaration] = STATE(2), [sym_enum_class_label] = STATE(1929), [sym_namespace_declaration] = STATE(2), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(2), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(129), [sym_variable] = ACTIONS(132), [sym_pipe_variable] = ACTIONS(135), @@ -19590,67 +19888,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(150), [anon_sym_print] = ACTIONS(153), [anon_sym_namespace] = ACTIONS(156), - [anon_sym_BSLASH] = ACTIONS(159), - [anon_sym_self] = ACTIONS(162), - [anon_sym_parent] = ACTIONS(162), - [anon_sym_static] = ACTIONS(162), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(170), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_return] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(182), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_echo] = ACTIONS(188), - [anon_sym_unset] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_concurrent] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_function] = ACTIONS(203), - [anon_sym_const] = ACTIONS(206), - [anon_sym_if] = ACTIONS(209), - [anon_sym_switch] = ACTIONS(212), - [anon_sym_case] = ACTIONS(215), - [anon_sym_default] = ACTIONS(215), - [anon_sym_foreach] = ACTIONS(217), - [anon_sym_while] = ACTIONS(220), - [anon_sym_do] = ACTIONS(223), - [anon_sym_for] = ACTIONS(226), - [anon_sym_try] = ACTIONS(229), - [anon_sym_using] = ACTIONS(232), - [sym_float] = ACTIONS(235), - [sym_integer] = ACTIONS(238), - [anon_sym_true] = ACTIONS(241), - [anon_sym_True] = ACTIONS(241), - [anon_sym_TRUE] = ACTIONS(241), - [anon_sym_false] = ACTIONS(244), - [anon_sym_False] = ACTIONS(244), - [anon_sym_FALSE] = ACTIONS(244), - [anon_sym_null] = ACTIONS(247), - [anon_sym_Null] = ACTIONS(247), - [anon_sym_NULL] = ACTIONS(247), - [sym_string] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_array] = ACTIONS(256), - [anon_sym_varray] = ACTIONS(256), - [anon_sym_darray] = ACTIONS(256), - [anon_sym_vec] = ACTIONS(256), - [anon_sym_dict] = ACTIONS(256), - [anon_sym_keyset] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_include] = ACTIONS(265), - [anon_sym_include_once] = ACTIONS(265), - [anon_sym_require] = ACTIONS(268), - [anon_sym_require_once] = ACTIONS(268), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(250), - [anon_sym_DASH_DASH] = ACTIONS(250), + [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(171), + [anon_sym_LT_LT_LT] = ACTIONS(174), + [anon_sym_RBRACE] = ACTIONS(177), + [anon_sym_LBRACE] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(188), + [anon_sym_continue] = ACTIONS(191), + [anon_sym_throw] = ACTIONS(194), + [anon_sym_echo] = ACTIONS(197), + [anon_sym_unset] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_concurrent] = ACTIONS(206), + [anon_sym_use] = ACTIONS(209), + [anon_sym_function] = ACTIONS(212), + [anon_sym_const] = ACTIONS(215), + [anon_sym_if] = ACTIONS(218), + [anon_sym_switch] = ACTIONS(221), + [anon_sym_case] = ACTIONS(224), + [anon_sym_default] = ACTIONS(224), + [anon_sym_foreach] = ACTIONS(226), + [anon_sym_while] = ACTIONS(229), + [anon_sym_do] = ACTIONS(232), + [anon_sym_for] = ACTIONS(235), + [anon_sym_try] = ACTIONS(238), + [anon_sym_using] = ACTIONS(241), + [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), @@ -19667,33 +19965,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(2), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_compound_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_throw_statement] = STATE(5), - [sym_echo_statement] = STATE(5), - [sym_unset_statement] = STATE(5), - [sym_concurrent_statement] = STATE(5), - [sym_use_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_foreach_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_try_statement] = STATE(5), - [sym_using_statement] = STATE(5), + [sym__expression] = STATE(2632), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_throw_statement] = STATE(2), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_concurrent_statement] = STATE(2), + [sym_use_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [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), @@ -19701,48 +20001,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5), - [sym_function_declaration] = STATE(5), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5), - [sym_interface_declaration] = STATE(5), - [sym_class_declaration] = STATE(5), - [sym_const_declaration] = STATE(5), - [sym_enum_declaration] = STATE(5), - [sym_abstract_enum_class_declaration] = STATE(5), - [sym_enum_class_declaration] = STATE(5), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(2), + [sym_function_declaration] = STATE(2), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_const_declaration] = STATE(2), + [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_namespace_declaration] = STATE(5), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(5), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(2), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -19754,110 +20054,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_case] = ACTIONS(345), - [anon_sym_default] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(317), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(319), + [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(337), + [anon_sym_use] = ACTIONS(339), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_case] = ACTIONS(347), + [anon_sym_default] = ACTIONS(347), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [4] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(2), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_compound_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_throw_statement] = STATE(6), - [sym_echo_statement] = STATE(6), - [sym_unset_statement] = STATE(6), - [sym_concurrent_statement] = STATE(6), - [sym_use_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_foreach_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_try_statement] = STATE(6), - [sym_using_statement] = STATE(6), + [sym__expression] = STATE(2632), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_throw_statement] = STATE(2), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_concurrent_statement] = STATE(2), + [sym_use_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [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), @@ -19865,48 +20167,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(6), - [sym_function_declaration] = STATE(6), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(6), - [sym_interface_declaration] = STATE(6), - [sym_class_declaration] = STATE(6), - [sym_const_declaration] = STATE(6), - [sym_enum_declaration] = STATE(6), - [sym_abstract_enum_class_declaration] = STATE(6), - [sym_enum_class_declaration] = STATE(6), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(2), + [sym_function_declaration] = STATE(2), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_const_declaration] = STATE(2), + [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_namespace_declaration] = STATE(6), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(6), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(2), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -19918,110 +20220,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_case] = ACTIONS(375), - [anon_sym_default] = ACTIONS(375), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(317), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(375), + [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(337), + [anon_sym_use] = ACTIONS(339), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_case] = ACTIONS(377), + [anon_sym_default] = ACTIONS(377), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [5] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(3), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_throw_statement] = STATE(2), - [sym_echo_statement] = STATE(2), - [sym_unset_statement] = STATE(2), - [sym_concurrent_statement] = STATE(2), - [sym_use_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_foreach_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_try_statement] = STATE(2), - [sym_using_statement] = STATE(2), + [sym__expression] = STATE(2632), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_compound_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_throw_statement] = STATE(3), + [sym_echo_statement] = STATE(3), + [sym_unset_statement] = STATE(3), + [sym_concurrent_statement] = STATE(3), + [sym_use_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_foreach_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [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), @@ -20029,48 +20333,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(2), - [sym_function_declaration] = STATE(2), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_const_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_abstract_enum_class_declaration] = STATE(2), - [sym_enum_class_declaration] = STATE(2), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(3), + [sym_function_declaration] = STATE(3), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(3), + [sym_interface_declaration] = STATE(3), + [sym_class_declaration] = STATE(3), + [sym_const_declaration] = STATE(3), + [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_namespace_declaration] = STATE(2), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(2), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(3), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20082,110 +20386,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(379), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(317), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(379), + [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(337), + [anon_sym_use] = ACTIONS(339), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_case] = ACTIONS(381), + [anon_sym_default] = ACTIONS(381), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [6] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(4), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_compound_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_throw_statement] = STATE(2), - [sym_echo_statement] = STATE(2), - [sym_unset_statement] = STATE(2), - [sym_concurrent_statement] = STATE(2), - [sym_use_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_foreach_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_try_statement] = STATE(2), - [sym_using_statement] = STATE(2), + [sym__expression] = STATE(2632), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_compound_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_throw_statement] = STATE(4), + [sym_echo_statement] = STATE(4), + [sym_unset_statement] = STATE(4), + [sym_concurrent_statement] = STATE(4), + [sym_use_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_foreach_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [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), @@ -20193,48 +20499,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(2), - [sym_function_declaration] = STATE(2), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(2), - [sym_interface_declaration] = STATE(2), - [sym_class_declaration] = STATE(2), - [sym_const_declaration] = STATE(2), - [sym_enum_declaration] = STATE(2), - [sym_abstract_enum_class_declaration] = STATE(2), - [sym_enum_class_declaration] = STATE(2), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(4), + [sym_function_declaration] = STATE(4), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_const_declaration] = STATE(4), + [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_namespace_declaration] = STATE(2), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(2), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(4), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20246,110 +20552,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_case] = ACTIONS(383), - [anon_sym_default] = ACTIONS(383), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(317), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(383), + [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(337), + [anon_sym_use] = ACTIONS(339), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_case] = ACTIONS(385), + [anon_sym_default] = ACTIONS(385), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [7] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -20357,161 +20665,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(393), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [8] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -20519,139 +20829,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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_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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [9] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), + [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__single_parameter_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_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(449), + [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), + }, + [10] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(9), + [sym_heredoc] = STATE(1929), + [sym__expression] = STATE(2642), [sym_empty_statement] = STATE(9), [sym_expression_statement] = STATE(9), [sym_compound_statement] = STATE(9), @@ -20674,6 +21149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = STATE(1929), [sym_false] = STATE(1929), [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -20681,28 +21157,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), + [sym_selection_expression] = STATE(1892), [sym_alias_declaration] = STATE(9), [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), [sym_trait_declaration] = STATE(9), [sym_interface_declaration] = STATE(9), [sym_class_declaration] = STATE(9), @@ -20712,130 +21188,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_class_declaration] = STATE(9), [sym_enum_class_label] = STATE(1929), [sym_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(129), - [sym_variable] = ACTIONS(132), - [sym_pipe_variable] = ACTIONS(135), - [anon_sym_type] = ACTIONS(445), - [anon_sym_newtype] = ACTIONS(445), - [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(448), - [anon_sym_BSLASH] = ACTIONS(159), - [anon_sym_self] = ACTIONS(162), - [anon_sym_parent] = ACTIONS(162), - [anon_sym_static] = ACTIONS(162), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_return] = ACTIONS(457), - [anon_sym_break] = ACTIONS(460), - [anon_sym_continue] = ACTIONS(463), - [anon_sym_throw] = ACTIONS(466), - [anon_sym_echo] = ACTIONS(469), - [anon_sym_unset] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_concurrent] = ACTIONS(475), - [anon_sym_use] = ACTIONS(478), - [anon_sym_function] = ACTIONS(203), - [anon_sym_const] = ACTIONS(481), - [anon_sym_if] = ACTIONS(484), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_foreach] = ACTIONS(490), - [anon_sym_while] = ACTIONS(493), - [anon_sym_do] = ACTIONS(496), - [anon_sym_for] = ACTIONS(499), - [anon_sym_try] = ACTIONS(502), - [anon_sym_using] = ACTIONS(505), - [sym_float] = ACTIONS(235), - [sym_integer] = ACTIONS(238), - [anon_sym_true] = ACTIONS(241), - [anon_sym_True] = ACTIONS(241), - [anon_sym_TRUE] = ACTIONS(241), - [anon_sym_false] = ACTIONS(244), - [anon_sym_False] = ACTIONS(244), - [anon_sym_FALSE] = ACTIONS(244), - [anon_sym_null] = ACTIONS(247), - [anon_sym_Null] = ACTIONS(247), - [anon_sym_NULL] = ACTIONS(247), - [sym_string] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_array] = ACTIONS(256), - [anon_sym_varray] = ACTIONS(256), - [anon_sym_darray] = ACTIONS(256), - [anon_sym_vec] = ACTIONS(256), - [anon_sym_dict] = ACTIONS(256), - [anon_sym_keyset] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_include] = ACTIONS(265), - [anon_sym_include_once] = ACTIONS(265), - [anon_sym_require] = ACTIONS(268), - [anon_sym_require_once] = ACTIONS(268), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(250), - [anon_sym_DASH_DASH] = ACTIONS(250), - [anon_sym_await] = ACTIONS(277), - [anon_sym_async] = ACTIONS(280), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_trait] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(511), - [anon_sym_class] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(301), - [sym_final_modifier] = ACTIONS(523), - [sym_xhp_modifier] = ACTIONS(526), - [sym_xhp_identifier] = ACTIONS(310), - [sym_xhp_class_identifier] = ACTIONS(135), + [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(451), + [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), }, - [10] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [11] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(7), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_compound_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_echo_statement] = STATE(22), - [sym_unset_statement] = STATE(22), - [sym_concurrent_statement] = STATE(22), - [sym_use_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_foreach_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_using_statement] = STATE(22), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_compound_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_echo_statement] = STATE(7), + [sym_unset_statement] = STATE(7), + [sym_concurrent_statement] = STATE(7), + [sym_use_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_foreach_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [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), @@ -20843,161 +21321,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(22), - [sym_function_declaration] = STATE(22), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(22), - [sym_interface_declaration] = STATE(22), - [sym_class_declaration] = STATE(22), - [sym_const_declaration] = STATE(22), - [sym_enum_declaration] = STATE(22), - [sym_abstract_enum_class_declaration] = STATE(22), - [sym_enum_class_declaration] = STATE(22), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(7), + [sym_function_declaration] = STATE(7), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(7), + [sym_interface_declaration] = STATE(7), + [sym_class_declaration] = STATE(7), + [sym_const_declaration] = STATE(7), + [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_namespace_declaration] = STATE(22), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(7), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(22), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(7), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(453), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [11] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_compound_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_echo_statement] = STATE(12), - [sym_unset_statement] = STATE(12), - [sym_concurrent_statement] = STATE(12), - [sym_use_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_foreach_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_using_statement] = STATE(12), + [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), @@ -21005,161 +21485,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(12), - [sym_function_declaration] = STATE(12), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(12), - [sym_interface_declaration] = STATE(12), - [sym_class_declaration] = STATE(12), - [sym_const_declaration] = STATE(12), - [sym_enum_declaration] = STATE(12), - [sym_abstract_enum_class_declaration] = STATE(12), - [sym_enum_class_declaration] = STATE(12), + [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(12), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(12), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(455), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [12] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [13] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(12), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_compound_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_echo_statement] = STATE(12), + [sym_unset_statement] = STATE(12), + [sym_concurrent_statement] = STATE(12), + [sym_use_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_foreach_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [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), @@ -21167,161 +21649,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(12), + [sym_function_declaration] = STATE(12), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(12), + [sym_interface_declaration] = STATE(12), + [sym_class_declaration] = STATE(12), + [sym_const_declaration] = STATE(12), + [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_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(12), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(12), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(457), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [13] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_compound_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_echo_statement] = STATE(15), - [sym_unset_statement] = STATE(15), - [sym_concurrent_statement] = STATE(15), - [sym_use_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_foreach_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_using_statement] = STATE(15), + [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), @@ -21329,161 +21813,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(15), - [sym_function_declaration] = STATE(15), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(15), - [sym_interface_declaration] = STATE(15), - [sym_class_declaration] = STATE(15), - [sym_const_declaration] = STATE(15), - [sym_enum_declaration] = STATE(15), - [sym_abstract_enum_class_declaration] = STATE(15), - [sym_enum_class_declaration] = STATE(15), + [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(15), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(15), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(459), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [14] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [15] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(14), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_compound_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_echo_statement] = STATE(26), - [sym_unset_statement] = STATE(26), - [sym_concurrent_statement] = STATE(26), - [sym_use_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_foreach_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_using_statement] = STATE(26), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_compound_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_throw_statement] = STATE(14), + [sym_echo_statement] = STATE(14), + [sym_unset_statement] = STATE(14), + [sym_concurrent_statement] = STATE(14), + [sym_use_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_foreach_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [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), @@ -21491,161 +21977,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(26), - [sym_function_declaration] = STATE(26), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(26), - [sym_interface_declaration] = STATE(26), - [sym_class_declaration] = STATE(26), - [sym_const_declaration] = STATE(26), - [sym_enum_declaration] = STATE(26), - [sym_abstract_enum_class_declaration] = STATE(26), - [sym_enum_class_declaration] = STATE(26), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(14), + [sym_interface_declaration] = STATE(14), + [sym_class_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [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_namespace_declaration] = STATE(26), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(14), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(26), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(14), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(461), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [15] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -21653,161 +22141,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(463), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [16] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [17] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(16), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_compound_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_echo_statement] = STATE(35), - [sym_unset_statement] = STATE(35), - [sym_concurrent_statement] = STATE(35), - [sym_use_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_foreach_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_using_statement] = STATE(35), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_compound_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_echo_statement] = STATE(16), + [sym_unset_statement] = STATE(16), + [sym_concurrent_statement] = STATE(16), + [sym_use_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_foreach_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [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), @@ -21815,161 +22305,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(35), - [sym_function_declaration] = STATE(35), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(35), - [sym_interface_declaration] = STATE(35), - [sym_class_declaration] = STATE(35), - [sym_const_declaration] = STATE(35), - [sym_enum_declaration] = STATE(35), - [sym_abstract_enum_class_declaration] = STATE(35), - [sym_enum_class_declaration] = STATE(35), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(16), + [sym_function_declaration] = STATE(16), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(16), + [sym_interface_declaration] = STATE(16), + [sym_class_declaration] = STATE(16), + [sym_const_declaration] = STATE(16), + [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_namespace_declaration] = STATE(35), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(16), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(35), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(16), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(465), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [17] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_compound_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_echo_statement] = STATE(18), - [sym_unset_statement] = STATE(18), - [sym_concurrent_statement] = STATE(18), - [sym_use_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_foreach_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_using_statement] = STATE(18), + [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), @@ -21977,161 +22469,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(18), - [sym_function_declaration] = STATE(18), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(18), - [sym_interface_declaration] = STATE(18), - [sym_class_declaration] = STATE(18), - [sym_const_declaration] = STATE(18), - [sym_enum_declaration] = STATE(18), - [sym_abstract_enum_class_declaration] = STATE(18), - [sym_enum_class_declaration] = STATE(18), + [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(18), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(18), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(467), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [18] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -22139,161 +22633,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(41), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(469), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [19] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [20] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(18), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_compound_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_echo_statement] = STATE(7), - [sym_unset_statement] = STATE(7), - [sym_concurrent_statement] = STATE(7), - [sym_use_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_foreach_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_using_statement] = STATE(7), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_compound_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_echo_statement] = STATE(18), + [sym_unset_statement] = STATE(18), + [sym_concurrent_statement] = STATE(18), + [sym_use_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_foreach_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [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), @@ -22301,139 +22797,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(7), - [sym_function_declaration] = STATE(7), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(7), - [sym_interface_declaration] = STATE(7), - [sym_class_declaration] = STATE(7), - [sym_const_declaration] = STATE(7), - [sym_enum_declaration] = STATE(7), - [sym_abstract_enum_class_declaration] = STATE(7), - [sym_enum_class_declaration] = STATE(7), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(18), + [sym_function_declaration] = STATE(18), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(18), + [sym_interface_declaration] = STATE(18), + [sym_class_declaration] = STATE(18), + [sym_const_declaration] = STATE(18), + [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_namespace_declaration] = STATE(7), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(18), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(7), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(18), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(471), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [20] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), + [sym__expression] = STATE(2642), [sym_empty_statement] = STATE(39), [sym_expression_statement] = STATE(39), [sym_compound_statement] = STATE(39), @@ -22456,6 +22953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = STATE(1929), [sym_false] = STATE(1929), [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -22463,28 +22961,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), + [sym_selection_expression] = STATE(1892), [sym_alias_declaration] = STATE(39), [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), + [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), @@ -22494,292 +22992,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_class_declaration] = STATE(39), [sym_enum_class_label] = STATE(1929), [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), - [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(439), - [sym_xhp_modifier] = ACTIONS(441), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [21] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [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_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(8), - [sym_function_declaration] = STATE(8), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [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(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(8), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(473), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [22] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(21), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_compound_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_throw_statement] = STATE(21), + [sym_echo_statement] = STATE(21), + [sym_unset_statement] = STATE(21), + [sym_concurrent_statement] = STATE(21), + [sym_use_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_foreach_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [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), @@ -22787,139 +23125,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(21), + [sym_function_declaration] = STATE(21), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(21), + [sym_interface_declaration] = STATE(21), + [sym_class_declaration] = STATE(21), + [sym_const_declaration] = STATE(21), + [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_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(21), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(21), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(475), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [23] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), + [sym__expression] = STATE(2708), [sym_empty_statement] = STATE(40), [sym_expression_statement] = STATE(40), [sym_compound_statement] = STATE(40), @@ -22942,6 +23281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = STATE(1929), [sym_false] = STATE(1929), [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -22949,28 +23289,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), + [sym_selection_expression] = STATE(1892), [sym_alias_declaration] = STATE(40), [sym_function_declaration] = STATE(40), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), + [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), @@ -22980,18 +23320,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_class_declaration] = STATE(40), [sym_enum_class_label] = STATE(1929), [sym_namespace_declaration] = STATE(40), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(1733), - [ts_builtin_sym_end] = ACTIONS(555), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(477), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -23003,64 +23343,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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), @@ -23077,33 +23417,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_compound_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_echo_statement] = STATE(24), - [sym_unset_statement] = STATE(24), - [sym_concurrent_statement] = STATE(24), - [sym_use_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_foreach_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_using_statement] = STATE(24), + [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), @@ -23111,161 +23453,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(24), - [sym_function_declaration] = STATE(24), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(24), - [sym_interface_declaration] = STATE(24), - [sym_class_declaration] = STATE(24), - [sym_const_declaration] = STATE(24), - [sym_enum_declaration] = STATE(24), - [sym_abstract_enum_class_declaration] = STATE(24), - [sym_enum_class_declaration] = STATE(24), + [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(24), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(29), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(24), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(168), - [sym_identifier] = ACTIONS(129), - [sym_variable] = ACTIONS(132), - [sym_pipe_variable] = ACTIONS(135), - [anon_sym_type] = ACTIONS(557), - [anon_sym_newtype] = ACTIONS(557), - [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(560), - [anon_sym_BSLASH] = ACTIONS(159), - [anon_sym_self] = ACTIONS(162), - [anon_sym_parent] = ACTIONS(162), - [anon_sym_static] = ACTIONS(162), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(578), - [anon_sym_echo] = ACTIONS(581), - [anon_sym_unset] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_concurrent] = ACTIONS(587), - [anon_sym_use] = ACTIONS(590), - [anon_sym_function] = ACTIONS(203), - [anon_sym_const] = ACTIONS(593), - [anon_sym_if] = ACTIONS(596), - [anon_sym_switch] = ACTIONS(599), - [anon_sym_foreach] = ACTIONS(602), - [anon_sym_while] = ACTIONS(605), - [anon_sym_do] = ACTIONS(608), - [anon_sym_for] = ACTIONS(611), - [anon_sym_try] = ACTIONS(614), - [anon_sym_using] = ACTIONS(617), - [sym_float] = ACTIONS(235), - [sym_integer] = ACTIONS(238), - [anon_sym_true] = ACTIONS(241), - [anon_sym_True] = ACTIONS(241), - [anon_sym_TRUE] = ACTIONS(241), - [anon_sym_false] = ACTIONS(244), - [anon_sym_False] = ACTIONS(244), - [anon_sym_FALSE] = ACTIONS(244), - [anon_sym_null] = ACTIONS(247), - [anon_sym_Null] = ACTIONS(247), - [anon_sym_NULL] = ACTIONS(247), - [sym_string] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_array] = ACTIONS(256), - [anon_sym_varray] = ACTIONS(256), - [anon_sym_darray] = ACTIONS(256), - [anon_sym_vec] = ACTIONS(256), - [anon_sym_dict] = ACTIONS(256), - [anon_sym_keyset] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_include] = ACTIONS(265), - [anon_sym_include_once] = ACTIONS(265), - [anon_sym_require] = ACTIONS(268), - [anon_sym_require_once] = ACTIONS(268), - [anon_sym_list] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(250), - [anon_sym_DASH_DASH] = ACTIONS(250), - [anon_sym_await] = ACTIONS(277), - [anon_sym_async] = ACTIONS(280), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_trait] = ACTIONS(620), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_class] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(629), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_POUND] = ACTIONS(301), - [sym_final_modifier] = ACTIONS(635), - [sym_xhp_modifier] = ACTIONS(638), - [sym_xhp_identifier] = ACTIONS(310), - [sym_xhp_class_identifier] = ACTIONS(135), + [aux_sym_script_repeat1] = STATE(29), + [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(479), + [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), }, [25] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_compound_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_echo_statement] = STATE(27), - [sym_unset_statement] = STATE(27), - [sym_concurrent_statement] = STATE(27), - [sym_use_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_foreach_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_using_statement] = STATE(27), + [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), @@ -23273,161 +23617,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(27), - [sym_function_declaration] = STATE(27), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(27), - [sym_interface_declaration] = STATE(27), - [sym_class_declaration] = STATE(27), - [sym_const_declaration] = STATE(27), - [sym_enum_declaration] = STATE(27), - [sym_abstract_enum_class_declaration] = STATE(27), - [sym_enum_class_declaration] = STATE(27), + [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(27), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(8), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(27), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(8), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(481), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [26] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -23435,161 +23781,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(483), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [27] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(26), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_compound_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_throw_statement] = STATE(26), + [sym_echo_statement] = STATE(26), + [sym_unset_statement] = STATE(26), + [sym_concurrent_statement] = STATE(26), + [sym_use_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_foreach_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [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), @@ -23597,161 +23945,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(26), + [sym_function_declaration] = STATE(26), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(26), + [sym_interface_declaration] = STATE(26), + [sym_class_declaration] = STATE(26), + [sym_const_declaration] = STATE(26), + [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_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(26), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(26), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(485), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [28] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_compound_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_echo_statement] = STATE(33), - [sym_unset_statement] = STATE(33), - [sym_concurrent_statement] = STATE(33), - [sym_use_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_foreach_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_using_statement] = STATE(33), + [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), @@ -23759,161 +24109,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(33), - [sym_function_declaration] = STATE(33), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(33), - [sym_interface_declaration] = STATE(33), - [sym_class_declaration] = STATE(33), - [sym_const_declaration] = STATE(33), - [sym_enum_declaration] = STATE(33), - [sym_abstract_enum_class_declaration] = STATE(33), - [sym_enum_class_declaration] = STATE(33), + [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(33), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(33), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(647), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(487), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [29] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -23921,161 +24273,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(489), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [30] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [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__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), @@ -24083,161 +24437,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(29), - [sym_function_declaration] = STATE(29), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [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_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(29), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(34), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(1733), + [aux_sym_script_repeat1] = STATE(34), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(491), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [31] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -24245,161 +24601,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(28), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(28), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(493), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [32] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_compound_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_throw_statement] = STATE(31), - [sym_echo_statement] = STATE(31), - [sym_unset_statement] = STATE(31), - [sym_concurrent_statement] = STATE(31), - [sym_use_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_foreach_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_using_statement] = STATE(31), + [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), @@ -24407,161 +24765,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(31), - [sym_function_declaration] = STATE(31), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(31), - [sym_interface_declaration] = STATE(31), - [sym_class_declaration] = STATE(31), - [sym_const_declaration] = STATE(31), - [sym_enum_declaration] = STATE(31), - [sym_abstract_enum_class_declaration] = STATE(31), - [sym_enum_class_declaration] = STATE(31), + [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(31), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(31), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(495), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [33] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(32), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_compound_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_echo_statement] = STATE(32), + [sym_unset_statement] = STATE(32), + [sym_concurrent_statement] = STATE(32), + [sym_use_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_foreach_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [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), @@ -24569,161 +24929,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(32), + [sym_function_declaration] = STATE(32), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(32), + [sym_interface_declaration] = STATE(32), + [sym_class_declaration] = STATE(32), + [sym_const_declaration] = STATE(32), + [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_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(32), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(32), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(497), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [34] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_compound_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_throw_statement] = STATE(36), - [sym_echo_statement] = STATE(36), - [sym_unset_statement] = STATE(36), - [sym_concurrent_statement] = STATE(36), - [sym_use_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_foreach_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_try_statement] = STATE(36), - [sym_using_statement] = STATE(36), + [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), @@ -24731,161 +25093,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(36), - [sym_function_declaration] = STATE(36), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(36), - [sym_interface_declaration] = STATE(36), - [sym_class_declaration] = STATE(36), - [sym_const_declaration] = STATE(36), - [sym_enum_declaration] = STATE(36), - [sym_abstract_enum_class_declaration] = STATE(36), - [sym_enum_class_declaration] = STATE(36), + [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(36), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(36), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(499), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [35] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -24893,161 +25257,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(501), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [36] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(35), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [sym__expression] = STATE(2642), + [sym_empty_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_compound_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_echo_statement] = STATE(35), + [sym_unset_statement] = STATE(35), + [sym_concurrent_statement] = STATE(35), + [sym_use_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_foreach_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [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), @@ -25055,161 +25421,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(35), + [sym_function_declaration] = STATE(35), + [sym__function_declaration_header] = STATE(4995), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(35), + [sym_interface_declaration] = STATE(35), + [sym_class_declaration] = STATE(35), + [sym_const_declaration] = STATE(35), + [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_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(35), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_script_repeat1] = STATE(35), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(503), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [37] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(37), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [sym__expression] = STATE(2708), + [sym_empty_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_compound_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_echo_statement] = STATE(37), + [sym_unset_statement] = STATE(37), + [sym_concurrent_statement] = STATE(37), + [sym_use_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_foreach_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [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), @@ -25217,161 +25585,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(37), + [sym_function_declaration] = STATE(37), + [sym__function_declaration_header] = STATE(4853), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(37), + [sym_interface_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_const_declaration] = STATE(37), + [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_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(37), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), - [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(439), - [sym_xhp_modifier] = ACTIONS(441), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [aux_sym_script_repeat1] = STATE(37), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(177), + [sym_identifier] = ACTIONS(129), + [sym_variable] = ACTIONS(132), + [sym_pipe_variable] = ACTIONS(135), + [anon_sym_type] = ACTIONS(505), + [anon_sym_newtype] = ACTIONS(505), + [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(508), + [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(511), + [anon_sym_LT_LT_LT] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_return] = ACTIONS(520), + [anon_sym_break] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_throw] = ACTIONS(529), + [anon_sym_echo] = ACTIONS(532), + [anon_sym_unset] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_concurrent] = ACTIONS(538), + [anon_sym_use] = ACTIONS(541), + [anon_sym_function] = ACTIONS(212), + [anon_sym_const] = ACTIONS(544), + [anon_sym_if] = ACTIONS(547), + [anon_sym_switch] = ACTIONS(550), + [anon_sym_foreach] = ACTIONS(553), + [anon_sym_while] = ACTIONS(556), + [anon_sym_do] = ACTIONS(559), + [anon_sym_for] = ACTIONS(562), + [anon_sym_try] = ACTIONS(565), + [anon_sym_using] = ACTIONS(568), + [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(571), + [anon_sym_interface] = ACTIONS(574), + [anon_sym_class] = ACTIONS(577), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_abstract] = ACTIONS(583), + [anon_sym_POUND] = ACTIONS(301), + [sym_final_modifier] = ACTIONS(586), + [sym_xhp_modifier] = ACTIONS(589), + [sym_xhp_identifier] = ACTIONS(310), + [sym_xhp_class_identifier] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [38] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(37), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), - [sym_empty_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_compound_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_echo_statement] = STATE(24), - [sym_unset_statement] = STATE(24), - [sym_concurrent_statement] = STATE(24), - [sym_use_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_foreach_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_using_statement] = STATE(24), + [sym__expression] = STATE(2708), + [sym_empty_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_compound_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_echo_statement] = STATE(37), + [sym_unset_statement] = STATE(37), + [sym_concurrent_statement] = STATE(37), + [sym_use_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_foreach_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [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), @@ -25379,49 +25749,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(24), - [sym_function_declaration] = STATE(24), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(24), - [sym_interface_declaration] = STATE(24), - [sym_class_declaration] = STATE(24), - [sym_const_declaration] = STATE(24), - [sym_enum_declaration] = STATE(24), - [sym_abstract_enum_class_declaration] = STATE(24), - [sym_enum_class_declaration] = STATE(24), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(37), + [sym_function_declaration] = STATE(37), + [sym__function_declaration_header] = STATE(4853), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(37), + [sym_interface_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_const_declaration] = STATE(37), + [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_namespace_declaration] = STATE(24), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(37), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(24), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(555), + [aux_sym_script_repeat1] = STATE(37), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(477), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25433,64 +25803,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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), @@ -25507,33 +25877,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_compound_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_echo_statement] = STATE(9), - [sym_unset_statement] = STATE(9), - [sym_concurrent_statement] = STATE(9), - [sym_use_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_foreach_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_using_statement] = STATE(9), + [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), @@ -25541,161 +25913,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(9), - [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_const_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_abstract_enum_class_declaration] = STATE(9), - [sym_enum_class_declaration] = STATE(9), + [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(9), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), - [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(439), - [sym_xhp_modifier] = ACTIONS(441), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [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_comment] = ACTIONS(3), }, [40] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(37), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), - [sym_empty_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_compound_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_echo_statement] = STATE(24), - [sym_unset_statement] = STATE(24), - [sym_concurrent_statement] = STATE(24), - [sym_use_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_foreach_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_using_statement] = STATE(24), + [sym__expression] = STATE(2708), + [sym_empty_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_compound_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_echo_statement] = STATE(37), + [sym_unset_statement] = STATE(37), + [sym_concurrent_statement] = STATE(37), + [sym_use_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_foreach_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [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), @@ -25703,49 +26077,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(24), - [sym_function_declaration] = STATE(24), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(24), - [sym_interface_declaration] = STATE(24), - [sym_class_declaration] = STATE(24), - [sym_const_declaration] = STATE(24), - [sym_enum_declaration] = STATE(24), - [sym_abstract_enum_class_declaration] = STATE(24), - [sym_enum_class_declaration] = STATE(24), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(37), + [sym_function_declaration] = STATE(37), + [sym__function_declaration_header] = STATE(4853), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(37), + [sym_interface_declaration] = STATE(37), + [sym_class_declaration] = STATE(37), + [sym_const_declaration] = STATE(37), + [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_namespace_declaration] = STATE(24), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(37), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(24), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(669), + [aux_sym_script_repeat1] = STATE(37), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(679), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25757,64 +26131,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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), @@ -25831,33 +26205,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [41] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_compound_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_echo_statement] = STATE(37), - [sym_unset_statement] = STATE(37), - [sym_concurrent_statement] = STATE(37), - [sym_use_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_foreach_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_using_statement] = STATE(37), + [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), @@ -25865,161 +26241,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(37), - [sym_function_declaration] = STATE(37), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(37), - [sym_interface_declaration] = STATE(37), - [sym_class_declaration] = STATE(37), - [sym_const_declaration] = STATE(37), - [sym_enum_declaration] = STATE(37), - [sym_abstract_enum_class_declaration] = STATE(37), - [sym_enum_class_declaration] = STATE(37), + [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(37), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [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(37), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [42] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1436), - [sym_expression_statement] = STATE(1436), - [sym_compound_statement] = STATE(1436), - [sym_return_statement] = STATE(1436), - [sym_break_statement] = STATE(1436), - [sym_continue_statement] = STATE(1436), - [sym_throw_statement] = STATE(1436), - [sym_echo_statement] = STATE(1436), - [sym_unset_statement] = STATE(1436), - [sym_concurrent_statement] = STATE(1436), - [sym_use_statement] = STATE(1436), - [sym_if_statement] = STATE(1436), - [sym_switch_statement] = STATE(1436), - [sym_foreach_statement] = STATE(1436), - [sym_while_statement] = STATE(1436), - [sym_do_statement] = STATE(1436), - [sym_for_statement] = STATE(1436), - [sym_try_statement] = STATE(1436), - [sym_using_statement] = STATE(1436), + [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), @@ -26027,159 +26405,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1436), - [sym_function_declaration] = STATE(1436), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1436), - [sym_interface_declaration] = STATE(1436), - [sym_class_declaration] = STATE(1436), - [sym_const_declaration] = STATE(1436), - [sym_enum_declaration] = STATE(1436), - [sym_abstract_enum_class_declaration] = STATE(1436), - [sym_enum_class_declaration] = STATE(1436), + [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(1436), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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_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), }, [43] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1514), - [sym_expression_statement] = STATE(1514), - [sym_compound_statement] = STATE(1514), - [sym_return_statement] = STATE(1514), - [sym_break_statement] = STATE(1514), - [sym_continue_statement] = STATE(1514), - [sym_throw_statement] = STATE(1514), - [sym_echo_statement] = STATE(1514), - [sym_unset_statement] = STATE(1514), - [sym_concurrent_statement] = STATE(1514), - [sym_use_statement] = STATE(1514), - [sym_if_statement] = STATE(1514), - [sym_switch_statement] = STATE(1514), - [sym_foreach_statement] = STATE(1514), - [sym_while_statement] = STATE(1514), - [sym_do_statement] = STATE(1514), - [sym_for_statement] = STATE(1514), - [sym_try_statement] = STATE(1514), - [sym_using_statement] = STATE(1514), + [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), @@ -26187,159 +26567,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1514), - [sym_function_declaration] = STATE(1514), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1514), - [sym_interface_declaration] = STATE(1514), - [sym_class_declaration] = STATE(1514), - [sym_const_declaration] = STATE(1514), - [sym_enum_declaration] = STATE(1514), - [sym_abstract_enum_class_declaration] = STATE(1514), - [sym_enum_class_declaration] = STATE(1514), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(793), + [sym_function_declaration] = STATE(793), + [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(1514), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [44] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4606), - [sym_expression_statement] = STATE(4606), - [sym_compound_statement] = STATE(4606), - [sym_return_statement] = STATE(4606), - [sym_break_statement] = STATE(4606), - [sym_continue_statement] = STATE(4606), - [sym_throw_statement] = STATE(4606), - [sym_echo_statement] = STATE(4606), - [sym_unset_statement] = STATE(4606), - [sym_concurrent_statement] = STATE(4606), - [sym_use_statement] = STATE(4606), - [sym_if_statement] = STATE(4606), - [sym_switch_statement] = STATE(4606), - [sym_foreach_statement] = STATE(4606), - [sym_while_statement] = STATE(4606), - [sym_do_statement] = STATE(4606), - [sym_for_statement] = STATE(4606), - [sym_try_statement] = STATE(4606), - [sym_using_statement] = STATE(4606), + [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), @@ -26347,159 +26729,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4606), - [sym_function_declaration] = STATE(4606), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4606), - [sym_interface_declaration] = STATE(4606), - [sym_class_declaration] = STATE(4606), - [sym_const_declaration] = STATE(4606), - [sym_enum_declaration] = STATE(4606), - [sym_abstract_enum_class_declaration] = STATE(4606), - [sym_enum_class_declaration] = STATE(4606), + [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(4606), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [45] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(770), - [sym_expression_statement] = STATE(770), - [sym_compound_statement] = STATE(770), - [sym_return_statement] = STATE(770), - [sym_break_statement] = STATE(770), - [sym_continue_statement] = STATE(770), - [sym_throw_statement] = STATE(770), - [sym_echo_statement] = STATE(770), - [sym_unset_statement] = STATE(770), - [sym_concurrent_statement] = STATE(770), - [sym_use_statement] = STATE(770), - [sym_if_statement] = STATE(770), - [sym_switch_statement] = STATE(770), - [sym_foreach_statement] = STATE(770), - [sym_while_statement] = STATE(770), - [sym_do_statement] = STATE(770), - [sym_for_statement] = STATE(770), - [sym_try_statement] = STATE(770), - [sym_using_statement] = STATE(770), + [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), @@ -26507,159 +26891,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(770), - [sym_function_declaration] = STATE(770), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(770), - [sym_interface_declaration] = STATE(770), - [sym_class_declaration] = STATE(770), - [sym_const_declaration] = STATE(770), - [sym_enum_declaration] = STATE(770), - [sym_abstract_enum_class_declaration] = STATE(770), - [sym_enum_class_declaration] = STATE(770), + [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(770), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [46] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1554), - [sym_expression_statement] = STATE(1554), - [sym_compound_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_echo_statement] = STATE(1554), - [sym_unset_statement] = STATE(1554), - [sym_concurrent_statement] = STATE(1554), - [sym_use_statement] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_foreach_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_using_statement] = STATE(1554), + [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), @@ -26667,159 +27053,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1554), - [sym_function_declaration] = STATE(1554), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1554), - [sym_interface_declaration] = STATE(1554), - [sym_class_declaration] = STATE(1554), - [sym_const_declaration] = STATE(1554), - [sym_enum_declaration] = STATE(1554), - [sym_abstract_enum_class_declaration] = STATE(1554), - [sym_enum_class_declaration] = STATE(1554), + [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(1554), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(799), + [anon_sym_newtype] = ACTIONS(799), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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_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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [47] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4231), - [sym_expression_statement] = STATE(4231), - [sym_compound_statement] = STATE(4231), - [sym_return_statement] = STATE(4231), - [sym_break_statement] = STATE(4231), - [sym_continue_statement] = STATE(4231), - [sym_throw_statement] = STATE(4231), - [sym_echo_statement] = STATE(4231), - [sym_unset_statement] = STATE(4231), - [sym_concurrent_statement] = STATE(4231), - [sym_use_statement] = STATE(4231), - [sym_if_statement] = STATE(4231), - [sym_switch_statement] = STATE(4231), - [sym_foreach_statement] = STATE(4231), - [sym_while_statement] = STATE(4231), - [sym_do_statement] = STATE(4231), - [sym_for_statement] = STATE(4231), - [sym_try_statement] = STATE(4231), - [sym_using_statement] = STATE(4231), + [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), @@ -26827,159 +27215,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4231), - [sym_function_declaration] = STATE(4231), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4231), - [sym_interface_declaration] = STATE(4231), - [sym_class_declaration] = STATE(4231), - [sym_const_declaration] = STATE(4231), - [sym_enum_declaration] = STATE(4231), - [sym_abstract_enum_class_declaration] = STATE(4231), - [sym_enum_class_declaration] = STATE(4231), + [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(4231), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(725), - [sym_xhp_modifier] = ACTIONS(727), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [48] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(768), - [sym_expression_statement] = STATE(768), - [sym_compound_statement] = STATE(768), - [sym_return_statement] = STATE(768), - [sym_break_statement] = STATE(768), - [sym_continue_statement] = STATE(768), - [sym_throw_statement] = STATE(768), - [sym_echo_statement] = STATE(768), - [sym_unset_statement] = STATE(768), - [sym_concurrent_statement] = STATE(768), - [sym_use_statement] = STATE(768), - [sym_if_statement] = STATE(768), - [sym_switch_statement] = STATE(768), - [sym_foreach_statement] = STATE(768), - [sym_while_statement] = STATE(768), - [sym_do_statement] = STATE(768), - [sym_for_statement] = STATE(768), - [sym_try_statement] = STATE(768), - [sym_using_statement] = STATE(768), + [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), @@ -26987,159 +27377,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(768), - [sym_function_declaration] = STATE(768), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(768), - [sym_interface_declaration] = STATE(768), - [sym_class_declaration] = STATE(768), - [sym_const_declaration] = STATE(768), - [sym_enum_declaration] = STATE(768), - [sym_abstract_enum_class_declaration] = STATE(768), - [sym_enum_class_declaration] = STATE(768), + [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(768), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [49] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4605), - [sym_expression_statement] = STATE(4605), - [sym_compound_statement] = STATE(4605), - [sym_return_statement] = STATE(4605), - [sym_break_statement] = STATE(4605), - [sym_continue_statement] = STATE(4605), - [sym_throw_statement] = STATE(4605), - [sym_echo_statement] = STATE(4605), - [sym_unset_statement] = STATE(4605), - [sym_concurrent_statement] = STATE(4605), - [sym_use_statement] = STATE(4605), - [sym_if_statement] = STATE(4605), - [sym_switch_statement] = STATE(4605), - [sym_foreach_statement] = STATE(4605), - [sym_while_statement] = STATE(4605), - [sym_do_statement] = STATE(4605), - [sym_for_statement] = STATE(4605), - [sym_try_statement] = STATE(4605), - [sym_using_statement] = STATE(4605), + [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), @@ -27147,159 +27539,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4605), - [sym_function_declaration] = STATE(4605), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4605), - [sym_interface_declaration] = STATE(4605), - [sym_class_declaration] = STATE(4605), - [sym_const_declaration] = STATE(4605), - [sym_enum_declaration] = STATE(4605), - [sym_abstract_enum_class_declaration] = STATE(4605), - [sym_enum_class_declaration] = STATE(4605), + [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(4605), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(725), - [sym_xhp_modifier] = ACTIONS(727), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [50] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [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__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), @@ -27307,159 +27701,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(877), - [sym_function_declaration] = STATE(877), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [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_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(877), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [51] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(898), - [sym_expression_statement] = STATE(898), - [sym_compound_statement] = STATE(898), - [sym_return_statement] = STATE(898), - [sym_break_statement] = STATE(898), - [sym_continue_statement] = STATE(898), - [sym_throw_statement] = STATE(898), - [sym_echo_statement] = STATE(898), - [sym_unset_statement] = STATE(898), - [sym_concurrent_statement] = STATE(898), - [sym_use_statement] = STATE(898), - [sym_if_statement] = STATE(898), - [sym_switch_statement] = STATE(898), - [sym_foreach_statement] = STATE(898), - [sym_while_statement] = STATE(898), - [sym_do_statement] = STATE(898), - [sym_for_statement] = STATE(898), - [sym_try_statement] = STATE(898), - [sym_using_statement] = STATE(898), + [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), @@ -27467,159 +27863,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(898), - [sym_function_declaration] = STATE(898), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(898), - [sym_interface_declaration] = STATE(898), - [sym_class_declaration] = STATE(898), - [sym_const_declaration] = STATE(898), - [sym_enum_declaration] = STATE(898), - [sym_abstract_enum_class_declaration] = STATE(898), - [sym_enum_class_declaration] = STATE(898), + [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(898), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(849), - [sym_xhp_modifier] = ACTIONS(851), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [52] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(876), - [sym_expression_statement] = STATE(876), - [sym_compound_statement] = STATE(876), - [sym_return_statement] = STATE(876), - [sym_break_statement] = STATE(876), - [sym_continue_statement] = STATE(876), - [sym_throw_statement] = STATE(876), - [sym_echo_statement] = STATE(876), - [sym_unset_statement] = STATE(876), - [sym_concurrent_statement] = STATE(876), - [sym_use_statement] = STATE(876), - [sym_if_statement] = STATE(876), - [sym_switch_statement] = STATE(876), - [sym_foreach_statement] = STATE(876), - [sym_while_statement] = STATE(876), - [sym_do_statement] = STATE(876), - [sym_for_statement] = STATE(876), - [sym_try_statement] = STATE(876), - [sym_using_statement] = STATE(876), + [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), @@ -27627,159 +28025,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(876), - [sym_function_declaration] = STATE(876), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(876), - [sym_interface_declaration] = STATE(876), - [sym_class_declaration] = STATE(876), - [sym_const_declaration] = STATE(876), - [sym_enum_declaration] = STATE(876), - [sym_abstract_enum_class_declaration] = STATE(876), - [sym_enum_class_declaration] = STATE(876), + [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(876), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [53] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1446), - [sym_expression_statement] = STATE(1446), - [sym_compound_statement] = STATE(1446), - [sym_return_statement] = STATE(1446), - [sym_break_statement] = STATE(1446), - [sym_continue_statement] = STATE(1446), - [sym_throw_statement] = STATE(1446), - [sym_echo_statement] = STATE(1446), - [sym_unset_statement] = STATE(1446), - [sym_concurrent_statement] = STATE(1446), - [sym_use_statement] = STATE(1446), - [sym_if_statement] = STATE(1446), - [sym_switch_statement] = STATE(1446), - [sym_foreach_statement] = STATE(1446), - [sym_while_statement] = STATE(1446), - [sym_do_statement] = STATE(1446), - [sym_for_statement] = STATE(1446), - [sym_try_statement] = STATE(1446), - [sym_using_statement] = STATE(1446), + [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), @@ -27787,159 +28187,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1446), - [sym_function_declaration] = STATE(1446), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1446), - [sym_interface_declaration] = STATE(1446), - [sym_class_declaration] = STATE(1446), - [sym_const_declaration] = STATE(1446), - [sym_enum_declaration] = STATE(1446), - [sym_abstract_enum_class_declaration] = STATE(1446), - [sym_enum_class_declaration] = STATE(1446), + [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(1446), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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_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(123), - [sym_xhp_modifier] = ACTIONS(125), + [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), }, [54] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1554), - [sym_expression_statement] = STATE(1554), - [sym_compound_statement] = STATE(1554), - [sym_return_statement] = STATE(1554), - [sym_break_statement] = STATE(1554), - [sym_continue_statement] = STATE(1554), - [sym_throw_statement] = STATE(1554), - [sym_echo_statement] = STATE(1554), - [sym_unset_statement] = STATE(1554), - [sym_concurrent_statement] = STATE(1554), - [sym_use_statement] = STATE(1554), - [sym_if_statement] = STATE(1554), - [sym_switch_statement] = STATE(1554), - [sym_foreach_statement] = STATE(1554), - [sym_while_statement] = STATE(1554), - [sym_do_statement] = STATE(1554), - [sym_for_statement] = STATE(1554), - [sym_try_statement] = STATE(1554), - [sym_using_statement] = STATE(1554), + [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), @@ -27947,47 +28349,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1554), - [sym_function_declaration] = STATE(1554), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1554), - [sym_interface_declaration] = STATE(1554), - [sym_class_declaration] = STATE(1554), - [sym_const_declaration] = STATE(1554), - [sym_enum_declaration] = STATE(1554), - [sym_abstract_enum_class_declaration] = STATE(1554), - [sym_enum_class_declaration] = STATE(1554), + [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(1554), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(5770), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -27998,65 +28400,65 @@ 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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -28073,33 +28475,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(854), - [sym_expression_statement] = STATE(854), - [sym_compound_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_throw_statement] = STATE(854), - [sym_echo_statement] = STATE(854), - [sym_unset_statement] = STATE(854), - [sym_concurrent_statement] = STATE(854), - [sym_use_statement] = STATE(854), - [sym_if_statement] = STATE(854), - [sym_switch_statement] = STATE(854), - [sym_foreach_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_try_statement] = STATE(854), - [sym_using_statement] = STATE(854), + [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), @@ -28107,159 +28511,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(854), - [sym_function_declaration] = STATE(854), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(854), - [sym_interface_declaration] = STATE(854), - [sym_class_declaration] = STATE(854), - [sym_const_declaration] = STATE(854), - [sym_enum_declaration] = STATE(854), - [sym_abstract_enum_class_declaration] = STATE(854), - [sym_enum_class_declaration] = STATE(854), + [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(854), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [56] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(885), - [sym_expression_statement] = STATE(885), - [sym_compound_statement] = STATE(885), - [sym_return_statement] = STATE(885), - [sym_break_statement] = STATE(885), - [sym_continue_statement] = STATE(885), - [sym_throw_statement] = STATE(885), - [sym_echo_statement] = STATE(885), - [sym_unset_statement] = STATE(885), - [sym_concurrent_statement] = STATE(885), - [sym_use_statement] = STATE(885), - [sym_if_statement] = STATE(885), - [sym_switch_statement] = STATE(885), - [sym_foreach_statement] = STATE(885), - [sym_while_statement] = STATE(885), - [sym_do_statement] = STATE(885), - [sym_for_statement] = STATE(885), - [sym_try_statement] = STATE(885), - [sym_using_statement] = STATE(885), + [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), @@ -28267,159 +28673,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(885), - [sym_function_declaration] = STATE(885), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(885), - [sym_interface_declaration] = STATE(885), - [sym_class_declaration] = STATE(885), - [sym_const_declaration] = STATE(885), - [sym_enum_declaration] = STATE(885), - [sym_abstract_enum_class_declaration] = STATE(885), - [sym_enum_class_declaration] = STATE(885), + [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(885), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [57] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(833), - [sym_expression_statement] = STATE(833), - [sym_compound_statement] = STATE(833), - [sym_return_statement] = STATE(833), - [sym_break_statement] = STATE(833), - [sym_continue_statement] = STATE(833), - [sym_throw_statement] = STATE(833), - [sym_echo_statement] = STATE(833), - [sym_unset_statement] = STATE(833), - [sym_concurrent_statement] = STATE(833), - [sym_use_statement] = STATE(833), - [sym_if_statement] = STATE(833), - [sym_switch_statement] = STATE(833), - [sym_foreach_statement] = STATE(833), - [sym_while_statement] = STATE(833), - [sym_do_statement] = STATE(833), - [sym_for_statement] = STATE(833), - [sym_try_statement] = STATE(833), - [sym_using_statement] = STATE(833), + [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), @@ -28427,159 +28835,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(833), - [sym_function_declaration] = STATE(833), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(833), - [sym_interface_declaration] = STATE(833), - [sym_class_declaration] = STATE(833), - [sym_const_declaration] = STATE(833), - [sym_enum_declaration] = STATE(833), - [sym_abstract_enum_class_declaration] = STATE(833), - [sym_enum_class_declaration] = STATE(833), + [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(833), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [58] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4744), - [sym_expression_statement] = STATE(4744), - [sym_compound_statement] = STATE(4744), - [sym_return_statement] = STATE(4744), - [sym_break_statement] = STATE(4744), - [sym_continue_statement] = STATE(4744), - [sym_throw_statement] = STATE(4744), - [sym_echo_statement] = STATE(4744), - [sym_unset_statement] = STATE(4744), - [sym_concurrent_statement] = STATE(4744), - [sym_use_statement] = STATE(4744), - [sym_if_statement] = STATE(4744), - [sym_switch_statement] = STATE(4744), - [sym_foreach_statement] = STATE(4744), - [sym_while_statement] = STATE(4744), - [sym_do_statement] = STATE(4744), - [sym_for_statement] = STATE(4744), - [sym_try_statement] = STATE(4744), - [sym_using_statement] = STATE(4744), + [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), @@ -28587,159 +28997,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4744), - [sym_function_declaration] = STATE(4744), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4744), - [sym_interface_declaration] = STATE(4744), - [sym_class_declaration] = STATE(4744), - [sym_const_declaration] = STATE(4744), - [sym_enum_declaration] = STATE(4744), - [sym_abstract_enum_class_declaration] = STATE(4744), - [sym_enum_class_declaration] = STATE(4744), + [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(4744), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(725), - [sym_xhp_modifier] = ACTIONS(727), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [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__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), @@ -28747,159 +29159,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(830), - [sym_function_declaration] = STATE(830), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [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_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(830), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [sym_namespace_declaration] = STATE(1162), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [60] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4811), - [sym_expression_statement] = STATE(4810), - [sym_compound_statement] = STATE(4809), - [sym_return_statement] = STATE(4807), - [sym_break_statement] = STATE(4804), - [sym_continue_statement] = STATE(4803), - [sym_throw_statement] = STATE(4802), - [sym_echo_statement] = STATE(4800), - [sym_unset_statement] = STATE(4795), - [sym_concurrent_statement] = STATE(4793), - [sym_use_statement] = STATE(4791), - [sym_if_statement] = STATE(4789), - [sym_switch_statement] = STATE(4782), - [sym_foreach_statement] = STATE(4780), - [sym_while_statement] = STATE(4779), - [sym_do_statement] = STATE(4778), - [sym_for_statement] = STATE(4777), - [sym_try_statement] = STATE(4776), - [sym_using_statement] = STATE(4775), + [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), @@ -28907,159 +29321,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4774), - [sym_function_declaration] = STATE(4769), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4767), - [sym_interface_declaration] = STATE(4765), - [sym_class_declaration] = STATE(4714), - [sym_const_declaration] = STATE(4757), - [sym_enum_declaration] = STATE(4756), - [sym_abstract_enum_class_declaration] = STATE(4754), - [sym_enum_class_declaration] = STATE(4752), + [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(4750), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(725), - [sym_xhp_modifier] = ACTIONS(727), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [61] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4655), - [sym_expression_statement] = STATE(4655), - [sym_compound_statement] = STATE(4655), - [sym_return_statement] = STATE(4655), - [sym_break_statement] = STATE(4655), - [sym_continue_statement] = STATE(4655), - [sym_throw_statement] = STATE(4655), - [sym_echo_statement] = STATE(4655), - [sym_unset_statement] = STATE(4655), - [sym_concurrent_statement] = STATE(4655), - [sym_use_statement] = STATE(4655), - [sym_if_statement] = STATE(4655), - [sym_switch_statement] = STATE(4655), - [sym_foreach_statement] = STATE(4655), - [sym_while_statement] = STATE(4655), - [sym_do_statement] = STATE(4655), - [sym_for_statement] = STATE(4655), - [sym_try_statement] = STATE(4655), - [sym_using_statement] = STATE(4655), + [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), @@ -29067,159 +29483,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4655), - [sym_function_declaration] = STATE(4655), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4655), - [sym_interface_declaration] = STATE(4655), - [sym_class_declaration] = STATE(4655), - [sym_const_declaration] = STATE(4655), - [sym_enum_declaration] = STATE(4655), - [sym_abstract_enum_class_declaration] = STATE(4655), - [sym_enum_class_declaration] = STATE(4655), + [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(4655), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(725), - [sym_xhp_modifier] = ACTIONS(727), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [62] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1507), - [sym_expression_statement] = STATE(1507), - [sym_compound_statement] = STATE(1507), - [sym_return_statement] = STATE(1507), - [sym_break_statement] = STATE(1507), - [sym_continue_statement] = STATE(1507), - [sym_throw_statement] = STATE(1507), - [sym_echo_statement] = STATE(1507), - [sym_unset_statement] = STATE(1507), - [sym_concurrent_statement] = STATE(1507), - [sym_use_statement] = STATE(1507), - [sym_if_statement] = STATE(1507), - [sym_switch_statement] = STATE(1507), - [sym_foreach_statement] = STATE(1507), - [sym_while_statement] = STATE(1507), - [sym_do_statement] = STATE(1507), - [sym_for_statement] = STATE(1507), - [sym_try_statement] = STATE(1507), - [sym_using_statement] = STATE(1507), + [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), @@ -29227,159 +29645,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1507), - [sym_function_declaration] = STATE(1507), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1507), - [sym_interface_declaration] = STATE(1507), - [sym_class_declaration] = STATE(1507), - [sym_const_declaration] = STATE(1507), - [sym_enum_declaration] = STATE(1507), - [sym_abstract_enum_class_declaration] = STATE(1507), - [sym_enum_class_declaration] = STATE(1507), + [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(1507), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(799), + [anon_sym_newtype] = ACTIONS(799), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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_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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [63] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [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__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), @@ -29387,159 +29807,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(714), - [sym_function_declaration] = STATE(714), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [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_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(714), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [sym_namespace_declaration] = STATE(1609), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [64] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4935), - [sym_expression_statement] = STATE(4935), - [sym_compound_statement] = STATE(4935), - [sym_return_statement] = STATE(4935), - [sym_break_statement] = STATE(4935), - [sym_continue_statement] = STATE(4935), - [sym_throw_statement] = STATE(4935), - [sym_echo_statement] = STATE(4935), - [sym_unset_statement] = STATE(4935), - [sym_concurrent_statement] = STATE(4935), - [sym_use_statement] = STATE(4935), - [sym_if_statement] = STATE(4935), - [sym_switch_statement] = STATE(4935), - [sym_foreach_statement] = STATE(4935), - [sym_while_statement] = STATE(4935), - [sym_do_statement] = STATE(4935), - [sym_for_statement] = STATE(4935), - [sym_try_statement] = STATE(4935), - [sym_using_statement] = STATE(4935), + [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), @@ -29547,159 +29969,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4935), - [sym_function_declaration] = STATE(4935), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4935), - [sym_interface_declaration] = STATE(4935), - [sym_class_declaration] = STATE(4935), - [sym_const_declaration] = STATE(4935), - [sym_enum_declaration] = STATE(4935), - [sym_abstract_enum_class_declaration] = STATE(4935), - [sym_enum_class_declaration] = STATE(4935), + [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(4935), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [65] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1506), - [sym_expression_statement] = STATE(1506), - [sym_compound_statement] = STATE(1506), - [sym_return_statement] = STATE(1506), - [sym_break_statement] = STATE(1506), - [sym_continue_statement] = STATE(1506), - [sym_throw_statement] = STATE(1506), - [sym_echo_statement] = STATE(1506), - [sym_unset_statement] = STATE(1506), - [sym_concurrent_statement] = STATE(1506), - [sym_use_statement] = STATE(1506), - [sym_if_statement] = STATE(1506), - [sym_switch_statement] = STATE(1506), - [sym_foreach_statement] = STATE(1506), - [sym_while_statement] = STATE(1506), - [sym_do_statement] = STATE(1506), - [sym_for_statement] = STATE(1506), - [sym_try_statement] = STATE(1506), - [sym_using_statement] = STATE(1506), + [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), @@ -29707,47 +30131,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1506), - [sym_function_declaration] = STATE(1506), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1506), - [sym_interface_declaration] = STATE(1506), - [sym_class_declaration] = STATE(1506), - [sym_const_declaration] = STATE(1506), - [sym_enum_declaration] = STATE(1506), - [sym_abstract_enum_class_declaration] = STATE(1506), - [sym_enum_class_declaration] = STATE(1506), + [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(1506), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(1580), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -29758,65 +30182,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -29833,33 +30257,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_compound_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_throw_statement] = STATE(1454), - [sym_echo_statement] = STATE(1454), - [sym_unset_statement] = STATE(1454), - [sym_concurrent_statement] = STATE(1454), - [sym_use_statement] = STATE(1454), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_foreach_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [sym_do_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_try_statement] = STATE(1454), - [sym_using_statement] = STATE(1454), + [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), @@ -29867,159 +30293,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1454), - [sym_function_declaration] = STATE(1454), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1454), - [sym_interface_declaration] = STATE(1454), - [sym_class_declaration] = STATE(1454), - [sym_const_declaration] = STATE(1454), - [sym_enum_declaration] = STATE(1454), - [sym_abstract_enum_class_declaration] = STATE(1454), - [sym_enum_class_declaration] = STATE(1454), + [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(1454), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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_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(123), - [sym_xhp_modifier] = ACTIONS(125), + [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), }, [67] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(903), - [sym_expression_statement] = STATE(903), - [sym_compound_statement] = STATE(903), - [sym_return_statement] = STATE(903), - [sym_break_statement] = STATE(903), - [sym_continue_statement] = STATE(903), - [sym_throw_statement] = STATE(903), - [sym_echo_statement] = STATE(903), - [sym_unset_statement] = STATE(903), - [sym_concurrent_statement] = STATE(903), - [sym_use_statement] = STATE(903), - [sym_if_statement] = STATE(903), - [sym_switch_statement] = STATE(903), - [sym_foreach_statement] = STATE(903), - [sym_while_statement] = STATE(903), - [sym_do_statement] = STATE(903), - [sym_for_statement] = STATE(903), - [sym_try_statement] = STATE(903), - [sym_using_statement] = STATE(903), + [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), @@ -30027,159 +30455,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(903), - [sym_function_declaration] = STATE(903), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(903), - [sym_interface_declaration] = STATE(903), - [sym_class_declaration] = STATE(903), - [sym_const_declaration] = STATE(903), - [sym_enum_declaration] = STATE(903), - [sym_abstract_enum_class_declaration] = STATE(903), - [sym_enum_class_declaration] = STATE(903), + [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(903), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [68] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [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__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), @@ -30187,159 +30617,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1371), - [sym_function_declaration] = STATE(1371), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [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_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(1371), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [69] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1372), - [sym_expression_statement] = STATE(1372), - [sym_compound_statement] = STATE(1372), - [sym_return_statement] = STATE(1372), - [sym_break_statement] = STATE(1372), - [sym_continue_statement] = STATE(1372), - [sym_throw_statement] = STATE(1372), - [sym_echo_statement] = STATE(1372), - [sym_unset_statement] = STATE(1372), - [sym_concurrent_statement] = STATE(1372), - [sym_use_statement] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_switch_statement] = STATE(1372), - [sym_foreach_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_do_statement] = STATE(1372), - [sym_for_statement] = STATE(1372), - [sym_try_statement] = STATE(1372), - [sym_using_statement] = STATE(1372), + [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), @@ -30347,159 +30779,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1372), - [sym_function_declaration] = STATE(1372), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1372), - [sym_interface_declaration] = STATE(1372), - [sym_class_declaration] = STATE(1372), - [sym_const_declaration] = STATE(1372), - [sym_enum_declaration] = STATE(1372), - [sym_abstract_enum_class_declaration] = STATE(1372), - [sym_enum_class_declaration] = STATE(1372), + [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(1372), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [sym_namespace_declaration] = STATE(1462), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [70] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(807), - [sym_expression_statement] = STATE(807), - [sym_compound_statement] = STATE(807), - [sym_return_statement] = STATE(807), - [sym_break_statement] = STATE(807), - [sym_continue_statement] = STATE(807), - [sym_throw_statement] = STATE(807), - [sym_echo_statement] = STATE(807), - [sym_unset_statement] = STATE(807), - [sym_concurrent_statement] = STATE(807), - [sym_use_statement] = STATE(807), - [sym_if_statement] = STATE(807), - [sym_switch_statement] = STATE(807), - [sym_foreach_statement] = STATE(807), - [sym_while_statement] = STATE(807), - [sym_do_statement] = STATE(807), - [sym_for_statement] = STATE(807), - [sym_try_statement] = STATE(807), - [sym_using_statement] = STATE(807), + [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), @@ -30507,159 +30941,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(807), - [sym_function_declaration] = STATE(807), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(807), - [sym_interface_declaration] = STATE(807), - [sym_class_declaration] = STATE(807), - [sym_const_declaration] = STATE(807), - [sym_enum_declaration] = STATE(807), - [sym_abstract_enum_class_declaration] = STATE(807), - [sym_enum_class_declaration] = STATE(807), + [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(807), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [71] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1436), - [sym_expression_statement] = STATE(1436), - [sym_compound_statement] = STATE(1436), - [sym_return_statement] = STATE(1436), - [sym_break_statement] = STATE(1436), - [sym_continue_statement] = STATE(1436), - [sym_throw_statement] = STATE(1436), - [sym_echo_statement] = STATE(1436), - [sym_unset_statement] = STATE(1436), - [sym_concurrent_statement] = STATE(1436), - [sym_use_statement] = STATE(1436), - [sym_if_statement] = STATE(1436), - [sym_switch_statement] = STATE(1436), - [sym_foreach_statement] = STATE(1436), - [sym_while_statement] = STATE(1436), - [sym_do_statement] = STATE(1436), - [sym_for_statement] = STATE(1436), - [sym_try_statement] = STATE(1436), - [sym_using_statement] = STATE(1436), + [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), @@ -30667,47 +31103,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1436), - [sym_function_declaration] = STATE(1436), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1436), - [sym_interface_declaration] = STATE(1436), - [sym_class_declaration] = STATE(1436), - [sym_const_declaration] = STATE(1436), - [sym_enum_declaration] = STATE(1436), - [sym_abstract_enum_class_declaration] = STATE(1436), - [sym_enum_class_declaration] = STATE(1436), + [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(1436), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30718,65 +31154,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -30793,33 +31229,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [72] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1434), - [sym_expression_statement] = STATE(1434), - [sym_compound_statement] = STATE(1434), - [sym_return_statement] = STATE(1434), - [sym_break_statement] = STATE(1434), - [sym_continue_statement] = STATE(1434), - [sym_throw_statement] = STATE(1434), - [sym_echo_statement] = STATE(1434), - [sym_unset_statement] = STATE(1434), - [sym_concurrent_statement] = STATE(1434), - [sym_use_statement] = STATE(1434), - [sym_if_statement] = STATE(1434), - [sym_switch_statement] = STATE(1434), - [sym_foreach_statement] = STATE(1434), - [sym_while_statement] = STATE(1434), - [sym_do_statement] = STATE(1434), - [sym_for_statement] = STATE(1434), - [sym_try_statement] = STATE(1434), - [sym_using_statement] = STATE(1434), + [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), @@ -30827,47 +31265,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1434), - [sym_function_declaration] = STATE(1434), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1434), - [sym_interface_declaration] = STATE(1434), - [sym_class_declaration] = STATE(1434), - [sym_const_declaration] = STATE(1434), - [sym_enum_declaration] = STATE(1434), - [sym_abstract_enum_class_declaration] = STATE(1434), - [sym_enum_class_declaration] = STATE(1434), + [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(1434), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(1480), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30878,65 +31316,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -30953,33 +31391,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [73] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(790), - [sym_expression_statement] = STATE(790), - [sym_compound_statement] = STATE(790), - [sym_return_statement] = STATE(790), - [sym_break_statement] = STATE(790), - [sym_continue_statement] = STATE(790), - [sym_throw_statement] = STATE(790), - [sym_echo_statement] = STATE(790), - [sym_unset_statement] = STATE(790), - [sym_concurrent_statement] = STATE(790), - [sym_use_statement] = STATE(790), - [sym_if_statement] = STATE(790), - [sym_switch_statement] = STATE(790), - [sym_foreach_statement] = STATE(790), - [sym_while_statement] = STATE(790), - [sym_do_statement] = STATE(790), - [sym_for_statement] = STATE(790), - [sym_try_statement] = STATE(790), - [sym_using_statement] = STATE(790), + [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), @@ -30987,159 +31427,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(790), - [sym_function_declaration] = STATE(790), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(790), - [sym_interface_declaration] = STATE(790), - [sym_class_declaration] = STATE(790), - [sym_const_declaration] = STATE(790), - [sym_enum_declaration] = STATE(790), - [sym_abstract_enum_class_declaration] = STATE(790), - [sym_enum_class_declaration] = STATE(790), + [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(790), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [74] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [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__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), @@ -31147,159 +31589,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(889), - [sym_function_declaration] = STATE(889), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [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_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(889), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [75] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(6058), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_empty_statement] = STATE(980), - [sym_expression_statement] = STATE(980), - [sym_compound_statement] = STATE(980), - [sym_return_statement] = STATE(980), - [sym_break_statement] = STATE(980), - [sym_continue_statement] = STATE(980), - [sym_throw_statement] = STATE(980), - [sym_echo_statement] = STATE(980), - [sym_unset_statement] = STATE(980), - [sym_concurrent_statement] = STATE(980), - [sym_use_statement] = STATE(980), - [sym_if_statement] = STATE(980), - [sym_switch_statement] = STATE(980), - [sym_foreach_statement] = STATE(980), - [sym_while_statement] = STATE(980), - [sym_do_statement] = STATE(980), - [sym_for_statement] = STATE(980), - [sym_try_statement] = STATE(980), - [sym_using_statement] = STATE(980), + [sym__expression] = STATE(2708), + [sym_empty_statement] = STATE(6058), + [sym_expression_statement] = STATE(6058), + [sym_compound_statement] = STATE(6058), + [sym_return_statement] = STATE(6058), + [sym_break_statement] = STATE(6058), + [sym_continue_statement] = STATE(6058), + [sym_throw_statement] = STATE(6058), + [sym_echo_statement] = STATE(6058), + [sym_unset_statement] = STATE(6058), + [sym_concurrent_statement] = STATE(6058), + [sym_use_statement] = STATE(6058), + [sym_if_statement] = STATE(6058), + [sym_switch_statement] = STATE(6058), + [sym_foreach_statement] = STATE(6058), + [sym_while_statement] = STATE(6058), + [sym_do_statement] = STATE(6058), + [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), @@ -31307,159 +31751,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(980), - [sym_function_declaration] = STATE(980), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(980), - [sym_interface_declaration] = STATE(980), - [sym_class_declaration] = STATE(980), - [sym_const_declaration] = STATE(980), - [sym_enum_declaration] = STATE(980), - [sym_abstract_enum_class_declaration] = STATE(980), - [sym_enum_class_declaration] = STATE(980), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(6058), + [sym_function_declaration] = STATE(6058), + [sym__function_declaration_header] = STATE(4853), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(6058), + [sym_interface_declaration] = STATE(6058), + [sym_class_declaration] = STATE(6058), + [sym_const_declaration] = STATE(6058), + [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_namespace_declaration] = STATE(980), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [sym_namespace_declaration] = STATE(6058), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [76] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1579), - [sym_expression_statement] = STATE(1579), - [sym_compound_statement] = STATE(1579), - [sym_return_statement] = STATE(1579), - [sym_break_statement] = STATE(1579), - [sym_continue_statement] = STATE(1579), - [sym_throw_statement] = STATE(1579), - [sym_echo_statement] = STATE(1579), - [sym_unset_statement] = STATE(1579), - [sym_concurrent_statement] = STATE(1579), - [sym_use_statement] = STATE(1579), - [sym_if_statement] = STATE(1579), - [sym_switch_statement] = STATE(1579), - [sym_foreach_statement] = STATE(1579), - [sym_while_statement] = STATE(1579), - [sym_do_statement] = STATE(1579), - [sym_for_statement] = STATE(1579), - [sym_try_statement] = STATE(1579), - [sym_using_statement] = STATE(1579), + [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), @@ -31467,47 +31913,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), - [sym_class_declaration] = STATE(1579), - [sym_const_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_abstract_enum_class_declaration] = STATE(1579), - [sym_enum_class_declaration] = STATE(1579), + [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(1579), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -31518,65 +31964,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -31593,33 +32039,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1194), - [sym_expression_statement] = STATE(1194), - [sym_compound_statement] = STATE(1194), - [sym_return_statement] = STATE(1194), - [sym_break_statement] = STATE(1194), - [sym_continue_statement] = STATE(1194), - [sym_throw_statement] = STATE(1194), - [sym_echo_statement] = STATE(1194), - [sym_unset_statement] = STATE(1194), - [sym_concurrent_statement] = STATE(1194), - [sym_use_statement] = STATE(1194), - [sym_if_statement] = STATE(1194), - [sym_switch_statement] = STATE(1194), - [sym_foreach_statement] = STATE(1194), - [sym_while_statement] = STATE(1194), - [sym_do_statement] = STATE(1194), - [sym_for_statement] = STATE(1194), - [sym_try_statement] = STATE(1194), - [sym_using_statement] = STATE(1194), + [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), @@ -31627,159 +32075,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1194), - [sym_function_declaration] = STATE(1194), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1194), - [sym_interface_declaration] = STATE(1194), - [sym_class_declaration] = STATE(1194), - [sym_const_declaration] = STATE(1194), - [sym_enum_declaration] = STATE(1194), - [sym_abstract_enum_class_declaration] = STATE(1194), - [sym_enum_class_declaration] = STATE(1194), + [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(1194), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [78] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(803), - [sym_expression_statement] = STATE(803), - [sym_compound_statement] = STATE(803), - [sym_return_statement] = STATE(803), - [sym_break_statement] = STATE(803), - [sym_continue_statement] = STATE(803), - [sym_throw_statement] = STATE(803), - [sym_echo_statement] = STATE(803), - [sym_unset_statement] = STATE(803), - [sym_concurrent_statement] = STATE(803), - [sym_use_statement] = STATE(803), - [sym_if_statement] = STATE(803), - [sym_switch_statement] = STATE(803), - [sym_foreach_statement] = STATE(803), - [sym_while_statement] = STATE(803), - [sym_do_statement] = STATE(803), - [sym_for_statement] = STATE(803), - [sym_try_statement] = STATE(803), - [sym_using_statement] = STATE(803), + [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), @@ -31787,159 +32237,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(803), - [sym_function_declaration] = STATE(803), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(803), - [sym_interface_declaration] = STATE(803), - [sym_class_declaration] = STATE(803), - [sym_const_declaration] = STATE(803), - [sym_enum_declaration] = STATE(803), - [sym_abstract_enum_class_declaration] = STATE(803), - [sym_enum_class_declaration] = STATE(803), + [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(803), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [79] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(853), - [sym_expression_statement] = STATE(853), - [sym_compound_statement] = STATE(853), - [sym_return_statement] = STATE(853), - [sym_break_statement] = STATE(853), - [sym_continue_statement] = STATE(853), - [sym_throw_statement] = STATE(853), - [sym_echo_statement] = STATE(853), - [sym_unset_statement] = STATE(853), - [sym_concurrent_statement] = STATE(853), - [sym_use_statement] = STATE(853), - [sym_if_statement] = STATE(853), - [sym_switch_statement] = STATE(853), - [sym_foreach_statement] = STATE(853), - [sym_while_statement] = STATE(853), - [sym_do_statement] = STATE(853), - [sym_for_statement] = STATE(853), - [sym_try_statement] = STATE(853), - [sym_using_statement] = STATE(853), + [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), @@ -31947,159 +32399,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(853), - [sym_function_declaration] = STATE(853), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(853), - [sym_interface_declaration] = STATE(853), - [sym_class_declaration] = STATE(853), - [sym_const_declaration] = STATE(853), - [sym_enum_declaration] = STATE(853), - [sym_abstract_enum_class_declaration] = STATE(853), - [sym_enum_class_declaration] = STATE(853), + [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(853), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [80] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(5935), - [sym_expression_statement] = STATE(5935), - [sym_compound_statement] = STATE(5935), - [sym_return_statement] = STATE(5935), - [sym_break_statement] = STATE(5935), - [sym_continue_statement] = STATE(5935), - [sym_throw_statement] = STATE(5935), - [sym_echo_statement] = STATE(5935), - [sym_unset_statement] = STATE(5935), - [sym_concurrent_statement] = STATE(5935), - [sym_use_statement] = STATE(5935), - [sym_if_statement] = STATE(5935), - [sym_switch_statement] = STATE(5935), - [sym_foreach_statement] = STATE(5935), - [sym_while_statement] = STATE(5935), - [sym_do_statement] = STATE(5935), - [sym_for_statement] = STATE(5935), - [sym_try_statement] = STATE(5935), - [sym_using_statement] = STATE(5935), + [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), @@ -32107,47 +32561,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5935), - [sym_function_declaration] = STATE(5935), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5935), - [sym_interface_declaration] = STATE(5935), - [sym_class_declaration] = STATE(5935), - [sym_const_declaration] = STATE(5935), - [sym_enum_declaration] = STATE(5935), - [sym_abstract_enum_class_declaration] = STATE(5935), - [sym_enum_class_declaration] = STATE(5935), + [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(5935), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -32158,65 +32612,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -32233,33 +32687,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [81] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [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__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), @@ -32267,47 +32723,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1590), - [sym_function_declaration] = STATE(1590), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [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_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(1590), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -32318,65 +32774,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -32393,33 +32849,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [82] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1506), - [sym_expression_statement] = STATE(1506), - [sym_compound_statement] = STATE(1506), - [sym_return_statement] = STATE(1506), - [sym_break_statement] = STATE(1506), - [sym_continue_statement] = STATE(1506), - [sym_throw_statement] = STATE(1506), - [sym_echo_statement] = STATE(1506), - [sym_unset_statement] = STATE(1506), - [sym_concurrent_statement] = STATE(1506), - [sym_use_statement] = STATE(1506), - [sym_if_statement] = STATE(1506), - [sym_switch_statement] = STATE(1506), - [sym_foreach_statement] = STATE(1506), - [sym_while_statement] = STATE(1506), - [sym_do_statement] = STATE(1506), - [sym_for_statement] = STATE(1506), - [sym_try_statement] = STATE(1506), - [sym_using_statement] = STATE(1506), + [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), @@ -32427,159 +32885,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1506), - [sym_function_declaration] = STATE(1506), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1506), - [sym_interface_declaration] = STATE(1506), - [sym_class_declaration] = STATE(1506), - [sym_const_declaration] = STATE(1506), - [sym_enum_declaration] = STATE(1506), - [sym_abstract_enum_class_declaration] = STATE(1506), - [sym_enum_class_declaration] = STATE(1506), + [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(1506), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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_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), }, [83] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(5778), - [sym_expression_statement] = STATE(5778), - [sym_compound_statement] = STATE(5778), - [sym_return_statement] = STATE(5778), - [sym_break_statement] = STATE(5778), - [sym_continue_statement] = STATE(5778), - [sym_throw_statement] = STATE(5778), - [sym_echo_statement] = STATE(5778), - [sym_unset_statement] = STATE(5778), - [sym_concurrent_statement] = STATE(5778), - [sym_use_statement] = STATE(5778), - [sym_if_statement] = STATE(5778), - [sym_switch_statement] = STATE(5778), - [sym_foreach_statement] = STATE(5778), - [sym_while_statement] = STATE(5778), - [sym_do_statement] = STATE(5778), - [sym_for_statement] = STATE(5778), - [sym_try_statement] = STATE(5778), - [sym_using_statement] = STATE(5778), + [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), @@ -32587,159 +33047,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5778), - [sym_function_declaration] = STATE(5778), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5778), - [sym_interface_declaration] = STATE(5778), - [sym_class_declaration] = STATE(5778), - [sym_const_declaration] = STATE(5778), - [sym_enum_declaration] = STATE(5778), - [sym_abstract_enum_class_declaration] = STATE(5778), - [sym_enum_class_declaration] = STATE(5778), + [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(5778), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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_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(123), - [sym_xhp_modifier] = ACTIONS(125), + [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), }, [84] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1697), - [sym_expression_statement] = STATE(1697), - [sym_compound_statement] = STATE(1697), - [sym_return_statement] = STATE(1697), - [sym_break_statement] = STATE(1697), - [sym_continue_statement] = STATE(1697), - [sym_throw_statement] = STATE(1697), - [sym_echo_statement] = STATE(1697), - [sym_unset_statement] = STATE(1697), - [sym_concurrent_statement] = STATE(1697), - [sym_use_statement] = STATE(1697), - [sym_if_statement] = STATE(1697), - [sym_switch_statement] = STATE(1697), - [sym_foreach_statement] = STATE(1697), - [sym_while_statement] = STATE(1697), - [sym_do_statement] = STATE(1697), - [sym_for_statement] = STATE(1697), - [sym_try_statement] = STATE(1697), - [sym_using_statement] = STATE(1697), + [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), @@ -32747,159 +33209,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1697), - [sym_function_declaration] = STATE(1697), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1697), - [sym_interface_declaration] = STATE(1697), - [sym_class_declaration] = STATE(1697), - [sym_const_declaration] = STATE(1697), - [sym_enum_declaration] = STATE(1697), - [sym_abstract_enum_class_declaration] = STATE(1697), - [sym_enum_class_declaration] = STATE(1697), + [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(1697), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [85] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4842), - [sym_expression_statement] = STATE(4842), - [sym_compound_statement] = STATE(4842), - [sym_return_statement] = STATE(4842), - [sym_break_statement] = STATE(4842), - [sym_continue_statement] = STATE(4842), - [sym_throw_statement] = STATE(4842), - [sym_echo_statement] = STATE(4842), - [sym_unset_statement] = STATE(4842), - [sym_concurrent_statement] = STATE(4842), - [sym_use_statement] = STATE(4842), - [sym_if_statement] = STATE(4842), - [sym_switch_statement] = STATE(4842), - [sym_foreach_statement] = STATE(4842), - [sym_while_statement] = STATE(4842), - [sym_do_statement] = STATE(4842), - [sym_for_statement] = STATE(4842), - [sym_try_statement] = STATE(4842), - [sym_using_statement] = STATE(4842), + [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), @@ -32907,159 +33371,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4842), - [sym_function_declaration] = STATE(4842), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4842), - [sym_interface_declaration] = STATE(4842), - [sym_class_declaration] = STATE(4842), - [sym_const_declaration] = STATE(4842), - [sym_enum_declaration] = STATE(4842), - [sym_abstract_enum_class_declaration] = STATE(4842), - [sym_enum_class_declaration] = STATE(4842), + [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(4842), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [86] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1507), - [sym_expression_statement] = STATE(1507), - [sym_compound_statement] = STATE(1507), - [sym_return_statement] = STATE(1507), - [sym_break_statement] = STATE(1507), - [sym_continue_statement] = STATE(1507), - [sym_throw_statement] = STATE(1507), - [sym_echo_statement] = STATE(1507), - [sym_unset_statement] = STATE(1507), - [sym_concurrent_statement] = STATE(1507), - [sym_use_statement] = STATE(1507), - [sym_if_statement] = STATE(1507), - [sym_switch_statement] = STATE(1507), - [sym_foreach_statement] = STATE(1507), - [sym_while_statement] = STATE(1507), - [sym_do_statement] = STATE(1507), - [sym_for_statement] = STATE(1507), - [sym_try_statement] = STATE(1507), - [sym_using_statement] = STATE(1507), + [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), @@ -33067,47 +33533,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1507), - [sym_function_declaration] = STATE(1507), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1507), - [sym_interface_declaration] = STATE(1507), - [sym_class_declaration] = STATE(1507), - [sym_const_declaration] = STATE(1507), - [sym_enum_declaration] = STATE(1507), - [sym_abstract_enum_class_declaration] = STATE(1507), - [sym_enum_class_declaration] = STATE(1507), + [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(1507), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -33119,64 +33585,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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), @@ -33193,33 +33659,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1145), - [sym_expression_statement] = STATE(1145), - [sym_compound_statement] = STATE(1145), - [sym_return_statement] = STATE(1145), - [sym_break_statement] = STATE(1145), - [sym_continue_statement] = STATE(1145), - [sym_throw_statement] = STATE(1145), - [sym_echo_statement] = STATE(1145), - [sym_unset_statement] = STATE(1145), - [sym_concurrent_statement] = STATE(1145), - [sym_use_statement] = STATE(1145), - [sym_if_statement] = STATE(1145), - [sym_switch_statement] = STATE(1145), - [sym_foreach_statement] = STATE(1145), - [sym_while_statement] = STATE(1145), - [sym_do_statement] = STATE(1145), - [sym_for_statement] = STATE(1145), - [sym_try_statement] = STATE(1145), - [sym_using_statement] = STATE(1145), + [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), @@ -33227,159 +33695,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1145), - [sym_function_declaration] = STATE(1145), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1145), - [sym_interface_declaration] = STATE(1145), - [sym_class_declaration] = STATE(1145), - [sym_const_declaration] = STATE(1145), - [sym_enum_declaration] = STATE(1145), - [sym_abstract_enum_class_declaration] = STATE(1145), - [sym_enum_class_declaration] = STATE(1145), + [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(1145), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(911), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [88] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1346), - [sym_expression_statement] = STATE(1346), - [sym_compound_statement] = STATE(1346), - [sym_return_statement] = STATE(1346), - [sym_break_statement] = STATE(1346), - [sym_continue_statement] = STATE(1346), - [sym_throw_statement] = STATE(1346), - [sym_echo_statement] = STATE(1346), - [sym_unset_statement] = STATE(1346), - [sym_concurrent_statement] = STATE(1346), - [sym_use_statement] = STATE(1346), - [sym_if_statement] = STATE(1346), - [sym_switch_statement] = STATE(1346), - [sym_foreach_statement] = STATE(1346), - [sym_while_statement] = STATE(1346), - [sym_do_statement] = STATE(1346), - [sym_for_statement] = STATE(1346), - [sym_try_statement] = STATE(1346), - [sym_using_statement] = STATE(1346), + [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), @@ -33387,159 +33857,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1346), - [sym_function_declaration] = STATE(1346), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1346), - [sym_interface_declaration] = STATE(1346), - [sym_class_declaration] = STATE(1346), - [sym_const_declaration] = STATE(1346), - [sym_enum_declaration] = STATE(1346), - [sym_abstract_enum_class_declaration] = STATE(1346), - [sym_enum_class_declaration] = STATE(1346), + [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(1346), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [89] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4897), - [sym_expression_statement] = STATE(4897), - [sym_compound_statement] = STATE(4897), - [sym_return_statement] = STATE(4897), - [sym_break_statement] = STATE(4897), - [sym_continue_statement] = STATE(4897), - [sym_throw_statement] = STATE(4897), - [sym_echo_statement] = STATE(4897), - [sym_unset_statement] = STATE(4897), - [sym_concurrent_statement] = STATE(4897), - [sym_use_statement] = STATE(4897), - [sym_if_statement] = STATE(4897), - [sym_switch_statement] = STATE(4897), - [sym_foreach_statement] = STATE(4897), - [sym_while_statement] = STATE(4897), - [sym_do_statement] = STATE(4897), - [sym_for_statement] = STATE(4897), - [sym_try_statement] = STATE(4897), - [sym_using_statement] = STATE(4897), + [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), @@ -33547,159 +34019,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4897), - [sym_function_declaration] = STATE(4897), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4897), - [sym_interface_declaration] = STATE(4897), - [sym_class_declaration] = STATE(4897), - [sym_const_declaration] = STATE(4897), - [sym_enum_declaration] = STATE(4897), - [sym_abstract_enum_class_declaration] = STATE(4897), - [sym_enum_class_declaration] = STATE(4897), + [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(4897), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [90] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4230), - [sym_expression_statement] = STATE(4230), - [sym_compound_statement] = STATE(4230), - [sym_return_statement] = STATE(4230), - [sym_break_statement] = STATE(4230), - [sym_continue_statement] = STATE(4230), - [sym_throw_statement] = STATE(4230), - [sym_echo_statement] = STATE(4230), - [sym_unset_statement] = STATE(4230), - [sym_concurrent_statement] = STATE(4230), - [sym_use_statement] = STATE(4230), - [sym_if_statement] = STATE(4230), - [sym_switch_statement] = STATE(4230), - [sym_foreach_statement] = STATE(4230), - [sym_while_statement] = STATE(4230), - [sym_do_statement] = STATE(4230), - [sym_for_statement] = STATE(4230), - [sym_try_statement] = STATE(4230), - [sym_using_statement] = STATE(4230), + [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), @@ -33707,159 +34181,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4230), - [sym_function_declaration] = STATE(4230), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4230), - [sym_interface_declaration] = STATE(4230), - [sym_class_declaration] = STATE(4230), - [sym_const_declaration] = STATE(4230), - [sym_enum_declaration] = STATE(4230), - [sym_abstract_enum_class_declaration] = STATE(4230), - [sym_enum_class_declaration] = STATE(4230), + [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(4230), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [91] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [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__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), @@ -33867,159 +34343,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1373), - [sym_function_declaration] = STATE(1373), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [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_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(1373), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [92] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1350), - [sym_expression_statement] = STATE(1350), - [sym_compound_statement] = STATE(1350), - [sym_return_statement] = STATE(1350), - [sym_break_statement] = STATE(1350), - [sym_continue_statement] = STATE(1350), - [sym_throw_statement] = STATE(1350), - [sym_echo_statement] = STATE(1350), - [sym_unset_statement] = STATE(1350), - [sym_concurrent_statement] = STATE(1350), - [sym_use_statement] = STATE(1350), - [sym_if_statement] = STATE(1350), - [sym_switch_statement] = STATE(1350), - [sym_foreach_statement] = STATE(1350), - [sym_while_statement] = STATE(1350), - [sym_do_statement] = STATE(1350), - [sym_for_statement] = STATE(1350), - [sym_try_statement] = STATE(1350), - [sym_using_statement] = STATE(1350), + [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), @@ -34027,159 +34505,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1350), - [sym_function_declaration] = STATE(1350), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1350), - [sym_interface_declaration] = STATE(1350), - [sym_class_declaration] = STATE(1350), - [sym_const_declaration] = STATE(1350), - [sym_enum_declaration] = STATE(1350), - [sym_abstract_enum_class_declaration] = STATE(1350), - [sym_enum_class_declaration] = STATE(1350), + [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(1350), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [sym_namespace_declaration] = STATE(1654), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [93] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1298), - [sym_expression_statement] = STATE(1298), - [sym_compound_statement] = STATE(1298), - [sym_return_statement] = STATE(1298), - [sym_break_statement] = STATE(1298), - [sym_continue_statement] = STATE(1298), - [sym_throw_statement] = STATE(1298), - [sym_echo_statement] = STATE(1298), - [sym_unset_statement] = STATE(1298), - [sym_concurrent_statement] = STATE(1298), - [sym_use_statement] = STATE(1298), - [sym_if_statement] = STATE(1298), - [sym_switch_statement] = STATE(1298), - [sym_foreach_statement] = STATE(1298), - [sym_while_statement] = STATE(1298), - [sym_do_statement] = STATE(1298), - [sym_for_statement] = STATE(1298), - [sym_try_statement] = STATE(1298), - [sym_using_statement] = STATE(1298), + [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), @@ -34187,159 +34667,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1298), - [sym_function_declaration] = STATE(1298), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1298), - [sym_interface_declaration] = STATE(1298), - [sym_class_declaration] = STATE(1298), - [sym_const_declaration] = STATE(1298), - [sym_enum_declaration] = STATE(1298), - [sym_abstract_enum_class_declaration] = STATE(1298), - [sym_enum_class_declaration] = STATE(1298), + [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(1298), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [94] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1284), - [sym_expression_statement] = STATE(1284), - [sym_compound_statement] = STATE(1284), - [sym_return_statement] = STATE(1284), - [sym_break_statement] = STATE(1284), - [sym_continue_statement] = STATE(1284), - [sym_throw_statement] = STATE(1284), - [sym_echo_statement] = STATE(1284), - [sym_unset_statement] = STATE(1284), - [sym_concurrent_statement] = STATE(1284), - [sym_use_statement] = STATE(1284), - [sym_if_statement] = STATE(1284), - [sym_switch_statement] = STATE(1284), - [sym_foreach_statement] = STATE(1284), - [sym_while_statement] = STATE(1284), - [sym_do_statement] = STATE(1284), - [sym_for_statement] = STATE(1284), - [sym_try_statement] = STATE(1284), - [sym_using_statement] = STATE(1284), + [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), @@ -34347,159 +34829,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1284), - [sym_function_declaration] = STATE(1284), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1284), - [sym_interface_declaration] = STATE(1284), - [sym_class_declaration] = STATE(1284), - [sym_const_declaration] = STATE(1284), - [sym_enum_declaration] = STATE(1284), - [sym_abstract_enum_class_declaration] = STATE(1284), - [sym_enum_class_declaration] = STATE(1284), + [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(1284), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [sym_namespace_declaration] = STATE(1608), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [95] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1257), - [sym_expression_statement] = STATE(1257), - [sym_compound_statement] = STATE(1257), - [sym_return_statement] = STATE(1257), - [sym_break_statement] = STATE(1257), - [sym_continue_statement] = STATE(1257), - [sym_throw_statement] = STATE(1257), - [sym_echo_statement] = STATE(1257), - [sym_unset_statement] = STATE(1257), - [sym_concurrent_statement] = STATE(1257), - [sym_use_statement] = STATE(1257), - [sym_if_statement] = STATE(1257), - [sym_switch_statement] = STATE(1257), - [sym_foreach_statement] = STATE(1257), - [sym_while_statement] = STATE(1257), - [sym_do_statement] = STATE(1257), - [sym_for_statement] = STATE(1257), - [sym_try_statement] = STATE(1257), - [sym_using_statement] = STATE(1257), + [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), @@ -34507,159 +34991,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1257), - [sym_function_declaration] = STATE(1257), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1257), - [sym_interface_declaration] = STATE(1257), - [sym_class_declaration] = STATE(1257), - [sym_const_declaration] = STATE(1257), - [sym_enum_declaration] = STATE(1257), - [sym_abstract_enum_class_declaration] = STATE(1257), - [sym_enum_class_declaration] = STATE(1257), + [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(1257), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [sym_namespace_declaration] = STATE(1529), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [96] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1256), - [sym_expression_statement] = STATE(1256), - [sym_compound_statement] = STATE(1256), - [sym_return_statement] = STATE(1256), - [sym_break_statement] = STATE(1256), - [sym_continue_statement] = STATE(1256), - [sym_throw_statement] = STATE(1256), - [sym_echo_statement] = STATE(1256), - [sym_unset_statement] = STATE(1256), - [sym_concurrent_statement] = STATE(1256), - [sym_use_statement] = STATE(1256), - [sym_if_statement] = STATE(1256), - [sym_switch_statement] = STATE(1256), - [sym_foreach_statement] = STATE(1256), - [sym_while_statement] = STATE(1256), - [sym_do_statement] = STATE(1256), - [sym_for_statement] = STATE(1256), - [sym_try_statement] = STATE(1256), - [sym_using_statement] = STATE(1256), + [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), @@ -34667,159 +35153,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1256), - [sym_function_declaration] = STATE(1256), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1256), - [sym_interface_declaration] = STATE(1256), - [sym_class_declaration] = STATE(1256), - [sym_const_declaration] = STATE(1256), - [sym_enum_declaration] = STATE(1256), - [sym_abstract_enum_class_declaration] = STATE(1256), - [sym_enum_class_declaration] = STATE(1256), + [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(1256), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [sym_namespace_declaration] = STATE(1526), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [97] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(710), - [sym_expression_statement] = STATE(710), - [sym_compound_statement] = STATE(710), - [sym_return_statement] = STATE(710), - [sym_break_statement] = STATE(710), - [sym_continue_statement] = STATE(710), - [sym_throw_statement] = STATE(710), - [sym_echo_statement] = STATE(710), - [sym_unset_statement] = STATE(710), - [sym_concurrent_statement] = STATE(710), - [sym_use_statement] = STATE(710), - [sym_if_statement] = STATE(710), - [sym_switch_statement] = STATE(710), - [sym_foreach_statement] = STATE(710), - [sym_while_statement] = STATE(710), - [sym_do_statement] = STATE(710), - [sym_for_statement] = STATE(710), - [sym_try_statement] = STATE(710), - [sym_using_statement] = STATE(710), + [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), @@ -34827,159 +35315,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(710), - [sym_function_declaration] = STATE(710), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(710), - [sym_interface_declaration] = STATE(710), - [sym_class_declaration] = STATE(710), - [sym_const_declaration] = STATE(710), - [sym_enum_declaration] = STATE(710), - [sym_abstract_enum_class_declaration] = STATE(710), - [sym_enum_class_declaration] = STATE(710), + [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(710), + [sym_namespace_declaration] = STATE(1445), [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(4006), + [sym_await_modifier] = STATE(6096), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [98] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1231), - [sym_expression_statement] = STATE(1231), - [sym_compound_statement] = STATE(1231), - [sym_return_statement] = STATE(1231), - [sym_break_statement] = STATE(1231), - [sym_continue_statement] = STATE(1231), - [sym_throw_statement] = STATE(1231), - [sym_echo_statement] = STATE(1231), - [sym_unset_statement] = STATE(1231), - [sym_concurrent_statement] = STATE(1231), - [sym_use_statement] = STATE(1231), - [sym_if_statement] = STATE(1231), - [sym_switch_statement] = STATE(1231), - [sym_foreach_statement] = STATE(1231), - [sym_while_statement] = STATE(1231), - [sym_do_statement] = STATE(1231), - [sym_for_statement] = STATE(1231), - [sym_try_statement] = STATE(1231), - [sym_using_statement] = STATE(1231), + [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), @@ -34987,159 +35477,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1231), - [sym_function_declaration] = STATE(1231), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1231), - [sym_interface_declaration] = STATE(1231), - [sym_class_declaration] = STATE(1231), - [sym_const_declaration] = STATE(1231), - [sym_enum_declaration] = STATE(1231), - [sym_abstract_enum_class_declaration] = STATE(1231), - [sym_enum_class_declaration] = STATE(1231), + [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(1231), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [sym_namespace_declaration] = STATE(1437), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [99] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4215), - [sym_expression_statement] = STATE(4215), - [sym_compound_statement] = STATE(4215), - [sym_return_statement] = STATE(4215), - [sym_break_statement] = STATE(4215), - [sym_continue_statement] = STATE(4215), - [sym_throw_statement] = STATE(4215), - [sym_echo_statement] = STATE(4215), - [sym_unset_statement] = STATE(4215), - [sym_concurrent_statement] = STATE(4215), - [sym_use_statement] = STATE(4215), - [sym_if_statement] = STATE(4215), - [sym_switch_statement] = STATE(4215), - [sym_foreach_statement] = STATE(4215), - [sym_while_statement] = STATE(4215), - [sym_do_statement] = STATE(4215), - [sym_for_statement] = STATE(4215), - [sym_try_statement] = STATE(4215), - [sym_using_statement] = STATE(4215), + [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), @@ -35147,159 +35639,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4215), - [sym_function_declaration] = STATE(4215), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4215), - [sym_interface_declaration] = STATE(4215), - [sym_class_declaration] = STATE(4215), - [sym_const_declaration] = STATE(4215), - [sym_enum_declaration] = STATE(4215), - [sym_abstract_enum_class_declaration] = STATE(4215), - [sym_enum_class_declaration] = STATE(4215), + [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(4215), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [sym_namespace_declaration] = STATE(1443), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [100] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(5646), - [sym_expression_statement] = STATE(5646), - [sym_compound_statement] = STATE(5646), - [sym_return_statement] = STATE(5646), - [sym_break_statement] = STATE(5646), - [sym_continue_statement] = STATE(5646), - [sym_throw_statement] = STATE(5646), - [sym_echo_statement] = STATE(5646), - [sym_unset_statement] = STATE(5646), - [sym_concurrent_statement] = STATE(5646), - [sym_use_statement] = STATE(5646), - [sym_if_statement] = STATE(5646), - [sym_switch_statement] = STATE(5646), - [sym_foreach_statement] = STATE(5646), - [sym_while_statement] = STATE(5646), - [sym_do_statement] = STATE(5646), - [sym_for_statement] = STATE(5646), - [sym_try_statement] = STATE(5646), - [sym_using_statement] = STATE(5646), + [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), @@ -35307,159 +35801,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5646), - [sym_function_declaration] = STATE(5646), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5646), - [sym_interface_declaration] = STATE(5646), - [sym_class_declaration] = STATE(5646), - [sym_const_declaration] = STATE(5646), - [sym_enum_declaration] = STATE(5646), - [sym_abstract_enum_class_declaration] = STATE(5646), - [sym_enum_class_declaration] = STATE(5646), + [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(5646), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(1449), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(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), }, [101] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1583), - [sym_expression_statement] = STATE(1583), - [sym_compound_statement] = STATE(1583), - [sym_return_statement] = STATE(1583), - [sym_break_statement] = STATE(1583), - [sym_continue_statement] = STATE(1583), - [sym_throw_statement] = STATE(1583), - [sym_echo_statement] = STATE(1583), - [sym_unset_statement] = STATE(1583), - [sym_concurrent_statement] = STATE(1583), - [sym_use_statement] = STATE(1583), - [sym_if_statement] = STATE(1583), - [sym_switch_statement] = STATE(1583), - [sym_foreach_statement] = STATE(1583), - [sym_while_statement] = STATE(1583), - [sym_do_statement] = STATE(1583), - [sym_for_statement] = STATE(1583), - [sym_try_statement] = STATE(1583), - [sym_using_statement] = STATE(1583), + [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), @@ -35467,159 +35963,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym_class_declaration] = STATE(1583), - [sym_const_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_abstract_enum_class_declaration] = STATE(1583), - [sym_enum_class_declaration] = STATE(1583), + [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(1583), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(1728), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(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), }, [102] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1454), - [sym_expression_statement] = STATE(1454), - [sym_compound_statement] = STATE(1454), - [sym_return_statement] = STATE(1454), - [sym_break_statement] = STATE(1454), - [sym_continue_statement] = STATE(1454), - [sym_throw_statement] = STATE(1454), - [sym_echo_statement] = STATE(1454), - [sym_unset_statement] = STATE(1454), - [sym_concurrent_statement] = STATE(1454), - [sym_use_statement] = STATE(1454), - [sym_if_statement] = STATE(1454), - [sym_switch_statement] = STATE(1454), - [sym_foreach_statement] = STATE(1454), - [sym_while_statement] = STATE(1454), - [sym_do_statement] = STATE(1454), - [sym_for_statement] = STATE(1454), - [sym_try_statement] = STATE(1454), - [sym_using_statement] = STATE(1454), + [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), @@ -35627,159 +36125,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1454), - [sym_function_declaration] = STATE(1454), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1454), - [sym_interface_declaration] = STATE(1454), - [sym_class_declaration] = STATE(1454), - [sym_const_declaration] = STATE(1454), - [sym_enum_declaration] = STATE(1454), - [sym_abstract_enum_class_declaration] = STATE(1454), - [sym_enum_class_declaration] = STATE(1454), + [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(1454), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(1723), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(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), }, [103] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [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__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), @@ -35787,159 +36287,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1232), - [sym_function_declaration] = STATE(1232), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [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_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(1232), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [104] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1343), - [sym_expression_statement] = STATE(1343), - [sym_compound_statement] = STATE(1343), - [sym_return_statement] = STATE(1343), - [sym_break_statement] = STATE(1343), - [sym_continue_statement] = STATE(1343), - [sym_throw_statement] = STATE(1343), - [sym_echo_statement] = STATE(1343), - [sym_unset_statement] = STATE(1343), - [sym_concurrent_statement] = STATE(1343), - [sym_use_statement] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_switch_statement] = STATE(1343), - [sym_foreach_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_do_statement] = STATE(1343), - [sym_for_statement] = STATE(1343), - [sym_try_statement] = STATE(1343), - [sym_using_statement] = STATE(1343), + [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), @@ -35947,159 +36449,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1343), - [sym_function_declaration] = STATE(1343), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1343), - [sym_interface_declaration] = STATE(1343), - [sym_class_declaration] = STATE(1343), - [sym_const_declaration] = STATE(1343), - [sym_enum_declaration] = STATE(1343), - [sym_abstract_enum_class_declaration] = STATE(1343), - [sym_enum_class_declaration] = STATE(1343), + [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(1343), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [105] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1446), - [sym_expression_statement] = STATE(1446), - [sym_compound_statement] = STATE(1446), - [sym_return_statement] = STATE(1446), - [sym_break_statement] = STATE(1446), - [sym_continue_statement] = STATE(1446), - [sym_throw_statement] = STATE(1446), - [sym_echo_statement] = STATE(1446), - [sym_unset_statement] = STATE(1446), - [sym_concurrent_statement] = STATE(1446), - [sym_use_statement] = STATE(1446), - [sym_if_statement] = STATE(1446), - [sym_switch_statement] = STATE(1446), - [sym_foreach_statement] = STATE(1446), - [sym_while_statement] = STATE(1446), - [sym_do_statement] = STATE(1446), - [sym_for_statement] = STATE(1446), - [sym_try_statement] = STATE(1446), - [sym_using_statement] = STATE(1446), + [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), @@ -36107,159 +36611,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1446), - [sym_function_declaration] = STATE(1446), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1446), - [sym_interface_declaration] = STATE(1446), - [sym_class_declaration] = STATE(1446), - [sym_const_declaration] = STATE(1446), - [sym_enum_declaration] = STATE(1446), - [sym_abstract_enum_class_declaration] = STATE(1446), - [sym_enum_class_declaration] = STATE(1446), + [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(1446), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(963), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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_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), }, [106] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1385), - [sym_expression_statement] = STATE(1385), - [sym_compound_statement] = STATE(1385), - [sym_return_statement] = STATE(1385), - [sym_break_statement] = STATE(1385), - [sym_continue_statement] = STATE(1385), - [sym_throw_statement] = STATE(1385), - [sym_echo_statement] = STATE(1385), - [sym_unset_statement] = STATE(1385), - [sym_concurrent_statement] = STATE(1385), - [sym_use_statement] = STATE(1385), - [sym_if_statement] = STATE(1385), - [sym_switch_statement] = STATE(1385), - [sym_foreach_statement] = STATE(1385), - [sym_while_statement] = STATE(1385), - [sym_do_statement] = STATE(1385), - [sym_for_statement] = STATE(1385), - [sym_try_statement] = STATE(1385), - [sym_using_statement] = STATE(1385), + [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), @@ -36267,159 +36773,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1385), - [sym_function_declaration] = STATE(1385), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1385), - [sym_interface_declaration] = STATE(1385), - [sym_class_declaration] = STATE(1385), - [sym_const_declaration] = STATE(1385), - [sym_enum_declaration] = STATE(1385), - [sym_abstract_enum_class_declaration] = STATE(1385), - [sym_enum_class_declaration] = STATE(1385), + [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(1385), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [107] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [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__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), @@ -36427,159 +36935,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1212), - [sym_function_declaration] = STATE(1212), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [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_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(1212), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [108] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1422), - [sym_expression_statement] = STATE(1422), - [sym_compound_statement] = STATE(1422), - [sym_return_statement] = STATE(1422), - [sym_break_statement] = STATE(1422), - [sym_continue_statement] = STATE(1422), - [sym_throw_statement] = STATE(1422), - [sym_echo_statement] = STATE(1422), - [sym_unset_statement] = STATE(1422), - [sym_concurrent_statement] = STATE(1422), - [sym_use_statement] = STATE(1422), - [sym_if_statement] = STATE(1422), - [sym_switch_statement] = STATE(1422), - [sym_foreach_statement] = STATE(1422), - [sym_while_statement] = STATE(1422), - [sym_do_statement] = STATE(1422), - [sym_for_statement] = STATE(1422), - [sym_try_statement] = STATE(1422), - [sym_using_statement] = STATE(1422), + [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), @@ -36587,159 +37097,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1422), - [sym_function_declaration] = STATE(1422), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1422), - [sym_interface_declaration] = STATE(1422), - [sym_class_declaration] = STATE(1422), - [sym_const_declaration] = STATE(1422), - [sym_enum_declaration] = STATE(1422), - [sym_abstract_enum_class_declaration] = STATE(1422), - [sym_enum_class_declaration] = STATE(1422), + [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(1422), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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_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), }, [109] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1240), - [sym_expression_statement] = STATE(1240), - [sym_compound_statement] = STATE(1240), - [sym_return_statement] = STATE(1240), - [sym_break_statement] = STATE(1240), - [sym_continue_statement] = STATE(1240), - [sym_throw_statement] = STATE(1240), - [sym_echo_statement] = STATE(1240), - [sym_unset_statement] = STATE(1240), - [sym_concurrent_statement] = STATE(1240), - [sym_use_statement] = STATE(1240), - [sym_if_statement] = STATE(1240), - [sym_switch_statement] = STATE(1240), - [sym_foreach_statement] = STATE(1240), - [sym_while_statement] = STATE(1240), - [sym_do_statement] = STATE(1240), - [sym_for_statement] = STATE(1240), - [sym_try_statement] = STATE(1240), - [sym_using_statement] = STATE(1240), + [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), @@ -36747,159 +37259,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1240), - [sym_function_declaration] = STATE(1240), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1240), - [sym_interface_declaration] = STATE(1240), - [sym_class_declaration] = STATE(1240), - [sym_const_declaration] = STATE(1240), - [sym_enum_declaration] = STATE(1240), - [sym_abstract_enum_class_declaration] = STATE(1240), - [sym_enum_class_declaration] = STATE(1240), + [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(1240), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [110] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1386), - [sym_expression_statement] = STATE(1386), - [sym_compound_statement] = STATE(1386), - [sym_return_statement] = STATE(1386), - [sym_break_statement] = STATE(1386), - [sym_continue_statement] = STATE(1386), - [sym_throw_statement] = STATE(1386), - [sym_echo_statement] = STATE(1386), - [sym_unset_statement] = STATE(1386), - [sym_concurrent_statement] = STATE(1386), - [sym_use_statement] = STATE(1386), - [sym_if_statement] = STATE(1386), - [sym_switch_statement] = STATE(1386), - [sym_foreach_statement] = STATE(1386), - [sym_while_statement] = STATE(1386), - [sym_do_statement] = STATE(1386), - [sym_for_statement] = STATE(1386), - [sym_try_statement] = STATE(1386), - [sym_using_statement] = STATE(1386), + [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), @@ -36907,159 +37421,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1386), - [sym_function_declaration] = STATE(1386), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1386), - [sym_interface_declaration] = STATE(1386), - [sym_class_declaration] = STATE(1386), - [sym_const_declaration] = STATE(1386), - [sym_enum_declaration] = STATE(1386), - [sym_abstract_enum_class_declaration] = STATE(1386), - [sym_enum_class_declaration] = STATE(1386), + [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(1386), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [111] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1466), - [sym_expression_statement] = STATE(1465), - [sym_compound_statement] = STATE(1464), - [sym_return_statement] = STATE(1459), - [sym_break_statement] = STATE(1458), - [sym_continue_statement] = STATE(1457), - [sym_throw_statement] = STATE(1456), - [sym_echo_statement] = STATE(1455), - [sym_unset_statement] = STATE(1453), - [sym_concurrent_statement] = STATE(1452), - [sym_use_statement] = STATE(1450), - [sym_if_statement] = STATE(1449), - [sym_switch_statement] = STATE(1447), - [sym_foreach_statement] = STATE(1445), - [sym_while_statement] = STATE(1444), - [sym_do_statement] = STATE(1443), - [sym_for_statement] = STATE(1441), - [sym_try_statement] = STATE(1439), - [sym_using_statement] = STATE(1438), + [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), @@ -37067,159 +37583,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1435), - [sym_function_declaration] = STATE(1433), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1432), - [sym_interface_declaration] = STATE(1430), - [sym_class_declaration] = STATE(1429), - [sym_const_declaration] = STATE(1427), - [sym_enum_declaration] = STATE(1426), - [sym_abstract_enum_class_declaration] = STATE(1421), - [sym_enum_class_declaration] = STATE(1425), + [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(1423), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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_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), }, [112] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1121), - [sym_expression_statement] = STATE(1120), - [sym_compound_statement] = STATE(1119), - [sym_return_statement] = STATE(1118), - [sym_break_statement] = STATE(1117), - [sym_continue_statement] = STATE(1116), - [sym_throw_statement] = STATE(1115), - [sym_echo_statement] = STATE(1114), - [sym_unset_statement] = STATE(1113), - [sym_concurrent_statement] = STATE(1112), - [sym_use_statement] = STATE(1111), - [sym_if_statement] = STATE(1110), - [sym_switch_statement] = STATE(1109), - [sym_foreach_statement] = STATE(1107), - [sym_while_statement] = STATE(1106), - [sym_do_statement] = STATE(1104), - [sym_for_statement] = STATE(1103), - [sym_try_statement] = STATE(1102), - [sym_using_statement] = STATE(1101), + [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), @@ -37227,159 +37745,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1100), - [sym_function_declaration] = STATE(1098), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1097), - [sym_interface_declaration] = STATE(1096), - [sym_class_declaration] = STATE(1095), - [sym_const_declaration] = STATE(1094), - [sym_enum_declaration] = STATE(1093), - [sym_abstract_enum_class_declaration] = STATE(1092), - [sym_enum_class_declaration] = STATE(1091), + [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(1090), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(911), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [113] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [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__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), @@ -37387,159 +37907,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1167), - [sym_function_declaration] = STATE(1167), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [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_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(1167), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [114] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [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__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), @@ -37547,159 +38069,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1163), - [sym_function_declaration] = STATE(1163), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [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_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(716), + [sym_function_declaration] = STATE(716), + [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(1163), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [115] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(5712), - [sym_expression_statement] = STATE(5712), - [sym_compound_statement] = STATE(5712), - [sym_return_statement] = STATE(5712), - [sym_break_statement] = STATE(5712), - [sym_continue_statement] = STATE(5712), - [sym_throw_statement] = STATE(5712), - [sym_echo_statement] = STATE(5712), - [sym_unset_statement] = STATE(5712), - [sym_concurrent_statement] = STATE(5712), - [sym_use_statement] = STATE(5712), - [sym_if_statement] = STATE(5712), - [sym_switch_statement] = STATE(5712), - [sym_foreach_statement] = STATE(5712), - [sym_while_statement] = STATE(5712), - [sym_do_statement] = STATE(5712), - [sym_for_statement] = STATE(5712), - [sym_try_statement] = STATE(5712), - [sym_using_statement] = STATE(5712), + [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), @@ -37707,159 +38231,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5712), - [sym_function_declaration] = STATE(5712), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5712), - [sym_interface_declaration] = STATE(5712), - [sym_class_declaration] = STATE(5712), - [sym_const_declaration] = STATE(5712), - [sym_enum_declaration] = STATE(5712), - [sym_abstract_enum_class_declaration] = STATE(5712), - [sym_enum_class_declaration] = STATE(5712), + [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(5712), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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_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(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), }, [116] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(1005), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2700), - [sym_empty_statement] = STATE(1087), - [sym_expression_statement] = STATE(1087), - [sym_compound_statement] = STATE(1087), - [sym_return_statement] = STATE(1087), - [sym_break_statement] = STATE(1087), - [sym_continue_statement] = STATE(1087), - [sym_throw_statement] = STATE(1087), - [sym_echo_statement] = STATE(1087), - [sym_unset_statement] = STATE(1087), - [sym_concurrent_statement] = STATE(1087), - [sym_use_statement] = STATE(1087), - [sym_if_statement] = STATE(1087), - [sym_switch_statement] = STATE(1087), - [sym_foreach_statement] = STATE(1087), - [sym_while_statement] = STATE(1087), - [sym_do_statement] = STATE(1087), - [sym_for_statement] = STATE(1087), - [sym_try_statement] = STATE(1087), - [sym_using_statement] = STATE(1087), + [sym__expression] = STATE(2617), + [sym_empty_statement] = STATE(1005), + [sym_expression_statement] = STATE(1005), + [sym_compound_statement] = STATE(1005), + [sym_return_statement] = STATE(1005), + [sym_break_statement] = STATE(1005), + [sym_continue_statement] = STATE(1005), + [sym_throw_statement] = STATE(1005), + [sym_echo_statement] = STATE(1005), + [sym_unset_statement] = STATE(1005), + [sym_concurrent_statement] = STATE(1005), + [sym_use_statement] = STATE(1005), + [sym_if_statement] = STATE(1005), + [sym_switch_statement] = STATE(1005), + [sym_foreach_statement] = STATE(1005), + [sym_while_statement] = STATE(1005), + [sym_do_statement] = STATE(1005), + [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), @@ -37867,159 +38393,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1087), - [sym_function_declaration] = STATE(1087), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1087), - [sym_interface_declaration] = STATE(1087), - [sym_class_declaration] = STATE(1087), - [sym_const_declaration] = STATE(1087), - [sym_enum_declaration] = STATE(1087), - [sym_abstract_enum_class_declaration] = STATE(1087), - [sym_enum_class_declaration] = STATE(1087), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1005), + [sym_function_declaration] = STATE(1005), + [sym__function_declaration_header] = STATE(5260), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(1005), + [sym_interface_declaration] = STATE(1005), + [sym_class_declaration] = STATE(1005), + [sym_const_declaration] = STATE(1005), + [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_namespace_declaration] = STATE(1087), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(849), - [sym_xhp_modifier] = ACTIONS(851), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [117] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1689), - [sym_expression_statement] = STATE(1689), - [sym_compound_statement] = STATE(1689), - [sym_return_statement] = STATE(1689), - [sym_break_statement] = STATE(1689), - [sym_continue_statement] = STATE(1689), - [sym_throw_statement] = STATE(1689), - [sym_echo_statement] = STATE(1689), + [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(1689), - [sym_use_statement] = STATE(1689), - [sym_if_statement] = STATE(1689), - [sym_switch_statement] = STATE(1689), - [sym_foreach_statement] = STATE(1689), - [sym_while_statement] = STATE(1689), - [sym_do_statement] = STATE(1689), - [sym_for_statement] = STATE(1689), - [sym_try_statement] = STATE(1689), - [sym_using_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), @@ -38027,47 +38555,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1689), - [sym_function_declaration] = STATE(1689), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1689), - [sym_interface_declaration] = STATE(1689), - [sym_class_declaration] = STATE(1689), - [sym_const_declaration] = STATE(1689), - [sym_enum_declaration] = STATE(1689), - [sym_abstract_enum_class_declaration] = STATE(1689), - [sym_enum_class_declaration] = STATE(1689), + [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(1689), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -38078,65 +38606,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(915), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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), @@ -38153,33 +38681,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [118] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(901), - [sym_expression_statement] = STATE(901), - [sym_compound_statement] = STATE(901), - [sym_return_statement] = STATE(901), - [sym_break_statement] = STATE(901), - [sym_continue_statement] = STATE(901), - [sym_throw_statement] = STATE(901), - [sym_echo_statement] = STATE(901), - [sym_unset_statement] = STATE(901), - [sym_concurrent_statement] = STATE(901), - [sym_use_statement] = STATE(901), - [sym_if_statement] = STATE(901), - [sym_switch_statement] = STATE(901), - [sym_foreach_statement] = STATE(901), - [sym_while_statement] = STATE(901), - [sym_do_statement] = STATE(901), - [sym_for_statement] = STATE(901), - [sym_try_statement] = STATE(901), - [sym_using_statement] = STATE(901), + [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), @@ -38187,159 +38717,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(901), - [sym_function_declaration] = STATE(901), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(901), - [sym_interface_declaration] = STATE(901), - [sym_class_declaration] = STATE(901), - [sym_const_declaration] = STATE(901), - [sym_enum_declaration] = STATE(901), - [sym_abstract_enum_class_declaration] = STATE(901), - [sym_enum_class_declaration] = STATE(901), + [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(901), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [sym_namespace_declaration] = STATE(4699), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [119] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [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__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), @@ -38347,159 +38879,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4610), - [sym_function_declaration] = STATE(4610), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [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_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(4610), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [120] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1070), - [sym_expression_statement] = STATE(1070), - [sym_compound_statement] = STATE(1070), - [sym_return_statement] = STATE(1070), - [sym_break_statement] = STATE(1070), - [sym_continue_statement] = STATE(1070), - [sym_throw_statement] = STATE(1070), - [sym_echo_statement] = STATE(1070), - [sym_unset_statement] = STATE(1070), - [sym_concurrent_statement] = STATE(1070), - [sym_use_statement] = STATE(1070), - [sym_if_statement] = STATE(1070), - [sym_switch_statement] = STATE(1070), - [sym_foreach_statement] = STATE(1070), - [sym_while_statement] = STATE(1070), - [sym_do_statement] = STATE(1070), - [sym_for_statement] = STATE(1070), - [sym_try_statement] = STATE(1070), - [sym_using_statement] = STATE(1070), + [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), @@ -38507,159 +39041,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1070), - [sym_function_declaration] = STATE(1070), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1070), - [sym_interface_declaration] = STATE(1070), - [sym_class_declaration] = STATE(1070), - [sym_const_declaration] = STATE(1070), - [sym_enum_declaration] = STATE(1070), - [sym_abstract_enum_class_declaration] = STATE(1070), - [sym_enum_class_declaration] = STATE(1070), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1094), + [sym_function_declaration] = STATE(1095), + [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(1070), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [121] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4685), - [sym_expression_statement] = STATE(4685), - [sym_compound_statement] = STATE(4685), - [sym_return_statement] = STATE(4685), - [sym_break_statement] = STATE(4685), - [sym_continue_statement] = STATE(4685), - [sym_throw_statement] = STATE(4685), - [sym_echo_statement] = STATE(4685), - [sym_unset_statement] = STATE(4685), - [sym_concurrent_statement] = STATE(4685), - [sym_use_statement] = STATE(4685), - [sym_if_statement] = STATE(4685), - [sym_switch_statement] = STATE(4685), - [sym_foreach_statement] = STATE(4685), - [sym_while_statement] = STATE(4685), - [sym_do_statement] = STATE(4685), - [sym_for_statement] = STATE(4685), - [sym_try_statement] = STATE(4685), - [sym_using_statement] = STATE(4685), + [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), @@ -38667,159 +39203,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4685), - [sym_function_declaration] = STATE(4685), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4685), - [sym_interface_declaration] = STATE(4685), - [sym_class_declaration] = STATE(4685), - [sym_const_declaration] = STATE(4685), - [sym_enum_declaration] = STATE(4685), - [sym_abstract_enum_class_declaration] = STATE(4685), - [sym_enum_class_declaration] = STATE(4685), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1104), + [sym_function_declaration] = STATE(1104), + [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(4685), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [122] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1364), - [sym_expression_statement] = STATE(1364), - [sym_compound_statement] = STATE(1364), - [sym_return_statement] = STATE(1364), - [sym_break_statement] = STATE(1364), - [sym_continue_statement] = STATE(1364), - [sym_throw_statement] = STATE(1364), - [sym_echo_statement] = STATE(1364), - [sym_unset_statement] = STATE(1364), - [sym_concurrent_statement] = STATE(1364), - [sym_use_statement] = STATE(1364), - [sym_if_statement] = STATE(1364), - [sym_switch_statement] = STATE(1364), - [sym_foreach_statement] = STATE(1364), - [sym_while_statement] = STATE(1364), - [sym_do_statement] = STATE(1364), - [sym_for_statement] = STATE(1364), - [sym_try_statement] = STATE(1364), - [sym_using_statement] = STATE(1364), + [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), @@ -38827,159 +39365,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1364), - [sym_function_declaration] = STATE(1364), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_class_declaration] = STATE(1364), - [sym_const_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_abstract_enum_class_declaration] = STATE(1364), - [sym_enum_class_declaration] = STATE(1364), + [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(1364), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [123] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4631), - [sym_expression_statement] = STATE(4631), - [sym_compound_statement] = STATE(4631), - [sym_return_statement] = STATE(4631), - [sym_break_statement] = STATE(4631), - [sym_continue_statement] = STATE(4631), - [sym_throw_statement] = STATE(4631), - [sym_echo_statement] = STATE(4631), - [sym_unset_statement] = STATE(4631), - [sym_concurrent_statement] = STATE(4631), - [sym_use_statement] = STATE(4631), - [sym_if_statement] = STATE(4631), - [sym_switch_statement] = STATE(4631), - [sym_foreach_statement] = STATE(4631), - [sym_while_statement] = STATE(4631), - [sym_do_statement] = STATE(4631), - [sym_for_statement] = STATE(4631), - [sym_try_statement] = STATE(4631), - [sym_using_statement] = STATE(4631), + [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), @@ -38987,159 +39527,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4631), - [sym_function_declaration] = STATE(4631), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4631), - [sym_interface_declaration] = STATE(4631), - [sym_class_declaration] = STATE(4631), - [sym_const_declaration] = STATE(4631), - [sym_enum_declaration] = STATE(4631), - [sym_abstract_enum_class_declaration] = STATE(4631), - [sym_enum_class_declaration] = STATE(4631), + [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(4631), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [sym_namespace_declaration] = STATE(1609), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [124] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4211), - [sym_expression_statement] = STATE(4211), - [sym_compound_statement] = STATE(4211), - [sym_return_statement] = STATE(4211), - [sym_break_statement] = STATE(4211), - [sym_continue_statement] = STATE(4211), - [sym_throw_statement] = STATE(4211), - [sym_echo_statement] = STATE(4211), - [sym_unset_statement] = STATE(4211), - [sym_concurrent_statement] = STATE(4211), - [sym_use_statement] = STATE(4211), - [sym_if_statement] = STATE(4211), - [sym_switch_statement] = STATE(4211), - [sym_foreach_statement] = STATE(4211), - [sym_while_statement] = STATE(4211), - [sym_do_statement] = STATE(4211), - [sym_for_statement] = STATE(4211), - [sym_try_statement] = STATE(4211), - [sym_using_statement] = STATE(4211), + [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), @@ -39147,159 +39689,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4211), - [sym_function_declaration] = STATE(4211), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4211), - [sym_interface_declaration] = STATE(4211), - [sym_class_declaration] = STATE(4211), - [sym_const_declaration] = STATE(4211), - [sym_enum_declaration] = STATE(4211), - [sym_abstract_enum_class_declaration] = STATE(4211), - [sym_enum_class_declaration] = STATE(4211), + [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(4211), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [125] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(900), - [sym_expression_statement] = STATE(900), - [sym_compound_statement] = STATE(900), - [sym_return_statement] = STATE(900), - [sym_break_statement] = STATE(900), - [sym_continue_statement] = STATE(900), - [sym_throw_statement] = STATE(900), - [sym_echo_statement] = STATE(900), - [sym_unset_statement] = STATE(900), - [sym_concurrent_statement] = STATE(900), - [sym_use_statement] = STATE(900), - [sym_if_statement] = STATE(900), - [sym_switch_statement] = STATE(900), - [sym_foreach_statement] = STATE(900), - [sym_while_statement] = STATE(900), - [sym_do_statement] = STATE(900), - [sym_for_statement] = STATE(900), - [sym_try_statement] = STATE(900), - [sym_using_statement] = STATE(900), + [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), @@ -39307,159 +39851,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(900), - [sym_function_declaration] = STATE(900), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(900), - [sym_interface_declaration] = STATE(900), - [sym_class_declaration] = STATE(900), - [sym_const_declaration] = STATE(900), - [sym_enum_declaration] = STATE(900), - [sym_abstract_enum_class_declaration] = STATE(900), - [sym_enum_class_declaration] = STATE(900), + [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(900), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [126] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [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__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), @@ -39467,159 +40013,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1590), - [sym_function_declaration] = STATE(1590), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [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_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(1590), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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_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), }, [127] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [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__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), @@ -39627,159 +40175,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(890), - [sym_function_declaration] = STATE(890), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [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_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(890), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [128] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1579), - [sym_expression_statement] = STATE(1579), - [sym_compound_statement] = STATE(1579), - [sym_return_statement] = STATE(1579), - [sym_break_statement] = STATE(1579), - [sym_continue_statement] = STATE(1579), - [sym_throw_statement] = STATE(1579), - [sym_echo_statement] = STATE(1579), - [sym_unset_statement] = STATE(1579), - [sym_concurrent_statement] = STATE(1579), - [sym_use_statement] = STATE(1579), - [sym_if_statement] = STATE(1579), - [sym_switch_statement] = STATE(1579), - [sym_foreach_statement] = STATE(1579), - [sym_while_statement] = STATE(1579), - [sym_do_statement] = STATE(1579), - [sym_for_statement] = STATE(1579), - [sym_try_statement] = STATE(1579), - [sym_using_statement] = STATE(1579), + [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), @@ -39787,159 +40337,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1579), - [sym_function_declaration] = STATE(1579), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1579), - [sym_interface_declaration] = STATE(1579), - [sym_class_declaration] = STATE(1579), - [sym_const_declaration] = STATE(1579), - [sym_enum_declaration] = STATE(1579), - [sym_abstract_enum_class_declaration] = STATE(1579), - [sym_enum_class_declaration] = STATE(1579), + [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(1579), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(4403), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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_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), }, [129] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1354), - [sym_expression_statement] = STATE(1354), - [sym_compound_statement] = STATE(1354), - [sym_return_statement] = STATE(1354), - [sym_break_statement] = STATE(1354), - [sym_continue_statement] = STATE(1354), - [sym_throw_statement] = STATE(1354), - [sym_echo_statement] = STATE(1354), - [sym_unset_statement] = STATE(1354), - [sym_concurrent_statement] = STATE(1354), - [sym_use_statement] = STATE(1354), - [sym_if_statement] = STATE(1354), - [sym_switch_statement] = STATE(1354), - [sym_foreach_statement] = STATE(1354), - [sym_while_statement] = STATE(1354), - [sym_do_statement] = STATE(1354), - [sym_for_statement] = STATE(1354), - [sym_try_statement] = STATE(1354), - [sym_using_statement] = STATE(1354), + [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), @@ -39947,159 +40499,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1354), - [sym_function_declaration] = STATE(1354), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1354), - [sym_interface_declaration] = STATE(1354), - [sym_class_declaration] = STATE(1354), - [sym_const_declaration] = STATE(1354), - [sym_enum_declaration] = STATE(1354), - [sym_abstract_enum_class_declaration] = STATE(1354), - [sym_enum_class_declaration] = STATE(1354), + [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(1354), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [sym_namespace_declaration] = STATE(1580), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [130] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1068), - [sym_expression_statement] = STATE(1068), - [sym_compound_statement] = STATE(1068), - [sym_return_statement] = STATE(1068), - [sym_break_statement] = STATE(1068), - [sym_continue_statement] = STATE(1068), - [sym_throw_statement] = STATE(1068), - [sym_echo_statement] = STATE(1068), - [sym_unset_statement] = STATE(1068), - [sym_concurrent_statement] = STATE(1068), - [sym_use_statement] = STATE(1068), - [sym_if_statement] = STATE(1068), - [sym_switch_statement] = STATE(1068), - [sym_foreach_statement] = STATE(1068), - [sym_while_statement] = STATE(1068), - [sym_do_statement] = STATE(1068), - [sym_for_statement] = STATE(1068), - [sym_try_statement] = STATE(1068), - [sym_using_statement] = STATE(1068), + [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), @@ -40107,159 +40661,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1068), - [sym_function_declaration] = STATE(1068), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1068), - [sym_interface_declaration] = STATE(1068), - [sym_class_declaration] = STATE(1068), - [sym_const_declaration] = STATE(1068), - [sym_enum_declaration] = STATE(1068), - [sym_abstract_enum_class_declaration] = STATE(1068), - [sym_enum_class_declaration] = STATE(1068), + [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(1068), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [131] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [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__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), @@ -40267,159 +40823,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1392), - [sym_function_declaration] = STATE(1392), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [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_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(1392), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1434), - [sym_expression_statement] = STATE(1434), - [sym_compound_statement] = STATE(1434), - [sym_return_statement] = STATE(1434), - [sym_break_statement] = STATE(1434), - [sym_continue_statement] = STATE(1434), - [sym_throw_statement] = STATE(1434), - [sym_echo_statement] = STATE(1434), - [sym_unset_statement] = STATE(1434), - [sym_concurrent_statement] = STATE(1434), - [sym_use_statement] = STATE(1434), - [sym_if_statement] = STATE(1434), - [sym_switch_statement] = STATE(1434), - [sym_foreach_statement] = STATE(1434), - [sym_while_statement] = STATE(1434), - [sym_do_statement] = STATE(1434), - [sym_for_statement] = STATE(1434), - [sym_try_statement] = STATE(1434), - [sym_using_statement] = STATE(1434), + [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), @@ -40427,159 +40985,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1434), - [sym_function_declaration] = STATE(1434), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1434), - [sym_interface_declaration] = STATE(1434), - [sym_class_declaration] = STATE(1434), - [sym_const_declaration] = STATE(1434), - [sym_enum_declaration] = STATE(1434), - [sym_abstract_enum_class_declaration] = STATE(1434), - [sym_enum_class_declaration] = STATE(1434), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1151), + [sym_function_declaration] = STATE(1151), + [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(1434), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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_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), }, [133] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4651), - [sym_expression_statement] = STATE(4651), - [sym_compound_statement] = STATE(4651), - [sym_return_statement] = STATE(4651), - [sym_break_statement] = STATE(4651), - [sym_continue_statement] = STATE(4651), - [sym_throw_statement] = STATE(4651), - [sym_echo_statement] = STATE(4651), - [sym_unset_statement] = STATE(4651), - [sym_concurrent_statement] = STATE(4651), - [sym_use_statement] = STATE(4651), - [sym_if_statement] = STATE(4651), - [sym_switch_statement] = STATE(4651), - [sym_foreach_statement] = STATE(4651), - [sym_while_statement] = STATE(4651), - [sym_do_statement] = STATE(4651), - [sym_for_statement] = STATE(4651), - [sym_try_statement] = STATE(4651), - [sym_using_statement] = STATE(4651), + [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), @@ -40587,159 +41147,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4651), - [sym_function_declaration] = STATE(4651), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4651), - [sym_interface_declaration] = STATE(4651), - [sym_class_declaration] = STATE(4651), - [sym_const_declaration] = STATE(4651), - [sym_enum_declaration] = STATE(4651), - [sym_abstract_enum_class_declaration] = STATE(4651), - [sym_enum_class_declaration] = STATE(4651), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1152), + [sym_function_declaration] = STATE(1152), + [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(4651), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [134] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1503), - [sym_expression_statement] = STATE(1503), - [sym_compound_statement] = STATE(1503), - [sym_return_statement] = STATE(1503), - [sym_break_statement] = STATE(1503), - [sym_continue_statement] = STATE(1503), - [sym_throw_statement] = STATE(1503), - [sym_echo_statement] = STATE(1503), - [sym_unset_statement] = STATE(1503), - [sym_concurrent_statement] = STATE(1503), - [sym_use_statement] = STATE(1503), - [sym_if_statement] = STATE(1503), - [sym_switch_statement] = STATE(1503), - [sym_foreach_statement] = STATE(1503), - [sym_while_statement] = STATE(1503), - [sym_do_statement] = STATE(1503), - [sym_for_statement] = STATE(1503), - [sym_try_statement] = STATE(1503), - [sym_using_statement] = STATE(1503), + [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), @@ -40747,159 +41309,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1503), - [sym_function_declaration] = STATE(1503), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1503), - [sym_interface_declaration] = STATE(1503), - [sym_class_declaration] = STATE(1503), - [sym_const_declaration] = STATE(1503), - [sym_enum_declaration] = STATE(1503), - [sym_abstract_enum_class_declaration] = STATE(1503), - [sym_enum_class_declaration] = STATE(1503), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1172), + [sym_function_declaration] = STATE(1172), + [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(1503), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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_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), }, [135] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1469), - [sym_expression_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_return_statement] = STATE(1469), - [sym_break_statement] = STATE(1469), - [sym_continue_statement] = STATE(1469), - [sym_throw_statement] = STATE(1469), - [sym_echo_statement] = STATE(1469), - [sym_unset_statement] = STATE(1469), - [sym_concurrent_statement] = STATE(1469), - [sym_use_statement] = STATE(1469), - [sym_if_statement] = STATE(1469), - [sym_switch_statement] = STATE(1469), - [sym_foreach_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_do_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_try_statement] = STATE(1469), - [sym_using_statement] = STATE(1469), + [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), @@ -40907,159 +41471,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1469), - [sym_function_declaration] = STATE(1469), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1469), - [sym_interface_declaration] = STATE(1469), - [sym_class_declaration] = STATE(1469), - [sym_const_declaration] = STATE(1469), - [sym_enum_declaration] = STATE(1469), - [sym_abstract_enum_class_declaration] = STATE(1469), - [sym_enum_class_declaration] = STATE(1469), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1175), + [sym_function_declaration] = STATE(1175), + [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(1469), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [136] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4686), - [sym_expression_statement] = STATE(4686), - [sym_compound_statement] = STATE(4686), - [sym_return_statement] = STATE(4686), - [sym_break_statement] = STATE(4686), - [sym_continue_statement] = STATE(4686), - [sym_throw_statement] = STATE(4686), - [sym_echo_statement] = STATE(4686), - [sym_unset_statement] = STATE(4686), - [sym_concurrent_statement] = STATE(4686), - [sym_use_statement] = STATE(4686), - [sym_if_statement] = STATE(4686), - [sym_switch_statement] = STATE(4686), - [sym_foreach_statement] = STATE(4686), - [sym_while_statement] = STATE(4686), - [sym_do_statement] = STATE(4686), - [sym_for_statement] = STATE(4686), - [sym_try_statement] = STATE(4686), - [sym_using_statement] = STATE(4686), + [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), @@ -41067,159 +41633,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4686), - [sym_function_declaration] = STATE(4686), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4686), - [sym_interface_declaration] = STATE(4686), - [sym_class_declaration] = STATE(4686), - [sym_const_declaration] = STATE(4686), - [sym_enum_declaration] = STATE(4686), - [sym_abstract_enum_class_declaration] = STATE(4686), - [sym_enum_class_declaration] = STATE(4686), + [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(4686), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [137] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1277), - [sym_expression_statement] = STATE(1283), - [sym_compound_statement] = STATE(1285), - [sym_return_statement] = STATE(1286), - [sym_break_statement] = STATE(1287), - [sym_continue_statement] = STATE(1288), - [sym_throw_statement] = STATE(1290), - [sym_echo_statement] = STATE(1291), - [sym_unset_statement] = STATE(1292), - [sym_concurrent_statement] = STATE(1293), - [sym_use_statement] = STATE(1294), - [sym_if_statement] = STATE(1295), - [sym_switch_statement] = STATE(1296), - [sym_foreach_statement] = STATE(1297), - [sym_while_statement] = STATE(1299), - [sym_do_statement] = STATE(1300), - [sym_for_statement] = STATE(1301), - [sym_try_statement] = STATE(1306), - [sym_using_statement] = STATE(1308), + [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), @@ -41227,47 +41795,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1310), - [sym_function_declaration] = STATE(1312), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1313), - [sym_interface_declaration] = STATE(1315), - [sym_class_declaration] = STATE(1317), - [sym_const_declaration] = STATE(1319), - [sym_enum_declaration] = STATE(1320), - [sym_abstract_enum_class_declaration] = STATE(1321), - [sym_enum_class_declaration] = STATE(1322), + [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(1323), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -41279,107 +41847,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [138] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4715), - [sym_expression_statement] = STATE(4715), - [sym_compound_statement] = STATE(4715), - [sym_return_statement] = STATE(4715), - [sym_break_statement] = STATE(4715), - [sym_continue_statement] = STATE(4715), - [sym_throw_statement] = STATE(4715), - [sym_echo_statement] = STATE(4715), - [sym_unset_statement] = STATE(4715), - [sym_concurrent_statement] = STATE(4715), - [sym_use_statement] = STATE(4715), - [sym_if_statement] = STATE(4715), - [sym_switch_statement] = STATE(4715), - [sym_foreach_statement] = STATE(4715), - [sym_while_statement] = STATE(4715), - [sym_do_statement] = STATE(4715), - [sym_for_statement] = STATE(4715), - [sym_try_statement] = STATE(4715), - [sym_using_statement] = STATE(4715), + [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), @@ -41387,159 +41957,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4715), - [sym_function_declaration] = STATE(4715), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4715), - [sym_interface_declaration] = STATE(4715), - [sym_class_declaration] = STATE(4715), - [sym_const_declaration] = STATE(4715), - [sym_enum_declaration] = STATE(4715), - [sym_abstract_enum_class_declaration] = STATE(4715), - [sym_enum_class_declaration] = STATE(4715), + [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(4715), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [139] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1474), - [sym_expression_statement] = STATE(1474), - [sym_compound_statement] = STATE(1474), - [sym_return_statement] = STATE(1474), - [sym_break_statement] = STATE(1474), - [sym_continue_statement] = STATE(1474), - [sym_throw_statement] = STATE(1474), - [sym_echo_statement] = STATE(1474), - [sym_unset_statement] = STATE(1474), - [sym_concurrent_statement] = STATE(1474), - [sym_use_statement] = STATE(1474), - [sym_if_statement] = STATE(1474), - [sym_switch_statement] = STATE(1474), - [sym_foreach_statement] = STATE(1474), - [sym_while_statement] = STATE(1474), - [sym_do_statement] = STATE(1474), - [sym_for_statement] = STATE(1474), - [sym_try_statement] = STATE(1474), - [sym_using_statement] = STATE(1474), + [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), @@ -41547,159 +42119,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1474), - [sym_function_declaration] = STATE(1474), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1474), - [sym_interface_declaration] = STATE(1474), - [sym_class_declaration] = STATE(1474), - [sym_const_declaration] = STATE(1474), - [sym_enum_declaration] = STATE(1474), - [sym_abstract_enum_class_declaration] = STATE(1474), - [sym_enum_class_declaration] = STATE(1474), + [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(1474), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [140] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1258), - [sym_expression_statement] = STATE(1258), - [sym_compound_statement] = STATE(1258), - [sym_return_statement] = STATE(1258), - [sym_break_statement] = STATE(1258), - [sym_continue_statement] = STATE(1258), - [sym_throw_statement] = STATE(1258), - [sym_echo_statement] = STATE(1258), - [sym_unset_statement] = STATE(1258), - [sym_concurrent_statement] = STATE(1258), - [sym_use_statement] = STATE(1258), - [sym_if_statement] = STATE(1258), - [sym_switch_statement] = STATE(1258), - [sym_foreach_statement] = STATE(1258), - [sym_while_statement] = STATE(1258), - [sym_do_statement] = STATE(1258), - [sym_for_statement] = STATE(1258), - [sym_try_statement] = STATE(1258), - [sym_using_statement] = STATE(1258), + [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), @@ -41707,159 +42281,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1258), - [sym_function_declaration] = STATE(1258), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1258), - [sym_interface_declaration] = STATE(1258), - [sym_class_declaration] = STATE(1258), - [sym_const_declaration] = STATE(1258), - [sym_enum_declaration] = STATE(1258), - [sym_abstract_enum_class_declaration] = STATE(1258), - [sym_enum_class_declaration] = STATE(1258), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(952), + [sym_function_declaration] = STATE(952), + [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(1258), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [141] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1495), - [sym_expression_statement] = STATE(1495), - [sym_compound_statement] = STATE(1495), - [sym_return_statement] = STATE(1495), - [sym_break_statement] = STATE(1495), - [sym_continue_statement] = STATE(1495), - [sym_throw_statement] = STATE(1495), - [sym_echo_statement] = STATE(1495), - [sym_unset_statement] = STATE(1495), - [sym_concurrent_statement] = STATE(1495), - [sym_use_statement] = STATE(1495), - [sym_if_statement] = STATE(1495), - [sym_switch_statement] = STATE(1495), - [sym_foreach_statement] = STATE(1495), - [sym_while_statement] = STATE(1495), - [sym_do_statement] = STATE(1495), - [sym_for_statement] = STATE(1495), - [sym_try_statement] = STATE(1495), - [sym_using_statement] = STATE(1495), + [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), @@ -41867,159 +42443,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1495), - [sym_function_declaration] = STATE(1495), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1495), - [sym_interface_declaration] = STATE(1495), - [sym_class_declaration] = STATE(1495), - [sym_const_declaration] = STATE(1495), - [sym_enum_declaration] = STATE(1495), - [sym_abstract_enum_class_declaration] = STATE(1495), - [sym_enum_class_declaration] = STATE(1495), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(1014), + [sym_function_declaration] = STATE(1014), + [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(1495), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(315), + [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(317), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [142] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1497), - [sym_expression_statement] = STATE(1497), - [sym_compound_statement] = STATE(1497), - [sym_return_statement] = STATE(1497), - [sym_break_statement] = STATE(1497), - [sym_continue_statement] = STATE(1497), - [sym_throw_statement] = STATE(1497), - [sym_echo_statement] = STATE(1497), - [sym_unset_statement] = STATE(1497), - [sym_concurrent_statement] = STATE(1497), - [sym_use_statement] = STATE(1497), - [sym_if_statement] = STATE(1497), - [sym_switch_statement] = STATE(1497), - [sym_foreach_statement] = STATE(1497), - [sym_while_statement] = STATE(1497), - [sym_do_statement] = STATE(1497), - [sym_for_statement] = STATE(1497), - [sym_try_statement] = STATE(1497), - [sym_using_statement] = STATE(1497), + [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), @@ -42027,159 +42605,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1497), - [sym_function_declaration] = STATE(1497), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1497), - [sym_interface_declaration] = STATE(1497), - [sym_class_declaration] = STATE(1497), - [sym_const_declaration] = STATE(1497), - [sym_enum_declaration] = STATE(1497), - [sym_abstract_enum_class_declaration] = STATE(1497), - [sym_enum_class_declaration] = STATE(1497), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(749), + [sym_function_declaration] = STATE(749), + [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(1497), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [143] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(712), - [sym_expression_statement] = STATE(712), - [sym_compound_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_echo_statement] = STATE(712), - [sym_unset_statement] = STATE(712), - [sym_concurrent_statement] = STATE(712), - [sym_use_statement] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_foreach_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_using_statement] = STATE(712), + [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), @@ -42187,159 +42767,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(712), - [sym_function_declaration] = STATE(712), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(712), - [sym_interface_declaration] = STATE(712), - [sym_class_declaration] = STATE(712), - [sym_const_declaration] = STATE(712), - [sym_enum_declaration] = STATE(712), - [sym_abstract_enum_class_declaration] = STATE(712), - [sym_enum_class_declaration] = STATE(712), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(787), + [sym_function_declaration] = STATE(787), + [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(712), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(941), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [144] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1328), - [sym_expression_statement] = STATE(1328), - [sym_compound_statement] = STATE(1328), - [sym_return_statement] = STATE(1328), - [sym_break_statement] = STATE(1328), - [sym_continue_statement] = STATE(1328), - [sym_throw_statement] = STATE(1328), - [sym_echo_statement] = STATE(1328), - [sym_unset_statement] = STATE(1328), - [sym_concurrent_statement] = STATE(1328), - [sym_use_statement] = STATE(1328), - [sym_if_statement] = STATE(1328), - [sym_switch_statement] = STATE(1328), - [sym_foreach_statement] = STATE(1328), - [sym_while_statement] = STATE(1328), - [sym_do_statement] = STATE(1328), - [sym_for_statement] = STATE(1328), - [sym_try_statement] = STATE(1328), - [sym_using_statement] = STATE(1328), + [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), @@ -42347,159 +42929,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1328), - [sym_function_declaration] = STATE(1328), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1328), - [sym_interface_declaration] = STATE(1328), - [sym_class_declaration] = STATE(1328), - [sym_const_declaration] = STATE(1328), - [sym_enum_declaration] = STATE(1328), - [sym_abstract_enum_class_declaration] = STATE(1328), - [sym_enum_class_declaration] = STATE(1328), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(879), + [sym_function_declaration] = STATE(878), + [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(1328), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(941), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [145] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [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__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), @@ -42507,159 +43091,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1045), - [sym_function_declaration] = STATE(1045), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [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_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [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(1045), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [146] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(5883), - [sym_expression_statement] = STATE(5883), - [sym_compound_statement] = STATE(5883), - [sym_return_statement] = STATE(5883), - [sym_break_statement] = STATE(5883), - [sym_continue_statement] = STATE(5883), - [sym_throw_statement] = STATE(5883), - [sym_echo_statement] = STATE(5883), - [sym_unset_statement] = STATE(5883), - [sym_concurrent_statement] = STATE(5883), - [sym_use_statement] = STATE(5883), - [sym_if_statement] = STATE(5883), - [sym_switch_statement] = STATE(5883), - [sym_foreach_statement] = STATE(5883), - [sym_while_statement] = STATE(5883), - [sym_do_statement] = STATE(5883), - [sym_for_statement] = STATE(5883), - [sym_try_statement] = STATE(5883), - [sym_using_statement] = STATE(5883), + [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), @@ -42667,159 +43253,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5883), - [sym_function_declaration] = STATE(5883), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5883), - [sym_interface_declaration] = STATE(5883), - [sym_class_declaration] = STATE(5883), - [sym_const_declaration] = STATE(5883), - [sym_enum_declaration] = STATE(5883), - [sym_abstract_enum_class_declaration] = STATE(5883), - [sym_enum_class_declaration] = STATE(5883), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(832), + [sym_function_declaration] = STATE(832), + [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(5883), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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_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), }, [147] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1515), - [sym_expression_statement] = STATE(1515), - [sym_compound_statement] = STATE(1515), - [sym_return_statement] = STATE(1515), - [sym_break_statement] = STATE(1515), - [sym_continue_statement] = STATE(1515), - [sym_throw_statement] = STATE(1515), - [sym_echo_statement] = STATE(1515), - [sym_unset_statement] = STATE(1515), - [sym_concurrent_statement] = STATE(1515), - [sym_use_statement] = STATE(1515), - [sym_if_statement] = STATE(1515), - [sym_switch_statement] = STATE(1515), - [sym_foreach_statement] = STATE(1515), - [sym_while_statement] = STATE(1515), - [sym_do_statement] = STATE(1515), - [sym_for_statement] = STATE(1515), - [sym_try_statement] = STATE(1515), - [sym_using_statement] = STATE(1515), + [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), @@ -42827,159 +43415,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1515), - [sym_function_declaration] = STATE(1515), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1515), - [sym_interface_declaration] = STATE(1515), - [sym_class_declaration] = STATE(1515), - [sym_const_declaration] = STATE(1515), - [sym_enum_declaration] = STATE(1515), - [sym_abstract_enum_class_declaration] = STATE(1515), - [sym_enum_class_declaration] = STATE(1515), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(830), + [sym_function_declaration] = STATE(830), + [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(1515), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [148] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(6130), - [sym_expression_statement] = STATE(6130), - [sym_compound_statement] = STATE(6130), - [sym_return_statement] = STATE(6130), - [sym_break_statement] = STATE(6130), - [sym_continue_statement] = STATE(6130), - [sym_throw_statement] = STATE(6130), - [sym_echo_statement] = STATE(6130), - [sym_unset_statement] = STATE(6130), - [sym_concurrent_statement] = STATE(6130), - [sym_use_statement] = STATE(6130), - [sym_if_statement] = STATE(6130), - [sym_switch_statement] = STATE(6130), - [sym_foreach_statement] = STATE(6130), - [sym_while_statement] = STATE(6130), - [sym_do_statement] = STATE(6130), - [sym_for_statement] = STATE(6130), - [sym_try_statement] = STATE(6130), - [sym_using_statement] = STATE(6130), + [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), @@ -42987,159 +43577,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(6130), - [sym_function_declaration] = STATE(6130), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(6130), - [sym_interface_declaration] = STATE(6130), - [sym_class_declaration] = STATE(6130), - [sym_const_declaration] = STATE(6130), - [sym_enum_declaration] = STATE(6130), - [sym_abstract_enum_class_declaration] = STATE(6130), - [sym_enum_class_declaration] = STATE(6130), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(794), + [sym_function_declaration] = STATE(794), + [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(6130), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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_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), }, [149] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(1075), - [sym_expression_statement] = STATE(1075), - [sym_compound_statement] = STATE(1075), - [sym_return_statement] = STATE(1075), - [sym_break_statement] = STATE(1075), - [sym_continue_statement] = STATE(1075), - [sym_throw_statement] = STATE(1075), - [sym_echo_statement] = STATE(1075), - [sym_unset_statement] = STATE(1075), - [sym_concurrent_statement] = STATE(1075), - [sym_use_statement] = STATE(1075), - [sym_if_statement] = STATE(1075), - [sym_switch_statement] = STATE(1075), - [sym_foreach_statement] = STATE(1075), - [sym_while_statement] = STATE(1075), - [sym_do_statement] = STATE(1075), - [sym_for_statement] = STATE(1075), - [sym_try_statement] = STATE(1075), - [sym_using_statement] = STATE(1075), + [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), @@ -43147,159 +43739,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1075), - [sym_function_declaration] = STATE(1075), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1075), - [sym_interface_declaration] = STATE(1075), - [sym_class_declaration] = STATE(1075), - [sym_const_declaration] = STATE(1075), - [sym_enum_declaration] = STATE(1075), - [sym_abstract_enum_class_declaration] = STATE(1075), - [sym_enum_class_declaration] = STATE(1075), + [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(1075), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [150] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_compound_statement] = STATE(1316), - [sym_return_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_throw_statement] = STATE(1316), - [sym_echo_statement] = STATE(1316), - [sym_unset_statement] = STATE(1316), - [sym_concurrent_statement] = STATE(1316), - [sym_use_statement] = STATE(1316), - [sym_if_statement] = STATE(1316), - [sym_switch_statement] = STATE(1316), - [sym_foreach_statement] = STATE(1316), - [sym_while_statement] = STATE(1316), - [sym_do_statement] = STATE(1316), - [sym_for_statement] = STATE(1316), - [sym_try_statement] = STATE(1316), - [sym_using_statement] = STATE(1316), + [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), @@ -43307,159 +43901,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1316), - [sym_function_declaration] = STATE(1316), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1316), - [sym_interface_declaration] = STATE(1316), - [sym_class_declaration] = STATE(1316), - [sym_const_declaration] = STATE(1316), - [sym_enum_declaration] = STATE(1316), - [sym_abstract_enum_class_declaration] = STATE(1316), - [sym_enum_class_declaration] = STATE(1316), + [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(1316), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, [151] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(916), - [sym_expression_statement] = STATE(915), - [sym_compound_statement] = STATE(914), - [sym_return_statement] = STATE(913), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(911), - [sym_throw_statement] = STATE(910), - [sym_echo_statement] = STATE(909), - [sym_unset_statement] = STATE(908), - [sym_concurrent_statement] = STATE(907), - [sym_use_statement] = STATE(1150), - [sym_if_statement] = STATE(1016), - [sym_switch_statement] = STATE(1018), - [sym_foreach_statement] = STATE(1019), - [sym_while_statement] = STATE(1022), - [sym_do_statement] = STATE(1026), - [sym_for_statement] = STATE(1035), - [sym_try_statement] = STATE(1038), - [sym_using_statement] = STATE(1039), + [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), @@ -43467,159 +44063,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1042), - [sym_function_declaration] = STATE(1043), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1046), - [sym_interface_declaration] = STATE(1047), - [sym_class_declaration] = STATE(1054), - [sym_const_declaration] = STATE(1057), - [sym_enum_declaration] = STATE(1059), - [sym_abstract_enum_class_declaration] = STATE(1067), - [sym_enum_class_declaration] = STATE(1069), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(779), + [sym_function_declaration] = STATE(779), + [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(1072), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [152] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(934), - [sym_expression_statement] = STATE(934), - [sym_compound_statement] = STATE(934), - [sym_return_statement] = STATE(934), - [sym_break_statement] = STATE(934), - [sym_continue_statement] = STATE(934), - [sym_throw_statement] = STATE(934), - [sym_echo_statement] = STATE(934), - [sym_unset_statement] = STATE(934), - [sym_concurrent_statement] = STATE(934), - [sym_use_statement] = STATE(934), - [sym_if_statement] = STATE(934), - [sym_switch_statement] = STATE(934), - [sym_foreach_statement] = STATE(934), - [sym_while_statement] = STATE(934), - [sym_do_statement] = STATE(934), - [sym_for_statement] = STATE(934), - [sym_try_statement] = STATE(934), - [sym_using_statement] = STATE(934), + [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), @@ -43627,159 +44225,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(934), - [sym_function_declaration] = STATE(934), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(934), - [sym_interface_declaration] = STATE(934), - [sym_class_declaration] = STATE(934), - [sym_const_declaration] = STATE(934), - [sym_enum_declaration] = STATE(934), - [sym_abstract_enum_class_declaration] = STATE(934), - [sym_enum_class_declaration] = STATE(934), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(765), + [sym_function_declaration] = STATE(765), + [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(934), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [153] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [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__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), @@ -43787,159 +44387,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1044), - [sym_function_declaration] = STATE(1044), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [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_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(836), + [sym_function_declaration] = STATE(836), + [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(1044), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [154] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(893), - [sym_expression_statement] = STATE(893), - [sym_compound_statement] = STATE(893), - [sym_return_statement] = STATE(893), - [sym_break_statement] = STATE(893), - [sym_continue_statement] = STATE(893), - [sym_throw_statement] = STATE(893), - [sym_echo_statement] = STATE(893), - [sym_unset_statement] = STATE(893), - [sym_concurrent_statement] = STATE(893), - [sym_use_statement] = STATE(893), - [sym_if_statement] = STATE(893), - [sym_switch_statement] = STATE(893), - [sym_foreach_statement] = STATE(893), - [sym_while_statement] = STATE(893), - [sym_do_statement] = STATE(893), - [sym_for_statement] = STATE(893), - [sym_try_statement] = STATE(893), - [sym_using_statement] = STATE(893), + [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), @@ -43947,159 +44549,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(893), - [sym_function_declaration] = STATE(893), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(893), - [sym_interface_declaration] = STATE(893), - [sym_class_declaration] = STATE(893), - [sym_const_declaration] = STATE(893), - [sym_enum_declaration] = STATE(893), - [sym_abstract_enum_class_declaration] = STATE(893), - [sym_enum_class_declaration] = STATE(893), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(740), + [sym_function_declaration] = STATE(740), + [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(893), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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(907), - [sym_xhp_modifier] = ACTIONS(909), + [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), }, [155] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4718), - [sym_expression_statement] = STATE(4718), - [sym_compound_statement] = STATE(4718), - [sym_return_statement] = STATE(4718), - [sym_break_statement] = STATE(4718), - [sym_continue_statement] = STATE(4718), - [sym_throw_statement] = STATE(4718), - [sym_echo_statement] = STATE(4718), - [sym_unset_statement] = STATE(4718), - [sym_concurrent_statement] = STATE(4718), - [sym_use_statement] = STATE(4718), - [sym_if_statement] = STATE(4718), - [sym_switch_statement] = STATE(4718), - [sym_foreach_statement] = STATE(4718), - [sym_while_statement] = STATE(4718), - [sym_do_statement] = STATE(4718), - [sym_for_statement] = STATE(4718), - [sym_try_statement] = STATE(4718), - [sym_using_statement] = STATE(4718), + [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), @@ -44107,159 +44711,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4718), - [sym_function_declaration] = STATE(4718), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4718), - [sym_interface_declaration] = STATE(4718), - [sym_class_declaration] = STATE(4718), - [sym_const_declaration] = STATE(4718), - [sym_enum_declaration] = STATE(4718), - [sym_abstract_enum_class_declaration] = STATE(4718), - [sym_enum_class_declaration] = STATE(4718), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(756), + [sym_function_declaration] = STATE(756), + [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(4718), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, [156] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1025), - [sym_expression_statement] = STATE(1025), - [sym_compound_statement] = STATE(1025), - [sym_return_statement] = STATE(1025), - [sym_break_statement] = STATE(1025), - [sym_continue_statement] = STATE(1025), - [sym_throw_statement] = STATE(1025), - [sym_echo_statement] = STATE(1025), - [sym_unset_statement] = STATE(1025), - [sym_concurrent_statement] = STATE(1025), - [sym_use_statement] = STATE(1025), - [sym_if_statement] = STATE(1025), - [sym_switch_statement] = STATE(1025), - [sym_foreach_statement] = STATE(1025), - [sym_while_statement] = STATE(1025), - [sym_do_statement] = STATE(1025), - [sym_for_statement] = STATE(1025), - [sym_try_statement] = STATE(1025), - [sym_using_statement] = STATE(1025), + [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), @@ -44267,159 +44873,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1025), - [sym_function_declaration] = STATE(1025), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1025), - [sym_interface_declaration] = STATE(1025), - [sym_class_declaration] = STATE(1025), - [sym_const_declaration] = STATE(1025), - [sym_enum_declaration] = STATE(1025), - [sym_abstract_enum_class_declaration] = STATE(1025), - [sym_enum_class_declaration] = STATE(1025), + [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(1025), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [157] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1530), - [sym_expression_statement] = STATE(1530), - [sym_compound_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_throw_statement] = STATE(1530), - [sym_echo_statement] = STATE(1530), - [sym_unset_statement] = STATE(1530), - [sym_concurrent_statement] = STATE(1530), - [sym_use_statement] = STATE(1530), - [sym_if_statement] = STATE(1530), - [sym_switch_statement] = STATE(1530), - [sym_foreach_statement] = STATE(1530), - [sym_while_statement] = STATE(1530), - [sym_do_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_try_statement] = STATE(1530), - [sym_using_statement] = STATE(1530), + [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), @@ -44427,159 +45035,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1530), - [sym_function_declaration] = STATE(1530), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1530), - [sym_interface_declaration] = STATE(1530), - [sym_class_declaration] = STATE(1530), - [sym_const_declaration] = STATE(1530), - [sym_enum_declaration] = STATE(1530), - [sym_abstract_enum_class_declaration] = STATE(1530), - [sym_enum_class_declaration] = STATE(1530), + [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(1530), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [158] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1583), - [sym_expression_statement] = STATE(1583), - [sym_compound_statement] = STATE(1583), - [sym_return_statement] = STATE(1583), - [sym_break_statement] = STATE(1583), - [sym_continue_statement] = STATE(1583), - [sym_throw_statement] = STATE(1583), - [sym_echo_statement] = STATE(1583), - [sym_unset_statement] = STATE(1583), - [sym_concurrent_statement] = STATE(1583), - [sym_use_statement] = STATE(1583), - [sym_if_statement] = STATE(1583), - [sym_switch_statement] = STATE(1583), - [sym_foreach_statement] = STATE(1583), - [sym_while_statement] = STATE(1583), - [sym_do_statement] = STATE(1583), - [sym_for_statement] = STATE(1583), - [sym_try_statement] = STATE(1583), - [sym_using_statement] = STATE(1583), + [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), @@ -44587,47 +45197,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym_class_declaration] = STATE(1583), - [sym_const_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_abstract_enum_class_declaration] = STATE(1583), - [sym_enum_class_declaration] = STATE(1583), + [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(1583), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(5857), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -44638,65 +45248,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -44713,33 +45323,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [159] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(706), - [sym_expression_statement] = STATE(706), - [sym_compound_statement] = STATE(706), - [sym_return_statement] = STATE(706), - [sym_break_statement] = STATE(706), - [sym_continue_statement] = STATE(706), - [sym_throw_statement] = STATE(706), - [sym_echo_statement] = STATE(706), - [sym_unset_statement] = STATE(706), - [sym_concurrent_statement] = STATE(706), - [sym_use_statement] = STATE(706), - [sym_if_statement] = STATE(706), - [sym_switch_statement] = STATE(706), - [sym_foreach_statement] = STATE(706), - [sym_while_statement] = STATE(706), - [sym_do_statement] = STATE(706), - [sym_for_statement] = STATE(706), - [sym_try_statement] = STATE(706), - [sym_using_statement] = STATE(706), + [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), @@ -44747,159 +45359,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(706), - [sym_function_declaration] = STATE(706), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(706), - [sym_interface_declaration] = STATE(706), - [sym_class_declaration] = STATE(706), - [sym_const_declaration] = STATE(706), - [sym_enum_declaration] = STATE(706), - [sym_abstract_enum_class_declaration] = STATE(706), - [sym_enum_class_declaration] = STATE(706), + [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(706), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [sym_namespace_declaration] = STATE(909), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, [160] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym_compound_statement] = STATE(1531), - [sym_return_statement] = STATE(1531), - [sym_break_statement] = STATE(1531), - [sym_continue_statement] = STATE(1531), - [sym_throw_statement] = STATE(1531), - [sym_echo_statement] = STATE(1531), - [sym_unset_statement] = STATE(1531), - [sym_concurrent_statement] = STATE(1531), - [sym_use_statement] = STATE(1531), - [sym_if_statement] = STATE(1531), - [sym_switch_statement] = STATE(1531), - [sym_foreach_statement] = STATE(1531), - [sym_while_statement] = STATE(1531), - [sym_do_statement] = STATE(1531), - [sym_for_statement] = STATE(1531), - [sym_try_statement] = STATE(1531), - [sym_using_statement] = STATE(1531), + [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), @@ -44907,159 +45521,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1531), - [sym_function_declaration] = STATE(1531), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1531), - [sym_interface_declaration] = STATE(1531), - [sym_class_declaration] = STATE(1531), - [sym_const_declaration] = STATE(1531), - [sym_enum_declaration] = STATE(1531), - [sym_abstract_enum_class_declaration] = STATE(1531), - [sym_enum_class_declaration] = STATE(1531), + [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(1531), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [161] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1562), - [sym_expression_statement] = STATE(1562), - [sym_compound_statement] = STATE(1562), - [sym_return_statement] = STATE(1562), - [sym_break_statement] = STATE(1562), - [sym_continue_statement] = STATE(1562), - [sym_throw_statement] = STATE(1562), - [sym_echo_statement] = STATE(1562), - [sym_unset_statement] = STATE(1562), - [sym_concurrent_statement] = STATE(1562), - [sym_use_statement] = STATE(1562), - [sym_if_statement] = STATE(1562), - [sym_switch_statement] = STATE(1562), - [sym_foreach_statement] = STATE(1562), - [sym_while_statement] = STATE(1562), - [sym_do_statement] = STATE(1562), - [sym_for_statement] = STATE(1562), - [sym_try_statement] = STATE(1562), - [sym_using_statement] = STATE(1562), + [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), @@ -45067,159 +45683,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1562), - [sym_function_declaration] = STATE(1562), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1562), - [sym_interface_declaration] = STATE(1562), - [sym_class_declaration] = STATE(1562), - [sym_const_declaration] = STATE(1562), - [sym_enum_declaration] = STATE(1562), - [sym_abstract_enum_class_declaration] = STATE(1562), - [sym_enum_class_declaration] = STATE(1562), + [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(1562), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [sym_namespace_declaration] = STATE(1462), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [162] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(895), - [sym_expression_statement] = STATE(895), - [sym_compound_statement] = STATE(895), - [sym_return_statement] = STATE(895), - [sym_break_statement] = STATE(895), - [sym_continue_statement] = STATE(895), - [sym_throw_statement] = STATE(895), - [sym_echo_statement] = STATE(895), - [sym_unset_statement] = STATE(895), - [sym_concurrent_statement] = STATE(895), - [sym_use_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_switch_statement] = STATE(895), - [sym_foreach_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_do_statement] = STATE(895), - [sym_for_statement] = STATE(895), - [sym_try_statement] = STATE(895), - [sym_using_statement] = STATE(895), + [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), @@ -45227,159 +45845,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(895), - [sym_function_declaration] = STATE(895), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(895), - [sym_interface_declaration] = STATE(895), - [sym_class_declaration] = STATE(895), - [sym_const_declaration] = STATE(895), - [sym_enum_declaration] = STATE(895), - [sym_abstract_enum_class_declaration] = STATE(895), - [sym_enum_class_declaration] = STATE(895), + [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(895), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, [163] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2670), - [sym_empty_statement] = STATE(965), - [sym_expression_statement] = STATE(965), - [sym_compound_statement] = STATE(965), - [sym_return_statement] = STATE(965), - [sym_break_statement] = STATE(965), - [sym_continue_statement] = STATE(965), - [sym_throw_statement] = STATE(965), - [sym_echo_statement] = STATE(965), - [sym_unset_statement] = STATE(965), - [sym_concurrent_statement] = STATE(965), - [sym_use_statement] = STATE(965), - [sym_if_statement] = STATE(965), - [sym_switch_statement] = STATE(965), - [sym_foreach_statement] = STATE(965), - [sym_while_statement] = STATE(965), - [sym_do_statement] = STATE(965), - [sym_for_statement] = STATE(965), - [sym_try_statement] = STATE(965), - [sym_using_statement] = STATE(965), + [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), @@ -45387,159 +46007,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(965), - [sym_function_declaration] = STATE(965), - [sym__function_declaration_header] = STATE(4465), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(965), - [sym_interface_declaration] = STATE(965), - [sym_class_declaration] = STATE(965), - [sym_const_declaration] = STATE(965), - [sym_enum_declaration] = STATE(965), - [sym_abstract_enum_class_declaration] = STATE(965), - [sym_enum_class_declaration] = STATE(965), + [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(965), - [sym_abstract_modifier] = STATE(4063), - [sym_attribute_modifier] = STATE(3478), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6107), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(855), - [anon_sym_newtype] = ACTIONS(855), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(857), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_echo] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(875), - [anon_sym_use] = ACTIONS(877), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(879), - [anon_sym_if] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(889), - [anon_sym_for] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_using] = ACTIONS(895), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_class] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(905), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(907), - [sym_xhp_modifier] = ACTIONS(909), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [164] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1564), - [sym_expression_statement] = STATE(1564), - [sym_compound_statement] = STATE(1564), - [sym_return_statement] = STATE(1564), - [sym_break_statement] = STATE(1564), - [sym_continue_statement] = STATE(1564), - [sym_throw_statement] = STATE(1564), - [sym_echo_statement] = STATE(1564), - [sym_unset_statement] = STATE(1564), - [sym_concurrent_statement] = STATE(1564), - [sym_use_statement] = STATE(1564), - [sym_if_statement] = STATE(1564), - [sym_switch_statement] = STATE(1564), - [sym_foreach_statement] = STATE(1564), - [sym_while_statement] = STATE(1564), - [sym_do_statement] = STATE(1564), - [sym_for_statement] = STATE(1564), - [sym_try_statement] = STATE(1564), - [sym_using_statement] = STATE(1564), + [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), @@ -45547,159 +46169,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1564), - [sym_function_declaration] = STATE(1564), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1564), - [sym_interface_declaration] = STATE(1564), - [sym_class_declaration] = STATE(1564), - [sym_const_declaration] = STATE(1564), - [sym_enum_declaration] = STATE(1564), - [sym_abstract_enum_class_declaration] = STATE(1564), - [sym_enum_class_declaration] = STATE(1564), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(877), + [sym_function_declaration] = STATE(877), + [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(1564), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(685), + [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(687), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, [165] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1503), - [sym_expression_statement] = STATE(1503), - [sym_compound_statement] = STATE(1503), - [sym_return_statement] = STATE(1503), - [sym_break_statement] = STATE(1503), - [sym_continue_statement] = STATE(1503), - [sym_throw_statement] = STATE(1503), - [sym_echo_statement] = STATE(1503), - [sym_unset_statement] = STATE(1503), - [sym_concurrent_statement] = STATE(1503), - [sym_use_statement] = STATE(1503), - [sym_if_statement] = STATE(1503), - [sym_switch_statement] = STATE(1503), - [sym_foreach_statement] = STATE(1503), - [sym_while_statement] = STATE(1503), - [sym_do_statement] = STATE(1503), - [sym_for_statement] = STATE(1503), - [sym_try_statement] = STATE(1503), - [sym_using_statement] = STATE(1503), + [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), @@ -45707,47 +46331,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1503), - [sym_function_declaration] = STATE(1503), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1503), - [sym_interface_declaration] = STATE(1503), - [sym_class_declaration] = STATE(1503), - [sym_const_declaration] = STATE(1503), - [sym_enum_declaration] = STATE(1503), - [sym_abstract_enum_class_declaration] = STATE(1503), - [sym_enum_class_declaration] = STATE(1503), + [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(1503), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(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), + [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), + }, + [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), + [sym__single_parameter_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_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -45758,65 +46544,65 @@ 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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -45832,34 +46618,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1581), - [sym_expression_statement] = STATE(1581), - [sym_compound_statement] = STATE(1581), - [sym_return_statement] = STATE(1581), - [sym_break_statement] = STATE(1581), - [sym_continue_statement] = STATE(1581), - [sym_throw_statement] = STATE(1581), - [sym_echo_statement] = STATE(1581), - [sym_unset_statement] = STATE(1581), - [sym_concurrent_statement] = STATE(1581), - [sym_use_statement] = STATE(1581), - [sym_if_statement] = STATE(1581), - [sym_switch_statement] = STATE(1581), - [sym_foreach_statement] = STATE(1581), - [sym_while_statement] = STATE(1581), - [sym_do_statement] = STATE(1581), - [sym_for_statement] = STATE(1581), - [sym_try_statement] = STATE(1581), - [sym_using_statement] = STATE(1581), + [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), @@ -45867,159 +46655,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1581), - [sym_function_declaration] = STATE(1581), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1581), - [sym_interface_declaration] = STATE(1581), - [sym_class_declaration] = STATE(1581), - [sym_const_declaration] = STATE(1581), - [sym_enum_declaration] = STATE(1581), - [sym_abstract_enum_class_declaration] = STATE(1581), - [sym_enum_class_declaration] = STATE(1581), + [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(1581), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(413), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [167] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(994), - [sym_expression_statement] = STATE(994), - [sym_compound_statement] = STATE(994), - [sym_return_statement] = STATE(994), - [sym_break_statement] = STATE(994), - [sym_continue_statement] = STATE(994), - [sym_throw_statement] = STATE(994), - [sym_echo_statement] = STATE(994), - [sym_unset_statement] = STATE(994), - [sym_concurrent_statement] = STATE(994), - [sym_use_statement] = STATE(994), - [sym_if_statement] = STATE(994), - [sym_switch_statement] = STATE(994), - [sym_foreach_statement] = STATE(994), - [sym_while_statement] = STATE(994), - [sym_do_statement] = STATE(994), - [sym_for_statement] = STATE(994), - [sym_try_statement] = STATE(994), - [sym_using_statement] = STATE(994), + [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), @@ -46027,159 +46817,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(994), - [sym_function_declaration] = STATE(994), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(994), - [sym_interface_declaration] = STATE(994), - [sym_class_declaration] = STATE(994), - [sym_const_declaration] = STATE(994), - [sym_enum_declaration] = STATE(994), - [sym_abstract_enum_class_declaration] = STATE(994), - [sym_enum_class_declaration] = STATE(994), + [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(994), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(849), - [sym_xhp_modifier] = ACTIONS(851), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(987), - [sym_expression_statement] = STATE(987), - [sym_compound_statement] = STATE(987), - [sym_return_statement] = STATE(987), - [sym_break_statement] = STATE(987), - [sym_continue_statement] = STATE(987), - [sym_throw_statement] = STATE(987), - [sym_echo_statement] = STATE(987), - [sym_unset_statement] = STATE(987), - [sym_concurrent_statement] = STATE(987), - [sym_use_statement] = STATE(987), - [sym_if_statement] = STATE(987), - [sym_switch_statement] = STATE(987), - [sym_foreach_statement] = STATE(987), - [sym_while_statement] = STATE(987), - [sym_do_statement] = STATE(987), - [sym_for_statement] = STATE(987), - [sym_try_statement] = STATE(987), - [sym_using_statement] = STATE(987), + [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), @@ -46187,159 +46979,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(987), - [sym_function_declaration] = STATE(987), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(987), - [sym_interface_declaration] = STATE(987), - [sym_class_declaration] = STATE(987), - [sym_const_declaration] = STATE(987), - [sym_enum_declaration] = STATE(987), - [sym_abstract_enum_class_declaration] = STATE(987), - [sym_enum_class_declaration] = STATE(987), + [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(987), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [anon_sym_type] = ACTIONS(799), + [anon_sym_newtype] = ACTIONS(799), [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(801), + [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(803), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(821), + [anon_sym_use] = ACTIONS(823), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(849), - [sym_xhp_modifier] = ACTIONS(851), + [sym_final_modifier] = ACTIONS(853), + [sym_xhp_modifier] = ACTIONS(855), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [169] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(5831), - [sym_expression_statement] = STATE(5831), - [sym_compound_statement] = STATE(5831), - [sym_return_statement] = STATE(5831), - [sym_break_statement] = STATE(5831), - [sym_continue_statement] = STATE(5831), - [sym_throw_statement] = STATE(5831), - [sym_echo_statement] = STATE(5831), - [sym_unset_statement] = STATE(5831), - [sym_concurrent_statement] = STATE(5831), - [sym_use_statement] = STATE(5831), - [sym_if_statement] = STATE(5831), - [sym_switch_statement] = STATE(5831), - [sym_foreach_statement] = STATE(5831), - [sym_while_statement] = STATE(5831), - [sym_do_statement] = STATE(5831), - [sym_for_statement] = STATE(5831), - [sym_try_statement] = STATE(5831), - [sym_using_statement] = STATE(5831), + [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), @@ -46347,47 +47141,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(5831), - [sym_function_declaration] = STATE(5831), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(5831), - [sym_interface_declaration] = STATE(5831), - [sym_class_declaration] = STATE(5831), - [sym_const_declaration] = STATE(5831), - [sym_enum_declaration] = STATE(5831), - [sym_abstract_enum_class_declaration] = STATE(5831), - [sym_enum_class_declaration] = STATE(5831), + [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(5831), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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_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(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), + [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), + }, + [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), + [sym__single_parameter_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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -46398,65 +47354,65 @@ 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(785), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(789), - [anon_sym_while] = ACTIONS(791), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(793), - [anon_sym_try] = ACTIONS(795), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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), @@ -46472,34 +47428,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [170] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2595), - [sym_empty_statement] = STATE(1302), - [sym_expression_statement] = STATE(1302), - [sym_compound_statement] = STATE(1302), - [sym_return_statement] = STATE(1302), - [sym_break_statement] = STATE(1302), - [sym_continue_statement] = STATE(1302), - [sym_throw_statement] = STATE(1302), - [sym_echo_statement] = STATE(1302), - [sym_unset_statement] = STATE(1302), - [sym_concurrent_statement] = STATE(1302), - [sym_use_statement] = STATE(1302), - [sym_if_statement] = STATE(1302), - [sym_switch_statement] = STATE(1302), - [sym_foreach_statement] = STATE(1302), - [sym_while_statement] = STATE(1302), - [sym_do_statement] = STATE(1302), - [sym_for_statement] = STATE(1302), - [sym_try_statement] = STATE(1302), - [sym_using_statement] = STATE(1302), + [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), @@ -46507,159 +47465,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1302), - [sym_function_declaration] = STATE(1302), - [sym__function_declaration_header] = STATE(4445), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_class_declaration] = STATE(1302), - [sym_const_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_abstract_enum_class_declaration] = STATE(1302), - [sym_enum_class_declaration] = STATE(1302), + [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(1302), - [sym_abstract_modifier] = STATE(4047), - [sym_attribute_modifier] = STATE(3480), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5882), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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(315), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_return] = ACTIONS(323), - [anon_sym_break] = ACTIONS(325), - [anon_sym_continue] = ACTIONS(327), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_echo] = ACTIONS(331), - [anon_sym_unset] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(335), - [anon_sym_use] = ACTIONS(337), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(343), - [anon_sym_foreach] = ACTIONS(347), - [anon_sym_while] = ACTIONS(349), - [anon_sym_do] = ACTIONS(351), - [anon_sym_for] = ACTIONS(353), - [anon_sym_try] = ACTIONS(355), - [anon_sym_using] = ACTIONS(357), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(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), + [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(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_class] = ACTIONS(363), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(367), + [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(369), - [sym_xhp_modifier] = ACTIONS(371), + [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), }, - [171] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(997), - [sym_expression_statement] = STATE(997), - [sym_compound_statement] = STATE(997), - [sym_return_statement] = STATE(997), - [sym_break_statement] = STATE(997), - [sym_continue_statement] = STATE(997), - [sym_throw_statement] = STATE(997), - [sym_echo_statement] = STATE(997), - [sym_unset_statement] = STATE(997), - [sym_concurrent_statement] = STATE(997), - [sym_use_statement] = STATE(997), - [sym_if_statement] = STATE(997), - [sym_switch_statement] = STATE(997), - [sym_foreach_statement] = STATE(997), - [sym_while_statement] = STATE(997), - [sym_do_statement] = STATE(997), - [sym_for_statement] = STATE(997), - [sym_try_statement] = STATE(997), - [sym_using_statement] = STATE(997), + [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), @@ -46667,159 +47627,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(997), - [sym_function_declaration] = STATE(997), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(997), - [sym_interface_declaration] = STATE(997), - [sym_class_declaration] = STATE(997), - [sym_const_declaration] = STATE(997), - [sym_enum_declaration] = STATE(997), - [sym_abstract_enum_class_declaration] = STATE(997), - [sym_enum_class_declaration] = STATE(997), + [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(997), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, - [172] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1466), - [sym_expression_statement] = STATE(1465), - [sym_compound_statement] = STATE(1464), - [sym_return_statement] = STATE(1459), - [sym_break_statement] = STATE(1458), - [sym_continue_statement] = STATE(1457), - [sym_throw_statement] = STATE(1456), - [sym_echo_statement] = STATE(1455), - [sym_unset_statement] = STATE(1453), - [sym_concurrent_statement] = STATE(1452), - [sym_use_statement] = STATE(1450), - [sym_if_statement] = STATE(1449), - [sym_switch_statement] = STATE(1447), - [sym_foreach_statement] = STATE(1445), - [sym_while_statement] = STATE(1444), - [sym_do_statement] = STATE(1443), - [sym_for_statement] = STATE(1441), - [sym_try_statement] = STATE(1439), - [sym_using_statement] = STATE(1438), + [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), @@ -46827,47 +47789,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1435), - [sym_function_declaration] = STATE(1433), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1432), - [sym_interface_declaration] = STATE(1430), - [sym_class_declaration] = STATE(1429), - [sym_const_declaration] = STATE(1427), - [sym_enum_declaration] = STATE(1426), - [sym_abstract_enum_class_declaration] = STATE(1421), - [sym_enum_class_declaration] = STATE(1425), + [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(1423), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(1480), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -46879,64 +47841,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(27), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(919), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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), @@ -46952,34 +47914,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(703), - [sym_expression_statement] = STATE(703), - [sym_compound_statement] = STATE(703), - [sym_return_statement] = STATE(703), - [sym_break_statement] = STATE(703), - [sym_continue_statement] = STATE(703), - [sym_throw_statement] = STATE(703), - [sym_echo_statement] = STATE(703), - [sym_unset_statement] = STATE(703), - [sym_concurrent_statement] = STATE(703), - [sym_use_statement] = STATE(703), - [sym_if_statement] = STATE(703), - [sym_switch_statement] = STATE(703), - [sym_foreach_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_do_statement] = STATE(703), - [sym_for_statement] = STATE(703), - [sym_try_statement] = STATE(703), - [sym_using_statement] = STATE(703), + [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), @@ -46987,159 +47951,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(703), - [sym_function_declaration] = STATE(703), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(703), - [sym_interface_declaration] = STATE(703), - [sym_class_declaration] = STATE(703), - [sym_const_declaration] = STATE(703), - [sym_enum_declaration] = STATE(703), - [sym_abstract_enum_class_declaration] = STATE(703), - [sym_enum_class_declaration] = STATE(703), + [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(703), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, - [174] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2628), - [sym_empty_statement] = STATE(1689), - [sym_expression_statement] = STATE(1689), - [sym_compound_statement] = STATE(1689), - [sym_return_statement] = STATE(1689), - [sym_break_statement] = STATE(1689), - [sym_continue_statement] = STATE(1689), - [sym_throw_statement] = STATE(1689), - [sym_echo_statement] = STATE(1689), - [sym_unset_statement] = STATE(1689), - [sym_concurrent_statement] = STATE(1689), - [sym_use_statement] = STATE(1689), - [sym_if_statement] = STATE(1689), - [sym_switch_statement] = STATE(1689), - [sym_foreach_statement] = STATE(1689), - [sym_while_statement] = STATE(1689), - [sym_do_statement] = STATE(1689), - [sym_for_statement] = STATE(1689), - [sym_try_statement] = STATE(1689), - [sym_using_statement] = STATE(1689), + [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), @@ -47147,159 +48113,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1689), - [sym_function_declaration] = STATE(1689), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1689), - [sym_interface_declaration] = STATE(1689), - [sym_class_declaration] = STATE(1689), - [sym_const_declaration] = STATE(1689), - [sym_enum_declaration] = STATE(1689), - [sym_abstract_enum_class_declaration] = STATE(1689), - [sym_enum_class_declaration] = STATE(1689), + [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(1689), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(919), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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_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), }, - [175] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [177] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), + [sym_module_attribute] = STATE(5831), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), - [sym_empty_statement] = STATE(1422), - [sym_expression_statement] = STATE(1422), - [sym_compound_statement] = STATE(1422), - [sym_return_statement] = STATE(1422), - [sym_break_statement] = STATE(1422), - [sym_continue_statement] = STATE(1422), - [sym_throw_statement] = STATE(1422), - [sym_echo_statement] = STATE(1422), - [sym_unset_statement] = STATE(1422), - [sym_concurrent_statement] = STATE(1422), - [sym_use_statement] = STATE(1422), - [sym_if_statement] = STATE(1422), - [sym_switch_statement] = STATE(1422), - [sym_foreach_statement] = STATE(1422), - [sym_while_statement] = STATE(1422), - [sym_do_statement] = STATE(1422), - [sym_for_statement] = STATE(1422), - [sym_try_statement] = STATE(1422), - [sym_using_statement] = STATE(1422), + [sym__expression] = STATE(2708), + [sym_empty_statement] = STATE(5831), + [sym_expression_statement] = STATE(5831), + [sym_compound_statement] = STATE(5831), + [sym_return_statement] = STATE(5831), + [sym_break_statement] = STATE(5831), + [sym_continue_statement] = STATE(5831), + [sym_throw_statement] = STATE(5831), + [sym_echo_statement] = STATE(5831), + [sym_unset_statement] = STATE(5831), + [sym_concurrent_statement] = STATE(5831), + [sym_use_statement] = STATE(5831), + [sym_if_statement] = STATE(5831), + [sym_switch_statement] = STATE(5831), + [sym_foreach_statement] = STATE(5831), + [sym_while_statement] = STATE(5831), + [sym_do_statement] = STATE(5831), + [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), @@ -47307,47 +48275,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1422), - [sym_function_declaration] = STATE(1422), - [sym__function_declaration_header] = STATE(4394), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1422), - [sym_interface_declaration] = STATE(1422), - [sym_class_declaration] = STATE(1422), - [sym_const_declaration] = STATE(1422), - [sym_enum_declaration] = STATE(1422), - [sym_abstract_enum_class_declaration] = STATE(1422), - [sym_enum_class_declaration] = STATE(1422), + [sym_selection_expression] = STATE(1892), + [sym_alias_declaration] = STATE(5831), + [sym_function_declaration] = STATE(5831), + [sym__function_declaration_header] = STATE(4853), + [sym_parameters] = STATE(4449), + [sym_trait_declaration] = STATE(5831), + [sym_interface_declaration] = STATE(5831), + [sym_class_declaration] = STATE(5831), + [sym_const_declaration] = STATE(5831), + [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_namespace_declaration] = STATE(1422), - [sym_abstract_modifier] = STATE(3961), - [sym_attribute_modifier] = STATE(3474), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6183), + [sym_namespace_declaration] = STATE(5831), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -47358,65 +48326,65 @@ 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_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_throw] = ACTIONS(45), - [anon_sym_echo] = ACTIONS(47), - [anon_sym_unset] = ACTIONS(49), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(53), - [anon_sym_use] = ACTIONS(55), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_foreach] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_try] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(915), + [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(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), + [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), @@ -47432,34 +48400,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [176] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2711), - [sym_empty_statement] = STATE(4932), - [sym_expression_statement] = STATE(4932), - [sym_compound_statement] = STATE(4932), - [sym_return_statement] = STATE(4932), - [sym_break_statement] = STATE(4932), - [sym_continue_statement] = STATE(4932), - [sym_throw_statement] = STATE(4932), - [sym_echo_statement] = STATE(4932), - [sym_unset_statement] = STATE(4932), - [sym_concurrent_statement] = STATE(4932), - [sym_use_statement] = STATE(4932), - [sym_if_statement] = STATE(4932), - [sym_switch_statement] = STATE(4932), - [sym_foreach_statement] = STATE(4932), - [sym_while_statement] = STATE(4932), - [sym_do_statement] = STATE(4932), - [sym_for_statement] = STATE(4932), - [sym_try_statement] = STATE(4932), - [sym_using_statement] = STATE(4932), + [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), @@ -47467,159 +48437,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(4932), - [sym_function_declaration] = STATE(4932), - [sym__function_declaration_header] = STATE(5121), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(4932), - [sym_interface_declaration] = STATE(4932), - [sym_class_declaration] = STATE(4932), - [sym_const_declaration] = STATE(4932), - [sym_enum_declaration] = STATE(4932), - [sym_abstract_enum_class_declaration] = STATE(4932), - [sym_enum_class_declaration] = STATE(4932), + [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(4932), - [sym_abstract_modifier] = STATE(4054), - [sym_attribute_modifier] = STATE(3475), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5976), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(673), - [anon_sym_newtype] = ACTIONS(673), + [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(675), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_return] = ACTIONS(681), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_echo] = ACTIONS(689), - [anon_sym_unset] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(693), - [anon_sym_use] = ACTIONS(695), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(697), - [anon_sym_if] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_foreach] = ACTIONS(703), - [anon_sym_while] = ACTIONS(705), - [anon_sym_do] = ACTIONS(707), - [anon_sym_for] = ACTIONS(709), - [anon_sym_try] = ACTIONS(711), - [anon_sym_using] = ACTIONS(713), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_class] = ACTIONS(719), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(723), + [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(725), - [sym_xhp_modifier] = ACTIONS(727), + [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), }, - [177] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1620), - [sym_expression_statement] = STATE(1619), - [sym_compound_statement] = STATE(1618), - [sym_return_statement] = STATE(1617), - [sym_break_statement] = STATE(1616), - [sym_continue_statement] = STATE(1615), - [sym_throw_statement] = STATE(1614), - [sym_echo_statement] = STATE(1613), - [sym_unset_statement] = STATE(1612), - [sym_concurrent_statement] = STATE(1611), - [sym_use_statement] = STATE(1609), - [sym_if_statement] = STATE(1608), - [sym_switch_statement] = STATE(1607), - [sym_foreach_statement] = STATE(1606), - [sym_while_statement] = STATE(1605), - [sym_do_statement] = STATE(1604), - [sym_for_statement] = STATE(1601), - [sym_try_statement] = STATE(1600), - [sym_using_statement] = STATE(1598), + [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), @@ -47627,159 +48599,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1596), - [sym_function_declaration] = STATE(1594), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1593), - [sym_interface_declaration] = STATE(1592), - [sym_class_declaration] = STATE(1591), - [sym_const_declaration] = STATE(1589), - [sym_enum_declaration] = STATE(1587), - [sym_abstract_enum_class_declaration] = STATE(1585), - [sym_enum_class_declaration] = STATE(1584), + [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(1582), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(921), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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), }, - [178] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_empty_statement] = STATE(1647), - [sym_expression_statement] = STATE(1647), - [sym_compound_statement] = STATE(1647), - [sym_return_statement] = STATE(1647), - [sym_break_statement] = STATE(1647), - [sym_continue_statement] = STATE(1647), - [sym_throw_statement] = STATE(1647), - [sym_echo_statement] = STATE(1647), - [sym_unset_statement] = STATE(1647), - [sym_concurrent_statement] = STATE(1647), - [sym_use_statement] = STATE(1647), - [sym_if_statement] = STATE(1647), - [sym_switch_statement] = STATE(1647), - [sym_foreach_statement] = STATE(1647), - [sym_while_statement] = STATE(1647), - [sym_do_statement] = STATE(1647), - [sym_for_statement] = STATE(1647), - [sym_try_statement] = STATE(1647), - [sym_using_statement] = STATE(1647), + [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), @@ -47787,159 +48761,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1647), - [sym_function_declaration] = STATE(1647), - [sym__function_declaration_header] = STATE(4589), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1647), - [sym_interface_declaration] = STATE(1647), - [sym_class_declaration] = STATE(1647), - [sym_const_declaration] = STATE(1647), - [sym_enum_declaration] = STATE(1647), - [sym_abstract_enum_class_declaration] = STATE(1647), - [sym_enum_class_declaration] = STATE(1647), + [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(1647), - [sym_abstract_modifier] = STATE(4060), - [sym_attribute_modifier] = STATE(3476), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5962), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(385), - [anon_sym_newtype] = ACTIONS(385), + [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(387), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(401), - [anon_sym_echo] = ACTIONS(403), - [anon_sym_unset] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(407), - [anon_sym_use] = ACTIONS(409), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(411), - [anon_sym_if] = ACTIONS(921), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_foreach] = ACTIONS(417), - [anon_sym_while] = ACTIONS(419), - [anon_sym_do] = ACTIONS(421), - [anon_sym_for] = ACTIONS(423), - [anon_sym_try] = ACTIONS(425), - [anon_sym_using] = ACTIONS(427), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_class] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(437), + [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(439), - [sym_xhp_modifier] = ACTIONS(441), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [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__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), @@ -47947,159 +48923,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(716), - [sym_function_declaration] = STATE(716), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [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_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(716), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, - [180] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_compound_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_throw_statement] = STATE(1023), - [sym_echo_statement] = STATE(1023), - [sym_unset_statement] = STATE(1023), - [sym_concurrent_statement] = STATE(1023), - [sym_use_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_foreach_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_try_statement] = STATE(1023), - [sym_using_statement] = STATE(1023), + [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), @@ -48107,159 +49085,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1023), - [sym_function_declaration] = STATE(1023), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1023), - [sym_interface_declaration] = STATE(1023), - [sym_class_declaration] = STATE(1023), - [sym_const_declaration] = STATE(1023), - [sym_enum_declaration] = STATE(1023), - [sym_abstract_enum_class_declaration] = STATE(1023), - [sym_enum_class_declaration] = STATE(1023), + [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(1023), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, - [181] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2712), - [sym_empty_statement] = STATE(743), - [sym_expression_statement] = STATE(743), - [sym_compound_statement] = STATE(743), - [sym_return_statement] = STATE(743), - [sym_break_statement] = STATE(743), - [sym_continue_statement] = STATE(743), - [sym_throw_statement] = STATE(743), - [sym_echo_statement] = STATE(743), - [sym_unset_statement] = STATE(743), - [sym_concurrent_statement] = STATE(743), - [sym_use_statement] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_foreach_statement] = STATE(743), - [sym_while_statement] = STATE(743), - [sym_do_statement] = STATE(743), - [sym_for_statement] = STATE(743), - [sym_try_statement] = STATE(743), - [sym_using_statement] = STATE(743), + [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), @@ -48267,159 +49247,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(743), - [sym_function_declaration] = STATE(743), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(743), - [sym_interface_declaration] = STATE(743), - [sym_class_declaration] = STATE(743), - [sym_const_declaration] = STATE(743), - [sym_enum_declaration] = STATE(743), - [sym_abstract_enum_class_declaration] = STATE(743), - [sym_enum_class_declaration] = STATE(743), + [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(743), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [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(781), - [sym_xhp_modifier] = ACTIONS(783), + [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), }, - [182] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2700), - [sym_empty_statement] = STATE(1005), - [sym_expression_statement] = STATE(1005), - [sym_compound_statement] = STATE(1005), - [sym_return_statement] = STATE(1005), - [sym_break_statement] = STATE(1005), - [sym_continue_statement] = STATE(1005), - [sym_throw_statement] = STATE(1005), - [sym_echo_statement] = STATE(1005), - [sym_unset_statement] = STATE(1005), - [sym_concurrent_statement] = STATE(1005), - [sym_use_statement] = STATE(1005), - [sym_if_statement] = STATE(1005), - [sym_switch_statement] = STATE(1005), - [sym_foreach_statement] = STATE(1005), - [sym_while_statement] = STATE(1005), - [sym_do_statement] = STATE(1005), - [sym_for_statement] = STATE(1005), - [sym_try_statement] = STATE(1005), - [sym_using_statement] = STATE(1005), + [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), @@ -48427,159 +49409,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1005), - [sym_function_declaration] = STATE(1005), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1005), - [sym_interface_declaration] = STATE(1005), - [sym_class_declaration] = STATE(1005), - [sym_const_declaration] = STATE(1005), - [sym_enum_declaration] = STATE(1005), - [sym_abstract_enum_class_declaration] = STATE(1005), - [sym_enum_class_declaration] = STATE(1005), + [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(1005), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), + [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(743), + [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(745), + [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_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), + [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), + [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(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [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(849), - [sym_xhp_modifier] = ACTIONS(851), + [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), }, - [183] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [185] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2700), - [sym_empty_statement] = STATE(1006), - [sym_expression_statement] = STATE(1006), - [sym_compound_statement] = STATE(1006), - [sym_return_statement] = STATE(1006), - [sym_break_statement] = STATE(1006), - [sym_continue_statement] = STATE(1006), - [sym_throw_statement] = STATE(1006), - [sym_echo_statement] = STATE(1006), - [sym_unset_statement] = STATE(1006), - [sym_concurrent_statement] = STATE(1006), - [sym_use_statement] = STATE(1006), - [sym_if_statement] = STATE(1006), - [sym_switch_statement] = STATE(1006), - [sym_foreach_statement] = STATE(1006), - [sym_while_statement] = STATE(1006), - [sym_do_statement] = STATE(1006), - [sym_for_statement] = STATE(1006), - [sym_try_statement] = STATE(1006), - [sym_using_statement] = STATE(1006), + [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), @@ -48587,159 +49551,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_alias_declaration] = STATE(1006), - [sym_function_declaration] = STATE(1006), - [sym__function_declaration_header] = STATE(5077), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(1006), - [sym_interface_declaration] = STATE(1006), - [sym_class_declaration] = STATE(1006), - [sym_const_declaration] = STATE(1006), - [sym_enum_declaration] = STATE(1006), - [sym_abstract_enum_class_declaration] = STATE(1006), - [sym_enum_class_declaration] = STATE(1006), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1006), - [sym_abstract_modifier] = STATE(4066), - [sym_attribute_modifier] = STATE(3477), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(6328), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(797), - [anon_sym_newtype] = ACTIONS(797), [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(799), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_return] = ACTIONS(805), - [anon_sym_break] = ACTIONS(807), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(811), - [anon_sym_echo] = ACTIONS(813), - [anon_sym_unset] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(817), - [anon_sym_use] = ACTIONS(819), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_foreach] = ACTIONS(827), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(831), - [anon_sym_for] = ACTIONS(833), - [anon_sym_try] = ACTIONS(835), - [anon_sym_using] = ACTIONS(837), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(105), + [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(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_class] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(847), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(849), - [sym_xhp_modifier] = ACTIONS(851), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [186] = { + [sym_qualified_identifier] = STATE(2145), + [sym_scoped_identifier] = STATE(2532), + [sym_scope_identifier] = STATE(2459), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2712), - [sym_empty_statement] = STATE(758), - [sym_expression_statement] = STATE(766), - [sym_compound_statement] = STATE(777), - [sym_return_statement] = STATE(778), - [sym_break_statement] = STATE(755), - [sym_continue_statement] = STATE(783), - [sym_throw_statement] = STATE(793), - [sym_echo_statement] = STATE(795), - [sym_unset_statement] = STATE(798), - [sym_concurrent_statement] = STATE(799), - [sym_use_statement] = STATE(801), - [sym_if_statement] = STATE(804), - [sym_switch_statement] = STATE(811), - [sym_foreach_statement] = STATE(817), - [sym_while_statement] = STATE(818), - [sym_do_statement] = STATE(820), - [sym_for_statement] = STATE(825), - [sym_try_statement] = STATE(828), - [sym_using_statement] = STATE(841), + [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), @@ -48747,140 +49702,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_alias_declaration] = STATE(843), - [sym_function_declaration] = STATE(845), - [sym__function_declaration_header] = STATE(4682), - [sym_parameters] = STATE(4324), - [sym_trait_declaration] = STATE(862), - [sym_interface_declaration] = STATE(864), - [sym_class_declaration] = STATE(871), - [sym_const_declaration] = STATE(781), - [sym_enum_declaration] = STATE(787), - [sym_abstract_enum_class_declaration] = STATE(772), - [sym_enum_class_declaration] = STATE(764), + [sym_selection_expression] = STATE(2530), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(762), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3479), - [sym_async_modifier] = STATE(3757), - [sym_await_modifier] = STATE(5739), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(729), - [anon_sym_newtype] = ACTIONS(729), + [sym_variable] = ACTIONS(953), + [sym_pipe_variable] = ACTIONS(955), [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(731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_echo] = ACTIONS(745), - [anon_sym_unset] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_concurrent] = ACTIONS(749), - [anon_sym_use] = ACTIONS(751), - [anon_sym_function] = ACTIONS(57), - [anon_sym_const] = ACTIONS(753), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_foreach] = ACTIONS(759), - [anon_sym_while] = ACTIONS(761), - [anon_sym_do] = ACTIONS(763), - [anon_sym_for] = ACTIONS(765), - [anon_sym_try] = ACTIONS(767), - [anon_sym_using] = ACTIONS(769), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(105), + [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(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_class] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(779), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(781), - [sym_xhp_modifier] = ACTIONS(783), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(957), + [sym_xhp_class_identifier] = ACTIONS(955), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_qualified_identifier] = STATE(2062), - [sym_scoped_identifier] = STATE(2458), - [sym_scope_identifier] = STATE(2184), + [187] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -48888,149 +49853,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2496), - [sym_subscript_expression] = STATE(2496), - [sym_list_expression] = STATE(2496), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2496), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2496), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(925), - [sym_pipe_variable] = ACTIONS(927), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(937), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(939), - [sym_xhp_class_identifier] = ACTIONS(927), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [188] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1953), + [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), @@ -49038,34 +50004,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -49074,113 +50040,114 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(937), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [189] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1975), + [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), @@ -49188,34 +50155,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -49224,113 +50191,114 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(937), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [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(2062), - [sym_scoped_identifier] = STATE(2458), - [sym_scope_identifier] = STATE(2184), + [190] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -49338,147 +50306,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2496), - [sym_subscript_expression] = STATE(2496), - [sym_list_expression] = STATE(2496), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2496), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2496), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(925), - [sym_pipe_variable] = ACTIONS(927), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(937), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(959), + [anon_sym_QMARK] = ACTIONS(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(939), - [sym_xhp_class_identifier] = ACTIONS(927), - [anon_sym_ATrequired] = ACTIONS(931), - [anon_sym_ATlateinit] = ACTIONS(931), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [anon_sym_ATrequired] = ACTIONS(947), + [anon_sym_ATlateinit] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [191] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1953), + [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), @@ -49486,34 +50455,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -49522,111 +50491,112 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(937), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(959), + [anon_sym_QMARK] = ACTIONS(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), - [anon_sym_ATrequired] = ACTIONS(931), - [anon_sym_ATlateinit] = ACTIONS(931), + [anon_sym_ATrequired] = ACTIONS(947), + [anon_sym_ATlateinit] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, - [190] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [192] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1975), + [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), @@ -49634,34 +50604,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -49670,111 +50640,112 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(937), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(959), + [anon_sym_QMARK] = ACTIONS(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), - [anon_sym_ATrequired] = ACTIONS(931), - [anon_sym_ATlateinit] = ACTIONS(931), + [anon_sym_ATrequired] = ACTIONS(947), + [anon_sym_ATlateinit] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [193] = { + [sym_qualified_identifier] = STATE(2145), + [sym_scoped_identifier] = STATE(2532), + [sym_scope_identifier] = STATE(2459), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1953), + [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), @@ -49782,144 +50753,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2530), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(953), + [sym_pipe_variable] = ACTIONS(955), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_as2] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(935), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(959), + [anon_sym_QMARK] = ACTIONS(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [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(955), + [anon_sym_ATrequired] = ACTIONS(947), + [anon_sym_ATlateinit] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_qualified_identifier] = STATE(2062), - [sym_scoped_identifier] = STATE(2458), - [sym_scope_identifier] = STATE(2184), + [194] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -49927,144 +50902,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2496), - [sym_subscript_expression] = STATE(2496), - [sym_list_expression] = STATE(2496), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2496), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2496), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(925), - [sym_pipe_variable] = ACTIONS(927), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_as2] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(935), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(959), + [anon_sym_QMARK] = ACTIONS(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(939), - [sym_xhp_class_identifier] = ACTIONS(927), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [anon_sym_ATrequired] = ACTIONS(947), + [anon_sym_ATlateinit] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [195] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1975), + [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), @@ -50072,34 +51051,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50108,4078 +51087,4226 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_function] = ACTIONS(933), - [anon_sym_as2] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(931), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_PIPE_GT] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_QMARK_COLON] = ACTIONS(931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(931), - [anon_sym_DOT_EQ] = ACTIONS(931), - [anon_sym_PIPE_EQ] = ACTIONS(931), - [anon_sym_CARET_EQ] = ACTIONS(931), - [anon_sym_AMP_EQ] = ACTIONS(931), - [anon_sym_LT_LT_EQ] = ACTIONS(931), - [anon_sym_GT_GT_EQ] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(931), - [anon_sym_DASH_EQ] = ACTIONS(931), - [anon_sym_STAR_EQ] = ACTIONS(931), - [anon_sym_SLASH_EQ] = ACTIONS(931), - [anon_sym_PERCENT_EQ] = ACTIONS(931), - [anon_sym_STAR_STAR_EQ] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_await] = ACTIONS(935), - [anon_sym_is] = ACTIONS(935), - [anon_sym_as3] = ACTIONS(935), - [anon_sym_QMARKas] = ACTIONS(931), + [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(945), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(931), - [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [196] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [sym__expression] = STATE(1994), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [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(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(967), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_float] = ACTIONS(971), - [anon_sym_int] = ACTIONS(971), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(971), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(945), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_qualified_identifier] = STATE(1835), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [197] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [sym__expression] = STATE(2007), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2239), + [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3774), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(3774), - [sym_function_type_specifier] = STATE(3774), - [sym_shape_type_specifier] = STATE(3774), - [sym_type_constant] = STATE(3774), - [sym__type_constant] = STATE(2831), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(985), + [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(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(987), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(989), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_float] = ACTIONS(991), - [anon_sym_int] = ACTIONS(991), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(991), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(945), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(993), - [sym_xhp_class_identifier] = ACTIONS(995), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [198] = { + [sym_qualified_identifier] = STATE(2145), + [sym_scoped_identifier] = STATE(2532), + [sym_scope_identifier] = STATE(2459), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2295), + [sym__expression] = STATE(2798), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(2530), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(953), + [sym_pipe_variable] = ACTIONS(955), + [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(945), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [sym_xhp_identifier] = ACTIONS(957), + [sym_xhp_class_identifier] = ACTIONS(955), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [199] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2287), + [sym__expression] = STATE(2091), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(1929), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(945), + [anon_sym_GT_GT] = ACTIONS(945), + [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), + [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(945), + [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(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_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_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_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_QMARK_DASH_GT] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [200] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2249), + [sym__expression] = STATE(2282), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [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(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [199] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [201] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2440), + [sym__expression] = STATE(2519), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [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(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [200] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [202] = { + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [sym__expression] = STATE(2660), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2490), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(1023), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_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_RPAREN] = ACTIONS(983), + [anon_sym_function] = ACTIONS(1027), + [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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [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(1035), + [anon_sym_float] = ACTIONS(1035), + [anon_sym_int] = ACTIONS(1035), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1035), + [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(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), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [sym_inout_modifier] = ACTIONS(1015), + [sym_xhp_identifier] = ACTIONS(1037), + [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [203] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2230), + [sym__expression] = STATE(2626), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(25), + [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_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_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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [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(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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [202] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [204] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2263), + [sym__expression] = STATE(2660), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(25), + [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_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_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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [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(1035), + [anon_sym_float] = ACTIONS(1035), + [anon_sym_int] = ACTIONS(1035), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1035), + [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(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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [203] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [205] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2195), + [sym__expression] = STATE(2241), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [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(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [204] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [206] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2452), + [sym__expression] = STATE(2430), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [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(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [205] = { - [sym_qualified_identifier] = STATE(1835), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [207] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2685), + [sym__expression] = STATE(2660), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2239), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3774), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(3774), - [sym_function_type_specifier] = STATE(3774), - [sym_shape_type_specifier] = STATE(3774), - [sym_type_constant] = STATE(3774), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(985), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(987), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1027), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1029), - [anon_sym_float] = ACTIONS(1029), - [anon_sym_int] = ACTIONS(1029), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1029), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_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_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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [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(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), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(993), - [sym_xhp_class_identifier] = ACTIONS(995), + [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), }, - [206] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [208] = { + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2315), + [sym__expression] = STATE(2626), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2490), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(1023), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(25), + [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_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_RPAREN] = ACTIONS(983), + [anon_sym_function] = ACTIONS(1027), + [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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [anon_sym_array] = ACTIONS(1041), + [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(1043), + [anon_sym_float] = ACTIONS(1043), + [anon_sym_int] = ACTIONS(1043), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1043), + [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(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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [sym_inout_modifier] = ACTIONS(1015), + [sym_xhp_identifier] = ACTIONS(1037), + [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [209] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2357), + [sym__expression] = STATE(2626), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(25), + [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_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_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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [anon_sym_array] = ACTIONS(1041), + [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(1043), + [anon_sym_float] = ACTIONS(1043), + [anon_sym_int] = ACTIONS(1043), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1043), + [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(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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [208] = { - [sym_qualified_identifier] = STATE(1835), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [210] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [sym__expression] = STATE(2294), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2239), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3774), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(3774), - [sym_function_type_specifier] = STATE(3774), - [sym_shape_type_specifier] = STATE(3774), - [sym_type_constant] = STATE(3774), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [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(985), + [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_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(987), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(967), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_float] = ACTIONS(971), - [anon_sym_int] = ACTIONS(971), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(971), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(993), - [sym_xhp_class_identifier] = ACTIONS(995), + [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), }, - [209] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [211] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2685), + [sym__expression] = STATE(2383), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [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(947), + [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_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [210] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [212] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2206), + [sym__expression] = STATE(2286), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [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(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [211] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [213] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2442), + [sym__expression] = STATE(2268), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [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(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [212] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [214] = { + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2685), + [sym__expression] = STATE(2660), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2490), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(1023), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1027), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1029), - [anon_sym_float] = ACTIONS(1029), - [anon_sym_int] = ACTIONS(1029), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1029), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_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_RPAREN] = ACTIONS(983), + [anon_sym_function] = ACTIONS(1027), + [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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [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(1047), + [anon_sym_float] = ACTIONS(1047), + [anon_sym_int] = ACTIONS(1047), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1047), + [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(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), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [sym_inout_modifier] = ACTIONS(1015), + [sym_xhp_identifier] = ACTIONS(1037), + [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [215] = { + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2374), + [sym__expression] = STATE(2660), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2490), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(1023), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(25), + [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_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_RPAREN] = ACTIONS(983), + [anon_sym_function] = ACTIONS(1027), + [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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [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(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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [sym_inout_modifier] = ACTIONS(1015), + [sym_xhp_identifier] = ACTIONS(1037), + [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [214] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [216] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2217), + [sym__expression] = STATE(2660), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(2005), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(997), + [aux_sym_qualified_identifier_repeat1] = STATE(1821), + [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(947), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(25), + [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_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_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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [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(1047), + [anon_sym_float] = ACTIONS(1047), + [anon_sym_int] = ACTIONS(1047), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(1047), + [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(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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [215] = { - [sym_qualified_identifier] = STATE(1846), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [217] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [sym__expression] = STATE(2497), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2347), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4415), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(4415), - [sym_function_type_specifier] = STATE(4415), - [sym_shape_type_specifier] = STATE(4415), - [sym_type_constant] = STATE(4415), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [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(947), + [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_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(989), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_float] = ACTIONS(991), - [anon_sym_int] = ACTIONS(991), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(991), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(981), - [sym_xhp_class_identifier] = ACTIONS(983), + [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), }, - [216] = { - [sym_qualified_identifier] = STATE(1835), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [218] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [sym__expression] = STATE(2300), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2239), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3774), - [sym__type_modifier] = STATE(3383), - [sym_tuple_type_specifier] = STATE(3774), - [sym_function_type_specifier] = STATE(3774), - [sym_shape_type_specifier] = STATE(3774), - [sym_type_constant] = STATE(3774), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), - [sym_parameter] = STATE(4488), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2829), - [sym_attribute_modifier] = STATE(1962), - [sym_variadic_modifier] = STATE(5244), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1781), - [aux_sym_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(943), - [sym_variable] = ACTIONS(945), + [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(985), + [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_namespace] = ACTIONS(949), - [anon_sym_BSLASH] = ACTIONS(951), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_function] = ACTIONS(987), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(957), - [anon_sym_Null] = ACTIONS(957), - [anon_sym_NULL] = ACTIONS(957), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(1009), - [anon_sym_varray] = ACTIONS(969), - [anon_sym_darray] = ACTIONS(969), - [anon_sym_vec] = ACTIONS(969), - [anon_sym_dict] = ACTIONS(969), - [anon_sym_keyset] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_float] = ACTIONS(1011), - [anon_sym_int] = ACTIONS(1011), - [anon_sym_num] = ACTIONS(973), - [anon_sym_string] = ACTIONS(1011), - [anon_sym_arraykey] = ACTIONS(973), - [anon_sym_void] = ACTIONS(973), - [anon_sym_nonnull] = ACTIONS(973), - [anon_sym_mixed] = ACTIONS(973), - [anon_sym_dynamic] = ACTIONS(973), - [anon_sym_noreturn] = ACTIONS(973), - [anon_sym_nothing] = ACTIONS(973), - [anon_sym_resource] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [sym_inout_modifier] = ACTIONS(979), - [sym_xhp_identifier] = ACTIONS(993), - [sym_xhp_class_identifier] = ACTIONS(995), + [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(1748), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [219] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2041), + [sym__expression] = STATE(2283), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2042), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4548), - [sym__type_modifier] = STATE(3389), - [sym_tuple_type_specifier] = STATE(4548), - [sym_function_type_specifier] = STATE(4548), - [sym_shape_type_specifier] = STATE(4548), - [sym_type_constant] = STATE(4548), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [aux_sym_type_specifier_repeat1] = STATE(3389), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), + [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(1031), + [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_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_array] = ACTIONS(1033), - [anon_sym_varray] = ACTIONS(1033), - [anon_sym_darray] = ACTIONS(1033), - [anon_sym_vec] = ACTIONS(1033), - [anon_sym_dict] = ACTIONS(1033), - [anon_sym_keyset] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), - [anon_sym_num] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_arraykey] = ACTIONS(1035), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_nonnull] = ACTIONS(1035), - [anon_sym_mixed] = ACTIONS(1035), - [anon_sym_dynamic] = ACTIONS(1035), - [anon_sym_noreturn] = ACTIONS(1035), - [anon_sym_nothing] = ACTIONS(1035), - [anon_sym_resource] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1039), - [sym_xhp_class_identifier] = ACTIONS(1041), + [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), }, - [218] = { - [sym_qualified_identifier] = STATE(1753), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [220] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1990), + [sym__expression] = STATE(2428), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(1897), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4548), - [sym__type_modifier] = STATE(3389), - [sym_tuple_type_specifier] = STATE(4548), - [sym_function_type_specifier] = STATE(4548), - [sym_shape_type_specifier] = STATE(4548), - [sym_type_constant] = STATE(4548), - [sym__type_constant] = STATE(2831), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [aux_sym_type_specifier_repeat1] = STATE(3389), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), + [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(1043), + [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_array] = ACTIONS(1033), - [anon_sym_varray] = ACTIONS(1033), - [anon_sym_darray] = ACTIONS(1033), - [anon_sym_vec] = ACTIONS(1033), - [anon_sym_dict] = ACTIONS(1033), - [anon_sym_keyset] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), - [anon_sym_num] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_arraykey] = ACTIONS(1035), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_nonnull] = ACTIONS(1035), - [anon_sym_mixed] = ACTIONS(1035), - [anon_sym_dynamic] = ACTIONS(1035), - [anon_sym_noreturn] = ACTIONS(1035), - [anon_sym_nothing] = ACTIONS(1035), - [anon_sym_resource] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1045), - [sym_xhp_class_identifier] = ACTIONS(1047), + [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), }, - [219] = { - [sym_qualified_identifier] = STATE(1783), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [221] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2069), + [sym__expression] = STATE(2308), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(1897), + [sym_null] = STATE(2323), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4548), - [sym__type_modifier] = STATE(3389), - [sym_tuple_type_specifier] = STATE(4548), - [sym_function_type_specifier] = STATE(4548), - [sym_shape_type_specifier] = STATE(4548), - [sym_type_constant] = STATE(4548), - [sym__type_constant] = STATE(2831), + [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(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [aux_sym_type_specifier_repeat1] = STATE(3389), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), - [anon_sym_shape] = ACTIONS(1043), + [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(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_array] = ACTIONS(1033), - [anon_sym_varray] = ACTIONS(1033), - [anon_sym_darray] = ACTIONS(1033), - [anon_sym_vec] = ACTIONS(1033), - [anon_sym_dict] = ACTIONS(1033), - [anon_sym_keyset] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), - [anon_sym_num] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_arraykey] = ACTIONS(1035), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_nonnull] = ACTIONS(1035), - [anon_sym_mixed] = ACTIONS(1035), - [anon_sym_dynamic] = ACTIONS(1035), - [anon_sym_noreturn] = ACTIONS(1035), - [anon_sym_nothing] = ACTIONS(1035), - [anon_sym_resource] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1077), - [sym_xhp_class_identifier] = ACTIONS(1079), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_qualified_identifier] = STATE(1840), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2351), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2365), - [sym_prefixed_string] = STATE(2701), - [sym_type_specifier] = STATE(4548), - [sym__type_modifier] = STATE(3389), - [sym_tuple_type_specifier] = STATE(4548), - [sym_function_type_specifier] = STATE(4548), - [sym_shape_type_specifier] = STATE(4548), - [sym_type_constant] = STATE(4548), - [sym__type_constant] = STATE(2831), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [aux_sym_type_specifier_repeat1] = STATE(3389), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1087), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_array] = ACTIONS(1123), - [anon_sym_varray] = ACTIONS(1123), - [anon_sym_darray] = ACTIONS(1123), - [anon_sym_vec] = ACTIONS(1123), - [anon_sym_dict] = ACTIONS(1123), - [anon_sym_keyset] = ACTIONS(1123), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), - [anon_sym_num] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_arraykey] = ACTIONS(1035), - [anon_sym_void] = ACTIONS(1035), - [anon_sym_nonnull] = ACTIONS(1035), - [anon_sym_mixed] = ACTIONS(1035), - [anon_sym_dynamic] = ACTIONS(1035), - [anon_sym_noreturn] = ACTIONS(1035), - [anon_sym_nothing] = ACTIONS(1035), - [anon_sym_resource] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1147), - [sym_xhp_class_identifier] = ACTIONS(1149), + [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), }, - [221] = { - [sym_qualified_identifier] = STATE(1949), - [sym_scoped_identifier] = STATE(2178), - [sym_scope_identifier] = STATE(2145), + [222] = { + [sym_qualified_identifier] = STATE(1881), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym_braced_expression] = STATE(2303), - [sym__expression] = STATE(2716), + [sym__expression] = STATE(2400), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(2319), + [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(2322), - [sym_subscript_expression] = STATE(2322), - [sym_list_expression] = STATE(2322), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2725), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2322), + [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(2322), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), + [sym_parameter] = STATE(4963), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [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(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1151), - [sym_variable] = ACTIONS(1153), - [sym_pipe_variable] = ACTIONS(1155), - [anon_sym_type] = ACTIONS(1157), - [anon_sym_newtype] = ACTIONS(1157), - [anon_sym_shape] = ACTIONS(1159), - [anon_sym_tuple] = ACTIONS(1161), - [anon_sym_clone] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1165), - [anon_sym_print] = ACTIONS(1167), - [anon_sym_namespace] = ACTIONS(1169), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(1175), - [anon_sym_Null] = ACTIONS(1175), - [anon_sym_NULL] = ACTIONS(1175), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(1177), - [anon_sym_varray] = ACTIONS(1177), - [anon_sym_darray] = ACTIONS(1177), - [anon_sym_vec] = ACTIONS(1177), - [anon_sym_dict] = ACTIONS(1177), - [anon_sym_keyset] = ACTIONS(1177), - [anon_sym_bool] = ACTIONS(1157), - [anon_sym_float] = ACTIONS(1157), - [anon_sym_int] = ACTIONS(1157), - [anon_sym_num] = ACTIONS(1157), - [anon_sym_string] = ACTIONS(1157), - [anon_sym_arraykey] = ACTIONS(1157), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_nonnull] = ACTIONS(1157), - [anon_sym_mixed] = ACTIONS(1157), - [anon_sym_dynamic] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_nothing] = ACTIONS(1157), - [anon_sym_resource] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1179), - [sym_xhp_class_identifier] = ACTIONS(1155), + [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), }, - [222] = { - [sym_qualified_identifier] = STATE(1739), - [sym_scoped_identifier] = STATE(1764), - [sym_scope_identifier] = STATE(1755), + [223] = { + [sym_qualified_identifier] = STATE(1795), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym_braced_expression] = STATE(1815), - [sym__expression] = STATE(2726), + [sym__expression] = STATE(2036), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(1813), + [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(1812), - [sym_subscript_expression] = STATE(1812), - [sym_list_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1812), + [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(1812), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_type_specifier_repeat1] = STATE(3437), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1181), - [sym_pipe_variable] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_newtype] = ACTIONS(1185), - [anon_sym_shape] = ACTIONS(1187), - [anon_sym_tuple] = ACTIONS(1189), - [anon_sym_clone] = ACTIONS(1191), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_print] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(1201), - [anon_sym_Null] = ACTIONS(1201), - [anon_sym_NULL] = ACTIONS(1201), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(1203), - [anon_sym_varray] = ACTIONS(1203), - [anon_sym_darray] = ACTIONS(1203), - [anon_sym_vec] = ACTIONS(1203), - [anon_sym_dict] = ACTIONS(1203), - [anon_sym_keyset] = ACTIONS(1203), - [anon_sym_bool] = ACTIONS(1185), - [anon_sym_float] = ACTIONS(1185), - [anon_sym_int] = ACTIONS(1185), - [anon_sym_num] = ACTIONS(1185), - [anon_sym_string] = ACTIONS(1185), - [anon_sym_arraykey] = ACTIONS(1185), - [anon_sym_void] = ACTIONS(1185), - [anon_sym_nonnull] = ACTIONS(1185), - [anon_sym_mixed] = ACTIONS(1185), - [anon_sym_dynamic] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_nothing] = ACTIONS(1185), - [anon_sym_resource] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(1049), + [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(981), + [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(987), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_array] = ACTIONS(1053), + [anon_sym_varray] = ACTIONS(1053), + [anon_sym_darray] = ACTIONS(1053), + [anon_sym_vec] = ACTIONS(1053), + [anon_sym_dict] = ACTIONS(1053), + [anon_sym_keyset] = ACTIONS(1053), + [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(99), + [anon_sym_GT] = ACTIONS(1057), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1205), - [sym_xhp_class_identifier] = ACTIONS(1183), + [sym_xhp_identifier] = ACTIONS(1059), + [sym_xhp_class_identifier] = ACTIONS(1061), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_qualified_identifier] = STATE(1739), - [sym_scoped_identifier] = STATE(1764), - [sym_scope_identifier] = STATE(1755), + [224] = { + [sym_qualified_identifier] = STATE(1811), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym_braced_expression] = STATE(1815), - [sym__expression] = STATE(2726), + [sym__expression] = STATE(2132), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(1813), + [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(1812), - [sym_subscript_expression] = STATE(1812), - [sym_list_expression] = STATE(1812), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1812), + [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(1812), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_type_specifier_repeat1] = STATE(3437), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1181), - [sym_pipe_variable] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_newtype] = ACTIONS(1185), - [anon_sym_shape] = ACTIONS(1187), - [anon_sym_tuple] = ACTIONS(1189), - [anon_sym_clone] = ACTIONS(1207), - [anon_sym_new] = ACTIONS(1209), - [anon_sym_print] = ACTIONS(1211), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(1201), - [anon_sym_Null] = ACTIONS(1201), - [anon_sym_NULL] = ACTIONS(1201), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(1203), - [anon_sym_varray] = ACTIONS(1203), - [anon_sym_darray] = ACTIONS(1203), - [anon_sym_vec] = ACTIONS(1203), - [anon_sym_dict] = ACTIONS(1203), - [anon_sym_keyset] = ACTIONS(1203), - [anon_sym_bool] = ACTIONS(1185), - [anon_sym_float] = ACTIONS(1185), - [anon_sym_int] = ACTIONS(1185), - [anon_sym_num] = ACTIONS(1185), - [anon_sym_string] = ACTIONS(1185), - [anon_sym_arraykey] = ACTIONS(1185), - [anon_sym_void] = ACTIONS(1185), - [anon_sym_nonnull] = ACTIONS(1185), - [anon_sym_mixed] = ACTIONS(1185), - [anon_sym_dynamic] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_nothing] = ACTIONS(1185), - [anon_sym_resource] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), + [anon_sym_shape] = ACTIONS(1049), + [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(1075), + [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(1077), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_array] = ACTIONS(1053), + [anon_sym_varray] = ACTIONS(1053), + [anon_sym_darray] = ACTIONS(1053), + [anon_sym_vec] = ACTIONS(1053), + [anon_sym_dict] = ACTIONS(1053), + [anon_sym_keyset] = ACTIONS(1053), + [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(99), + [anon_sym_GT] = ACTIONS(1057), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1205), - [sym_xhp_class_identifier] = ACTIONS(1183), + [sym_xhp_identifier] = ACTIONS(1091), + [sym_xhp_class_identifier] = ACTIONS(1093), [sym_comment] = ACTIONS(3), }, - [224] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [225] = { + [sym_qualified_identifier] = STATE(1786), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2086), + [sym__expression] = STATE(2061), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = 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(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_type_specifier_repeat1] = STATE(3437), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), - [anon_sym_shape] = ACTIONS(17), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(1095), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [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(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1025), + [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(1029), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_array] = ACTIONS(1053), + [anon_sym_varray] = ACTIONS(1053), + [anon_sym_darray] = ACTIONS(1053), + [anon_sym_vec] = ACTIONS(1053), + [anon_sym_dict] = ACTIONS(1053), + [anon_sym_keyset] = ACTIONS(1053), + [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(99), + [anon_sym_GT] = ACTIONS(1057), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1097), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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__expression] = STATE(1950), + [sym_braced_expression] = STATE(2372), + [sym__expression] = STATE(2807), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(1929), + [sym_null] = STATE(2353), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -54187,113 +55314,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2345), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_bool] = ACTIONS(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_num] = ACTIONS(1225), - [anon_sym_string] = ACTIONS(1225), - [anon_sym_arraykey] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1225), - [anon_sym_nonnull] = ACTIONS(1225), - [anon_sym_mixed] = ACTIONS(1225), - [anon_sym_dynamic] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_nothing] = ACTIONS(1225), - [anon_sym_resource] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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), + [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), + [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(1199), + [anon_sym_Null] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [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_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(1153), + [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(1025), + [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(1203), + [sym_xhp_class_identifier] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [228] = { + [sym_qualified_identifier] = STATE(1779), + [sym_scoped_identifier] = STATE(1800), + [sym_scope_identifier] = STATE(1799), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2061), + [sym_braced_expression] = STATE(1818), + [sym__expression] = STATE(2798), [sym_true] = STATE(1929), [sym_false] = STATE(1929), - [sym_null] = STATE(1929), + [sym_null] = STATE(1819), + [sym_expression_tree] = STATE(1929), [sym_prefixed_string] = STATE(1929), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), @@ -54301,341 +55432,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [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(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1842), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_bool] = ACTIONS(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_num] = ACTIONS(1225), - [anon_sym_string] = ACTIONS(1225), - [anon_sym_arraykey] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1225), - [anon_sym_nonnull] = ACTIONS(1225), - [anon_sym_mixed] = ACTIONS(1225), - [anon_sym_dynamic] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_nothing] = ACTIONS(1225), - [anon_sym_resource] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2240), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_QMARK] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1135), + [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), + [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_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(1229), + [anon_sym_Null] = ACTIONS(1229), + [anon_sym_NULL] = ACTIONS(1229), + [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(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(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), + [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_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(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_class_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [228] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2246), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1135), + [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__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), + [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), + [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(1229), + [anon_sym_Null] = ACTIONS(1229), + [anon_sym_NULL] = ACTIONS(1229), + [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(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_num] = ACTIONS(1225), - [anon_sym_string] = ACTIONS(1225), - [anon_sym_arraykey] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1225), - [anon_sym_nonnull] = ACTIONS(1225), - [anon_sym_mixed] = ACTIONS(1225), - [anon_sym_dynamic] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_nothing] = ACTIONS(1225), - [anon_sym_resource] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), + [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_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(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_class_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [229] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2015), + [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), @@ -54643,113 +55782,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [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(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_QMARK] = ACTIONS(1249), + [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(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(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(1025), + [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), }, - [230] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [232] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1956), + [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), @@ -54757,113 +55897,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_bool] = ACTIONS(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_num] = ACTIONS(1225), - [anon_sym_string] = ACTIONS(1225), - [anon_sym_arraykey] = ACTIONS(1225), - [anon_sym_void] = ACTIONS(1225), - [anon_sym_nonnull] = ACTIONS(1225), - [anon_sym_mixed] = ACTIONS(1225), - [anon_sym_dynamic] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_nothing] = ACTIONS(1225), - [anon_sym_resource] = ACTIONS(1225), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_QMARK] = ACTIONS(1259), + [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_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(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), }, - [231] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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__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_QMARK] = ACTIONS(1249), + [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(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(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), + }, + [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__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(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), + [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(1959), + [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), @@ -54871,34 +56242,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -54907,61 +56278,61 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [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(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_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), @@ -54969,15 +56340,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [236] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -54985,104 +56357,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2108), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_QMARK] = ACTIONS(1259), + [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(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(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(1025), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [237] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -55090,666 +56472,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(4541), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_QMARK] = ACTIONS(1249), + [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(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), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(2476), - [sym_scope_identifier] = STATE(1841), + [238] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(4604), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(4489), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1241), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1267), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, - [235] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(2476), - [sym_scope_identifier] = STATE(1841), + [239] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(4604), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(4558), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(4897), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1249), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1271), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, - [236] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(2476), - [sym_scope_identifier] = STATE(1841), + [240] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(4604), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(4489), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1251), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1273), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, - [237] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [241] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(2571), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5017), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [238] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(2476), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4604), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(4489), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -55758,50 +56943,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1275), + [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(1277), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [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), @@ -55809,225 +56994,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, [242] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -56035,104 +57011,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1283), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [243] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -56140,104 +57117,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1285), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [244] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -56245,141 +57223,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(4520), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1287), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [245] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(2476), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(2571), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4604), + [sym_field_specifier] = STATE(5136), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(4489), + [sym_field_initializer] = STATE(5139), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -56388,50 +57367,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1269), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1289), + [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(1277), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [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), @@ -56440,14 +57419,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [246] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -56455,104 +57435,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(4435), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1291), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -56560,104 +57541,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_argument] = STATE(4978), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1293), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [248] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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), @@ -56665,140 +57647,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(5787), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1295), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(1025), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [249] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(2571), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -56807,50 +57791,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1297), + [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(1277), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [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), @@ -56859,258 +57843,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [250] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(5386), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(5249), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1299), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, [251] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(5386), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(5238), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1301), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, [252] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(2571), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57119,50 +58109,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1303), + [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(1277), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [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), @@ -57171,154 +58161,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [253] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(4868), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1289), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1305), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, [254] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(2571), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57327,50 +58321,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1291), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1307), + [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(1277), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [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), @@ -57379,50 +58373,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [255] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57431,50 +58426,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1293), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1309), + [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(1279), + [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), + [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), @@ -57483,50 +58478,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [256] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57535,50 +58531,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1295), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1313), + [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(1279), + [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), + [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), @@ -57587,50 +58583,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [257] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4604), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57639,50 +58636,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1297), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1315), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [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), @@ -57691,50 +58688,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [258] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57743,50 +58741,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1299), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1319), + [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(1279), + [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), + [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), @@ -57795,50 +58793,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [259] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57847,50 +58846,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1321), + [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(1279), + [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), + [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), @@ -57899,50 +58898,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [260] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57951,50 +58951,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1323), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), + [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), @@ -58003,50 +59003,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [261] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58055,50 +59056,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1327), + [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(1279), + [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), + [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), @@ -58107,50 +59108,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [262] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58159,50 +59161,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1329), + [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(1279), + [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), + [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), @@ -58211,50 +59213,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [263] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4463), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58263,50 +59266,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), + [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(1331), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -58315,50 +59318,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [264] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58367,50 +59371,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1333), + [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(1279), + [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), + [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), @@ -58419,50 +59423,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [265] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58471,50 +59476,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1315), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1335), + [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(1279), + [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), + [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), @@ -58523,50 +59528,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [266] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4534), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58575,50 +59581,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1337), + [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(1279), + [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), + [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), @@ -58627,50 +59633,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [267] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4494), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58679,50 +59686,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1323), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1339), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1341), + [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), @@ -58731,50 +59738,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [268] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4582), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58783,50 +59791,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1343), + [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(1279), + [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), + [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), @@ -58835,50 +59843,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [269] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58887,50 +59896,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1345), + [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(1279), + [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), + [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), @@ -58939,50 +59948,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [270] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4407), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58991,50 +60001,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1347), + [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(1279), + [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), + [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), @@ -59043,50 +60053,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [271] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59095,50 +60106,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1349), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), + [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), @@ -59147,50 +60158,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [272] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59199,50 +60211,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1353), + [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(1279), + [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), + [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), @@ -59251,50 +60263,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [273] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59303,50 +60316,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1355), + [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(1279), + [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), + [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), @@ -59355,50 +60368,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [274] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4483), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59407,50 +60421,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1357), + [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(1279), + [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), + [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), @@ -59459,50 +60473,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [275] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59511,50 +60526,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1359), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [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), @@ -59563,50 +60578,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [276] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59615,50 +60631,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1361), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), + [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), @@ -59667,50 +60683,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [277] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59719,50 +60736,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1365), + [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(1279), + [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), + [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), @@ -59771,50 +60788,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [278] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59823,50 +60841,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1367), + [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(1279), + [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), + [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), @@ -59875,50 +60893,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [279] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59927,50 +60946,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1369), + [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(1279), + [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), + [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), @@ -59979,50 +60998,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [280] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60031,50 +61051,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1371), + [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(1279), + [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), + [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), @@ -60083,50 +61103,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [281] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60135,50 +61156,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1373), + [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(1279), + [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), + [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), @@ -60187,50 +61208,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [282] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60239,50 +61261,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1375), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), + [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), @@ -60291,50 +61313,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [283] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60343,50 +61366,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1379), + [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(1279), + [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), + [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), @@ -60395,50 +61418,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [284] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60447,50 +61471,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1381), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [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), @@ -60499,50 +61523,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [285] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60551,50 +61576,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1385), + [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(1279), + [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), + [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), @@ -60603,50 +61628,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [286] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60655,50 +61681,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1387), + [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(1279), + [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), + [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), @@ -60707,50 +61733,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [287] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60759,50 +61786,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1389), + [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(1279), + [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), + [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), @@ -60811,50 +61838,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [288] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60863,50 +61891,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1391), + [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(1279), + [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), + [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), @@ -60915,50 +61943,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [289] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60967,50 +61996,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1393), + [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(1279), + [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), + [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), @@ -61019,50 +62048,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [290] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61071,50 +62101,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1395), + [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(1279), + [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), + [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), @@ -61123,50 +62153,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [291] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61175,50 +62206,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1397), + [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(1279), + [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), + [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), @@ -61227,50 +62258,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [292] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61279,50 +62311,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1399), + [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(1279), + [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), + [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), @@ -61331,50 +62363,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [293] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61383,50 +62416,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1401), + [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(1279), + [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), + [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), @@ -61435,50 +62468,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [294] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61487,50 +62521,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1403), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), + [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), @@ -61539,50 +62573,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [295] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61591,50 +62626,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1407), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1409), + [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), @@ -61643,50 +62678,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [296] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61695,50 +62731,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1411), + [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(1279), + [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), + [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), @@ -61747,50 +62783,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [297] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61799,50 +62836,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1413), + [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(1279), + [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), + [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), @@ -61851,50 +62888,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [298] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61903,50 +62941,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1415), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [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), @@ -61955,50 +62993,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [299] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4771), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62007,50 +63046,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1419), + [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(1279), + [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), + [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), @@ -62059,50 +63098,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [300] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4622), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62111,50 +63151,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1421), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [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), @@ -62163,50 +63203,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [301] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4829), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62215,50 +63256,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1425), + [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(1279), + [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), + [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), @@ -62267,50 +63308,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [302] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4731), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62319,50 +63361,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1407), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1427), + [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(1279), + [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), + [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), @@ -62371,50 +63413,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [303] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4972), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62423,50 +63466,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1429), + [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(1279), + [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), + [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), @@ -62475,50 +63518,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [304] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(4763), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62527,50 +63571,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1431), + [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(1279), + [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), + [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), @@ -62579,50 +63623,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [305] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62631,50 +63676,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1433), + [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(1279), + [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), + [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), @@ -62683,50 +63728,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [306] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62735,50 +63781,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1435), + [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(1279), + [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), + [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), @@ -62787,154 +63833,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [307] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2485), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5518), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_variadic_modifier] = STATE(692), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1437), + [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(1279), + [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), + [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(1025), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1237), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [308] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62943,50 +63991,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1439), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [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), @@ -62995,154 +64043,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [309] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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_field_specifier] = STATE(5386), [sym_array] = STATE(1929), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_variadic_modifier] = STATE(631), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1423), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_DOT_DOT_DOT] = ACTIONS(993), + [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(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), }, [310] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63151,50 +64201,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1443), + [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(1279), + [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), + [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), @@ -63203,50 +64253,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [311] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63255,50 +64306,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1445), + [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(1279), + [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), + [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), @@ -63307,50 +64358,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [312] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63359,50 +64411,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1447), + [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(1279), + [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), + [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), @@ -63411,50 +64463,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [313] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2671), + [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(5386), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63463,49 +64516,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1449), + [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(1279), + [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), + [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), @@ -63514,460 +64568,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [314] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2250), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [aux_sym_list_expression_repeat1] = STATE(4570), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1451), + [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(1279), + [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), + [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(1025), + [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), }, [315] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2242), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [aux_sym_list_expression_repeat1] = STATE(4515), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1453), + [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(1279), + [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), + [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(1025), + [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), }, [316] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1439), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1455), + [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(1279), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [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(1025), + [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), }, [317] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1992), - [sym_compound_statement] = STATE(1924), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1459), + [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(1279), + [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), + [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(1025), + [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), }, [318] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2048), - [sym_compound_statement] = STATE(1924), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63976,48 +65041,50 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1461), + [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(1279), + [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), + [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), @@ -64026,117 +65093,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [319] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2415), - [sym_compound_statement] = STATE(2641), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2112), - [sym_compound_statement] = STATE(1860), + [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), @@ -64144,203 +65109,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - }, - [321] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2045), - [sym_compound_statement] = STATE(1919), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_list_expression_repeat1] = STATE(4991), [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1463), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1465), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [320] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1952), - [sym_compound_statement] = STATE(1854), + [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), @@ -64348,203 +65213,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_list_expression_repeat1] = STATE(5255), [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1467), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1469), + [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(1025), + [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(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [321] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2121), - [sym_compound_statement] = STATE(1867), + [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(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_QMARK] = ACTIONS(1279), + [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), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [322] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1964), - [sym_compound_statement] = STATE(1867), + [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), @@ -64552,917 +65422,719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [325] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [323] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1966), - [sym_compound_statement] = STATE(1887), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACK] = ACTIONS(1471), + [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(1025), + [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), }, - [326] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2356), - [sym_compound_statement] = STATE(2570), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [327] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2411), - [sym_compound_statement] = STATE(2637), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [328] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [324] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1443), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1475), + [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(1025), + [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), }, - [329] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [325] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2530), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1478), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [326] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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(4899), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1480), + [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(1025), + [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), }, - [331] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [327] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1979), - [sym_compound_statement] = STATE(1867), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_RBRACK] = ACTIONS(1482), + [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(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), }, - [332] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [328] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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(4899), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1484), + [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(1025), + [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), }, - [333] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [329] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2011), - [sym_compound_statement] = STATE(1919), + [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), @@ -65470,611 +66142,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [334] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [330] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2088), - [sym_compound_statement] = STATE(1887), + [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(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_RBRACK] = ACTIONS(1489), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2375), - [sym_compound_statement] = STATE(2559), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [331] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2009), - [sym_compound_statement] = STATE(1887), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_RBRACE] = ACTIONS(1491), + [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(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), }, - [337] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2007), - [sym_compound_statement] = STATE(1857), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACK] = ACTIONS(1495), + [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(1025), + [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), }, - [338] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [336] = { + [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(1857), + [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(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_RBRACK] = ACTIONS(1497), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [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(2084), - [sym_compound_statement] = STATE(1861), + [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), @@ -66082,203 +67070,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_LBRACE] = ACTIONS(747), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2368), - [sym_compound_statement] = STATE(2560), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [339] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2097), - [sym_compound_statement] = STATE(1854), + [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), @@ -66286,203 +67173,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_LBRACE] = ACTIONS(747), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2312), - [sym_compound_statement] = STATE(2591), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [340] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2003), - [sym_compound_statement] = STATE(1861), + [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), @@ -66490,101 +67275,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1499), + [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(1025), + [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(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [341] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2109), - [sym_compound_statement] = STATE(1924), + [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), @@ -66592,100 +67379,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [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(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [342] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2530), + [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), @@ -66693,408 +67482,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [346] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [343] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1457), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_LBRACE] = ACTIONS(747), + [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(1025), + [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), }, - [347] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2447), - [sym_compound_statement] = STATE(2682), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [344] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [345] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2060), - [sym_compound_statement] = STATE(1919), + [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), @@ -67102,305 +67791,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_LBRACE] = ACTIONS(747), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [346] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2405), - [sym_compound_statement] = STATE(2619), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [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), + [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), }, - [352] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [348] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1961), - [sym_compound_statement] = STATE(1860), + [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), @@ -67408,202 +68100,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [349] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_LBRACE] = ACTIONS(747), + [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(1025), + [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), }, - [354] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [350] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2530), + [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), @@ -67611,408 +68306,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_LBRACE] = ACTIONS(747), + [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(1025), + [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), }, - [355] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [351] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2530), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1502), + [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(1025), + [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), }, - [356] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [352] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2169), + [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_element_initializer] = STATE(4566), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1473), + [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(1025), + [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), }, - [357] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [353] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2141), + [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_element_initializer] = STATE(4517), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1473), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1504), + [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(1025), + [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), }, - [358] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [354] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1955), - [sym_compound_statement] = STATE(1854), + [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), @@ -68020,100 +68718,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [355] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2530), + [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), @@ -68121,101 +68821,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2530), + [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), @@ -68223,306 +69027,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [361] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [358] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2134), + [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(4720), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1478), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACK] = ACTIONS(1507), + [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(1025), + [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), }, - [362] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1480), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1509), + [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(1025), + [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), }, - [363] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [361] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1984), - [sym_compound_statement] = STATE(1860), + [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), @@ -68530,305 +69439,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_LBRACE] = ACTIONS(747), + [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(1025), + [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), }, - [364] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [362] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2142), + [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(4550), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1482), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1512), + [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(1025), + [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), }, - [365] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [363] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1976), - [sym_compound_statement] = STATE(1861), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_RBRACE] = ACTIONS(1514), + [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(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), }, - [366] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [364] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1965), - [sym_compound_statement] = STATE(1857), + [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), @@ -68836,34 +69748,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -68872,48 +69784,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -68921,424 +69833,428 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [365] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [366] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2153), + [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(4495), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACK] = ACTIONS(1516), + [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(1025), + [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), }, - [369] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [367] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2155), + [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_element_initializer] = STATE(4449), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1488), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [368] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2530), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1490), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1518), + [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(1025), + [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), }, - [371] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [369] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_expression_statement] = STATE(1154), + [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), @@ -69346,99 +70262,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1520), + [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(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), }, - [372] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [370] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2449), + [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), @@ -69446,403 +70366,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_LBRACE] = ACTIONS(747), + [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(1025), + [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), }, - [373] = { - [sym_qualified_identifier] = STATE(1891), - [sym_scoped_identifier] = STATE(2161), - [sym_scope_identifier] = STATE(2174), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_list_expression] = STATE(2292), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2292), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2292), - [sym_parameters] = STATE(4324), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1497), - [sym_pipe_variable] = ACTIONS(1499), - [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1503), - [sym_xhp_class_identifier] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [371] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2583), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_RBRACK] = ACTIONS(1523), + [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(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), }, - [375] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [372] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2371), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACK] = ACTIONS(1525), + [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(1025), + [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), }, - [376] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [373] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2584), + [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), @@ -69850,34 +70675,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69886,48 +70711,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -69935,217 +70760,326 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2552), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_RBRACK] = ACTIONS(1527), + [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(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), }, - [378] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [376] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2381), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1529), + [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(1025), + [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), }, - [379] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [377] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2387), + [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), @@ -70153,101 +71087,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2690), - [sym_expression_statement] = STATE(1665), + [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), @@ -70255,34 +71293,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70291,47 +71329,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -70339,217 +71378,119 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [380] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2335), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_RBRACE] = ACTIONS(1531), + [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(1025), + [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), }, - [382] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2265), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_element_initializer] = STATE(2651), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [383] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [381] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2291), + [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), @@ -70557,100 +71498,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1533), + [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(1025), + [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), }, - [384] = { - [sym_qualified_identifier] = STATE(1930), - [sym_scoped_identifier] = STATE(2177), - [sym_scope_identifier] = STATE(2171), + [382] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -70658,100 +71600,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2454), - [sym_subscript_expression] = STATE(2454), - [sym_list_expression] = STATE(2454), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2454), + [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(2454), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1523), - [sym_pipe_variable] = ACTIONS(1525), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1535), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1529), - [sym_xhp_class_identifier] = ACTIONS(1525), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [383] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2421), + [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), @@ -70759,100 +71702,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1537), + [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(1025), + [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), }, - [386] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [384] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2307), + [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), @@ -70860,100 +71804,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1539), + [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(1025), + [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), }, - [387] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [385] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2445), + [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), @@ -70961,100 +71906,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1541), + [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(1025), + [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), }, - [388] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [386] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2205), + [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), @@ -71062,100 +72008,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1543), + [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(1025), + [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), }, - [389] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [387] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2434), + [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), @@ -71163,100 +72110,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1545), + [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(1025), + [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), }, - [390] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [388] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2430), + [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), @@ -71264,100 +72212,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1547), + [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(1025), + [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), }, - [391] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [389] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2646), + [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), @@ -71365,100 +72314,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1549), + [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(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), }, - [392] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [390] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2648), + [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), @@ -71466,101 +72416,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1551), + [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(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), }, - [393] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [391] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_expression_statement] = STATE(1684), + [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), @@ -71568,99 +72518,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1553), + [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(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), }, - [394] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [392] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2248), + [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), @@ -71668,100 +72620,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1555), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [393] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2251), + [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), @@ -71769,100 +72722,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1551), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1557), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [394] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2425), + [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), @@ -71870,100 +72824,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1559), + [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(1025), + [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), }, - [397] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [395] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2215), + [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), @@ -71971,100 +72926,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1555), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_DOT_DOT_DOT] = ACTIONS(1561), + [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(1025), + [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), }, - [398] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [396] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2218), + [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), @@ -72072,100 +73028,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1563), + [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(1025), + [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(1885), - [sym_scoped_identifier] = STATE(2130), - [sym_scope_identifier] = STATE(2138), + [397] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -72173,100 +73130,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2332), - [sym_subscript_expression] = STATE(2332), - [sym_list_expression] = STATE(2332), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2332), + [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(2332), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1559), - [sym_pipe_variable] = ACTIONS(1561), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1565), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1565), - [sym_xhp_class_identifier] = ACTIONS(1561), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [398] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2200), + [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), @@ -72274,100 +73233,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [401] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [399] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2317), + [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), @@ -72375,100 +73335,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1569), + [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(1025), + [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), }, - [402] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [400] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2363), + [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), @@ -72476,101 +73436,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1571), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [401] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2595), - [sym_expression_statement] = STATE(1060), + [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), @@ -72578,34 +73538,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -72614,47 +73574,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_RBRACK] = ACTIONS(1573), + [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), @@ -72662,15 +73623,17 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [402] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2439), + [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), @@ -72678,100 +73641,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1575), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [403] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2337), + [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), @@ -72779,100 +73742,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), + [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(1577), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [406] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [404] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2290), + [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), @@ -72880,100 +73844,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1579), + [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(1025), + [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), }, - [407] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [405] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2326), + [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), @@ -72981,100 +73946,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1581), + [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(1025), + [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), }, - [408] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [406] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2565), + [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), @@ -73082,100 +74048,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1583), + [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(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), }, - [409] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [407] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2563), + [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), @@ -73183,34 +74150,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -73219,48 +74186,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), + [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(1585), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -73268,15 +74235,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [408] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2557), + [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), @@ -73284,100 +74252,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), + [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_SEMI] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [411] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [409] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2313), + [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), @@ -73385,100 +74354,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1589), + [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(1025), + [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(1858), - [sym_scoped_identifier] = STATE(2124), - [sym_scope_identifier] = STATE(2181), + [410] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -73486,100 +74456,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2204), - [sym_subscript_expression] = STATE(2204), - [sym_list_expression] = STATE(2204), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2204), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2204), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1591), - [sym_pipe_variable] = ACTIONS(1593), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1591), + [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(1597), - [sym_xhp_class_identifier] = ACTIONS(1593), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [411] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2218), + [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), @@ -73587,100 +74558,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1593), + [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(1025), + [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), }, - [414] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [412] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2406), + [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), @@ -73688,100 +74660,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1595), + [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(1025), + [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), }, - [415] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [413] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2397), + [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), @@ -73789,100 +74762,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1597), + [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(1025), + [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), }, - [416] = { - [sym_qualified_identifier] = STATE(1938), - [sym_scoped_identifier] = STATE(2160), - [sym_scope_identifier] = STATE(2123), + [414] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -73890,100 +74864,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_list_expression] = STATE(2355), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2355), + [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(2355), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1605), - [sym_pipe_variable] = ACTIONS(1607), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1599), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1611), - [sym_xhp_class_identifier] = ACTIONS(1607), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [415] = { + [sym_qualified_identifier] = STATE(1921), + [sym_scoped_identifier] = STATE(2236), + [sym_scope_identifier] = STATE(2173), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2245), + [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), @@ -73991,100 +74966,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2295), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1601), + [sym_pipe_variable] = ACTIONS(1603), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1605), + [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(1025), + [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(1607), + [sym_xhp_class_identifier] = ACTIONS(1603), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [416] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2668), + [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), @@ -74092,100 +75068,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(1615), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1609), + [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(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), }, - [419] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [417] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2427), + [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), @@ -74193,100 +75170,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1611), + [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(1025), + [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), }, - [420] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [418] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2286), + [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), @@ -74294,100 +75272,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1613), + [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(1025), + [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), }, - [421] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [419] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2186), + [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), @@ -74395,101 +75374,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1615), + [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(1025), + [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), }, - [422] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [420] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2670), - [sym_expression_statement] = STATE(983), + [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), @@ -74497,99 +75476,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1617), + [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(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), }, - [423] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [421] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2453), + [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), @@ -74597,100 +75578,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1625), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1619), + [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(1025), + [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), }, - [424] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [422] = { + [sym_qualified_identifier] = STATE(1971), + [sym_scoped_identifier] = STATE(2211), + [sym_scope_identifier] = STATE(2206), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2366), + [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), @@ -74698,100 +75680,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2392), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1621), + [sym_pipe_variable] = ACTIONS(1623), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1627), + [sym_xhp_class_identifier] = ACTIONS(1623), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [423] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2419), + [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), @@ -74799,100 +75782,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), + [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(1629), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [424] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2233), + [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), @@ -74900,100 +75884,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1631), + [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(1025), + [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), }, - [427] = { - [sym_qualified_identifier] = STATE(1927), - [sym_scoped_identifier] = STATE(2135), - [sym_scope_identifier] = STATE(2137), + [425] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -75001,100 +75986,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2338), - [sym_subscript_expression] = STATE(2338), - [sym_list_expression] = STATE(2338), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2338), + [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(2338), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1633), - [sym_pipe_variable] = ACTIONS(1635), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1639), - [sym_xhp_class_identifier] = ACTIONS(1635), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [426] = { + [sym_qualified_identifier] = STATE(1932), + [sym_scoped_identifier] = STATE(2234), + [sym_scope_identifier] = STATE(2235), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2267), + [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), @@ -75102,100 +76088,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2242), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1635), + [sym_pipe_variable] = ACTIONS(1637), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1639), + [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(1025), + [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(1641), + [sym_xhp_class_identifier] = ACTIONS(1637), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [427] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2310), + [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), @@ -75203,100 +76190,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), + [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(1643), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [430] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [428] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2232), + [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), @@ -75304,100 +76292,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), + [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(1645), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [431] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [429] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2385), + [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), @@ -75405,101 +76394,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), + [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(1647), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [430] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2711), - [sym_expression_statement] = STATE(4878), + [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), @@ -75507,100 +76496,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1649), + [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(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), }, - [433] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [431] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2712), - [sym_expression_statement] = STATE(723), + [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), @@ -75608,34 +76598,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75644,47 +76634,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1651), + [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), @@ -75692,15 +76683,118 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2342), + [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), @@ -75708,100 +76802,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1653), + [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(1025), + [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), }, - [435] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [434] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2431), + [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), @@ -75809,302 +76904,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1655), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [435] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), - [sym_expression_statement] = STATE(1409), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [437] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [436] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2065), + [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_element_initializer] = STATE(1874), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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_SEMI] = ACTIONS(1657), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [437] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2693), + [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), @@ -76112,34 +77211,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76148,48 +77247,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1659), + [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), @@ -76197,16 +77295,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [438] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2712), - [sym_expression_statement] = STATE(842), + [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), @@ -76214,34 +77312,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76250,47 +77348,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_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_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -76298,15 +77397,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [439] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2218), + [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), @@ -76314,100 +77414,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1663), + [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(1025), + [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), }, - [441] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [440] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2705), + [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), @@ -76415,34 +77516,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76451,48 +77552,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), + [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(1665), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -76500,15 +77601,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [441] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2339), + [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), @@ -76516,100 +77618,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1667), + [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(1025), + [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), }, - [443] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [442] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2706), + [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), @@ -76617,34 +77720,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76653,48 +77756,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), + [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(1669), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -76702,15 +77805,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [443] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2709), + [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), @@ -76718,100 +77822,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1671), + [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(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), }, - [445] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [444] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2688), + [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), @@ -76819,34 +77924,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76855,48 +77960,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), + [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(1673), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -76904,15 +78009,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [445] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2687), + [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), @@ -76920,101 +78026,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1675), + [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(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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [446] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2700), - [sym_expression_statement] = STATE(1217), + [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), @@ -77022,34 +78129,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77058,47 +78165,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), + [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(1677), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -77106,15 +78213,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [447] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2236), + [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), @@ -77122,101 +78230,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1679), + [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(1025), + [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), }, - [449] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [448] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2711), - [sym_expression_statement] = STATE(4925), + [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), @@ -77224,34 +78332,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77260,47 +78368,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1681), + [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), @@ -77308,15 +78417,17 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [449] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2283), + [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), @@ -77324,201 +78435,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [451] = { - [sym_qualified_identifier] = STATE(1880), - [sym_scoped_identifier] = STATE(2126), - [sym_scope_identifier] = STATE(2129), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2207), - [sym_subscript_expression] = STATE(2207), - [sym_list_expression] = STATE(2207), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2207), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2207), - [sym_parameters] = STATE(4324), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1685), - [sym_pipe_variable] = ACTIONS(1687), - [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1683), + [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(1691), - [sym_xhp_class_identifier] = ACTIONS(1687), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [450] = { + [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] = 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), @@ -77526,100 +78536,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1685), + [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(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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [451] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2288), + [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), @@ -77627,100 +78638,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1687), + [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(1025), + [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), }, + [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), + [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(1689), + [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), + }, + [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), + [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_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1691), + [sym_pipe_variable] = ACTIONS(1693), + [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(1695), + [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(1697), + [sym_xhp_class_identifier] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + }, [454] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2234), + [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), @@ -77728,100 +78944,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1699), + [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(1025), + [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), }, [455] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2448), + [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), @@ -77829,100 +79046,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1701), + [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(1025), + [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), }, [456] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2443), + [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), @@ -77930,100 +79148,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1703), + [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(1025), + [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), }, [457] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2429), + [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), @@ -78031,302 +79251,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1705), + [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(1025), + [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), }, [458] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), + [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_element_initializer] = STATE(4899), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1707), + [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(1025), + [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), }, [459] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2422), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, [460] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2396), + [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), @@ -78334,100 +79556,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1709), + [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(1025), + [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), }, [461] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2714), + [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), @@ -78435,201 +79658,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1711), + [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(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), }, [462] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2025), + [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_element_initializer] = STATE(1874), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1960), + [sym_scoped_identifier] = STATE(2198), + [sym_scope_identifier] = STATE(2205), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2707), + [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), @@ -78637,101 +79862,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2421), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1719), + [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_xhp_identifier] = ACTIONS(1721), + [sym_xhp_class_identifier] = ACTIONS(1717), [sym_comment] = ACTIONS(3), }, [464] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2700), - [sym_expression_statement] = STATE(1181), + [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), @@ -78739,34 +79965,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -78775,47 +80001,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1723), + [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), @@ -78824,14 +80050,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [465] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2244), + [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), @@ -78839,100 +80067,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1725), + [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(1025), + [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), }, [466] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2346), + [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), @@ -78940,100 +80168,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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), + [anon_sym_using] = ACTIONS(1727), + [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(1025), + [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), }, [467] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2274), + [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), @@ -79041,100 +80270,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1729), + [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(1025), + [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), }, [468] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2196), + [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), @@ -79142,100 +80372,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1731), + [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(1025), + [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), }, [469] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2201), + [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), @@ -79243,100 +80474,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1733), + [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(1025), + [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), }, [470] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1943), + [sym_scoped_identifier] = STATE(2208), + [sym_scope_identifier] = STATE(2197), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2394), + [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), @@ -79344,100 +80576,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2331), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1735), + [sym_pipe_variable] = ACTIONS(1737), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1739), + [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(1025), + [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(1741), + [sym_xhp_class_identifier] = ACTIONS(1737), [sym_comment] = ACTIONS(3), }, [471] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2361), + [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), @@ -79445,201 +80678,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1743), + [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(1025), + [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), }, [472] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1986), + [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_element_initializer] = STATE(1874), [sym_tuple] = STATE(1929), [sym_shape] = STATE(1929), [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1745), + [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(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), }, [473] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1969), + [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), @@ -79647,100 +80882,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [anon_sym_using] = ACTIONS(1729), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1747), + [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(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), }, [474] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2277), + [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), @@ -79748,100 +80985,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1749), + [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(1025), + [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), }, [475] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2241), + [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), @@ -79849,100 +81086,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1751), + [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(1025), + [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), }, [476] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2273), + [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), @@ -79950,100 +81188,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1753), + [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(1025), + [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), }, [477] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2272), + [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), @@ -80051,100 +81290,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1755), + [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(1025), + [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), }, [478] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2235), + [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), @@ -80152,100 +81393,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2412), + [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), @@ -80253,101 +81494,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1759), + [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(1025), + [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), }, [480] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), - [sym_expression_statement] = STATE(1713), + [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), @@ -80355,99 +81596,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1761), + [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(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), }, [481] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2410), + [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), @@ -80455,100 +81698,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1763), + [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(1025), + [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), }, [482] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2331), + [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), @@ -80556,100 +81801,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1765), + [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(1025), + [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), }, [483] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2183), + [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), @@ -80657,100 +81902,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2260), + [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), @@ -80758,100 +82004,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2220), + [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), @@ -80859,100 +82106,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1771), + [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(1025), + [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), }, [486] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2227), + [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), @@ -80960,100 +82208,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1773), + [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(1025), + [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), }, [487] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2353), + [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), @@ -81061,100 +82310,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2237), + [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), @@ -81162,100 +82412,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2601), + [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), @@ -81263,100 +82514,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1779), + [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(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), }, [490] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2218), + [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), @@ -81364,100 +82616,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1781), + [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(1025), + [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), }, [491] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2657), + [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), @@ -81465,100 +82718,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1783), + [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(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), }, [492] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2676), + [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), @@ -81566,101 +82820,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1785), + [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(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), }, [493] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2670), - [sym_expression_statement] = STATE(956), + [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), @@ -81668,34 +82922,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81704,47 +82958,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1787), + [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), @@ -81753,14 +83008,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [494] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2689), + [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), @@ -81768,34 +83024,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81804,48 +83060,48 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1789), + [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), @@ -81854,14 +83110,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [495] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2214), + [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), @@ -81869,100 +83126,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1791), + [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(1025), + [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), }, [496] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2254), + [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), @@ -81970,201 +83228,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1793), + [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(1025), + [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), }, [497] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2691), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, [498] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2221), + [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), @@ -82172,100 +83432,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1795), + [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(1025), + [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), }, [499] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2702), + [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), @@ -82273,100 +83534,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1797), + [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(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), }, [500] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2509), + [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), @@ -82374,199 +83636,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1799), + [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(1025), + [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), }, [501] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2390), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [502] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2040), + [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), @@ -82574,199 +83738,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1801), + [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(1025), + [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), }, - [503] = { - [sym_qualified_identifier] = STATE(2062), - [sym_scoped_identifier] = STATE(2458), - [sym_scope_identifier] = STATE(2184), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2496), - [sym_subscript_expression] = STATE(2496), - [sym_list_expression] = STATE(2496), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2496), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2496), - [sym_parameters] = STATE(4324), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(925), - [sym_pipe_variable] = ACTIONS(927), - [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(939), - [sym_xhp_class_identifier] = ACTIONS(927), - [sym_comment] = ACTIONS(3), - }, - [504] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [502] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1971), + [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), @@ -82774,99 +83840,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1803), + [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(1025), + [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), }, - [505] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [503] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1953), + [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), @@ -82874,99 +83942,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1805), + [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(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), }, - [506] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [504] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2603), + [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), @@ -82974,199 +84044,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1807), + [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(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), }, - [507] = { - [sym_qualified_identifier] = STATE(2036), - [sym_scoped_identifier] = STATE(2191), - [sym_scope_identifier] = STATE(2187), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2459), - [sym_subscript_expression] = STATE(2459), - [sym_list_expression] = STATE(2459), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2459), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2459), - [sym_parameters] = STATE(4324), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1783), - [sym_pipe_variable] = ACTIONS(1785), - [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1787), - [sym_xhp_class_identifier] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - }, - [508] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [505] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2586), + [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), @@ -83174,99 +84146,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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_SEMI] = ACTIONS(1809), + [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(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), }, - [509] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [506] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1974), + [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), @@ -83274,99 +84248,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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_SEMI] = ACTIONS(1811), + [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(1025), + [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), }, - [510] = { - [sym_qualified_identifier] = STATE(1968), - [sym_scoped_identifier] = STATE(2438), - [sym_scope_identifier] = STATE(2436), + [507] = { + [sym_qualified_identifier] = STATE(1898), + [sym_scoped_identifier] = STATE(2232), + [sym_scope_identifier] = STATE(2239), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -83374,199 +84350,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2471), - [sym_subscript_expression] = STATE(2471), - [sym_list_expression] = STATE(2471), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2471), + [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(2471), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2285), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1789), - [sym_pipe_variable] = ACTIONS(1791), + [sym_variable] = ACTIONS(1813), + [sym_pipe_variable] = ACTIONS(1815), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1817), + [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(1793), - [sym_xhp_class_identifier] = ACTIONS(1791), + [sym_xhp_identifier] = ACTIONS(1819), + [sym_xhp_class_identifier] = ACTIONS(1815), [sym_comment] = ACTIONS(3), }, - [511] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [508] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1977), + [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(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [512] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [509] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2678), + [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), @@ -83574,199 +84554,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1821), + [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(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), }, - [513] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1985), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [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_comment] = ACTIONS(3), }, - [514] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [511] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1987), + [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), @@ -83774,99 +84757,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [512] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2010), + [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), @@ -83874,199 +84858,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [516] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2026), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [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_comment] = ACTIONS(3), }, - [517] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [514] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2029), + [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), @@ -84074,199 +85060,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2334), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [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(999), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [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_comment] = ACTIONS(3), }, - [519] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [516] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2044), + [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), @@ -84274,99 +85262,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [520] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [517] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2498), + [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), @@ -84374,99 +85363,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [521] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [518] = { + [sym_qualified_identifier] = STATE(2040), + [sym_scoped_identifier] = STATE(2452), + [sym_scope_identifier] = STATE(2445), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2039), + [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), @@ -84474,99 +85464,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2564), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [519] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1951), + [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), @@ -84574,99 +85565,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [523] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [520] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1959), + [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), @@ -84674,34 +85666,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -84710,47 +85702,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -84758,15 +85750,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [524] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [521] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2046), + [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), @@ -84774,99 +85767,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [522] = { + [sym_qualified_identifier] = STATE(2145), + [sym_scoped_identifier] = STATE(2532), + [sym_scope_identifier] = STATE(2459), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2511), + [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), @@ -84874,99 +85868,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2530), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(953), + [sym_pipe_variable] = ACTIONS(955), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(957), + [sym_xhp_class_identifier] = ACTIONS(955), [sym_comment] = ACTIONS(3), }, - [526] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [523] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2030), + [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), @@ -84974,99 +85969,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [527] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [524] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2018), + [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), @@ -85074,99 +86070,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [528] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [525] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2004), + [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), @@ -85174,99 +86171,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [529] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [526] = { + [sym_qualified_identifier] = STATE(2034), + [sym_scoped_identifier] = STATE(2386), + [sym_scope_identifier] = STATE(2298), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1956), + [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), @@ -85274,34 +86272,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2556), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [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_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(1833), + [sym_xhp_class_identifier] = ACTIONS(1831), + [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), + [sym__single_parameter_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), @@ -85310,47 +86409,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -85358,15 +86457,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [530] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [528] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1997), + [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), @@ -85374,99 +86474,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [531] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(1990), + [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), @@ -85474,99 +86676,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, + [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__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), + }, [532] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(2073), + [sym_scoped_identifier] = STATE(2367), + [sym_scope_identifier] = STATE(2375), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2652), + [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), @@ -85574,99 +86878,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2549), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1839), + [sym_xhp_class_identifier] = ACTIONS(1837), [sym_comment] = ACTIONS(3), }, [533] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(2003), + [sym_scoped_identifier] = STATE(2510), + [sym_scope_identifier] = STATE(2516), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1989), + [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), @@ -85674,99 +86979,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2599), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1845), + [sym_xhp_class_identifier] = ACTIONS(1843), [sym_comment] = ACTIONS(3), }, [534] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2017), + [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), @@ -85774,34 +87080,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -85810,47 +87116,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -85859,114 +87165,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [535] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2305), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [536] = { - [sym_qualified_identifier] = STATE(1993), - [sym_scoped_identifier] = STATE(2400), - [sym_scope_identifier] = STATE(2409), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -85974,199 +87181,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2524), - [sym_subscript_expression] = STATE(2524), - [sym_list_expression] = STATE(2524), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2524), + [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(2524), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1795), - [sym_pipe_variable] = ACTIONS(1797), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1799), - [sym_xhp_class_identifier] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - }, - [537] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2243), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [536] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1969), + [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), @@ -86174,99 +87282,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [539] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [537] = { + [sym_qualified_identifier] = STATE(2100), + [sym_scoped_identifier] = STATE(2590), + [sym_scope_identifier] = STATE(2570), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2059), + [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), @@ -86274,99 +87383,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2657), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2657), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1847), + [sym_pipe_variable] = ACTIONS(1849), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1851), + [sym_xhp_class_identifier] = ACTIONS(1849), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [538] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2103), + [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), @@ -86374,99 +87484,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [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), + [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), + }, + [540] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2104), + [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), @@ -86474,99 +87686,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [541] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2061), + [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), @@ -86574,99 +87787,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [542] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2086), + [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), @@ -86674,99 +87888,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [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(1981), - [sym_scoped_identifier] = STATE(2266), - [sym_scope_identifier] = STATE(2264), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -86774,99 +88090,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2486), - [sym_subscript_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2486), + [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(2486), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1801), - [sym_pipe_variable] = ACTIONS(1803), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1805), - [sym_xhp_class_identifier] = ACTIONS(1803), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [545] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2541), + [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), @@ -86874,99 +88191,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, [546] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2542), + [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), @@ -86974,99 +88292,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, [547] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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), + [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), + }, + [548] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2258), + [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), @@ -87074,99 +88494,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [549] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2640), + [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), @@ -87174,34 +88595,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -87210,47 +88631,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -87258,15 +88679,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [550] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2115), + [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), @@ -87274,99 +88696,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_qualified_identifier] = STATE(2083), - [sym_scoped_identifier] = STATE(2495), - [sym_scope_identifier] = STATE(2418), + [551] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -87374,99 +88797,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2500), - [sym_subscript_expression] = STATE(2500), - [sym_list_expression] = STATE(2500), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2500), + [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(2500), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1807), - [sym_pipe_variable] = ACTIONS(1809), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1811), - [sym_xhp_class_identifier] = ACTIONS(1809), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [552] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1975), + [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), @@ -87474,34 +88898,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -87510,47 +88934,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -87558,15 +88982,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [553] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2077), + [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), @@ -87574,99 +88999,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [554] = { + [sym_qualified_identifier] = STATE(2167), + [sym_scoped_identifier] = STATE(2527), + [sym_scope_identifier] = STATE(2528), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2684), + [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), @@ -87674,299 +89100,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2614), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [554] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2318), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(1857), + [sym_xhp_class_identifier] = ACTIONS(1855), [sym_comment] = ACTIONS(3), }, [555] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2224), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [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__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), }, [556] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), + [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), @@ -87974,99 +89302,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, [557] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(2157), + [sym_scoped_identifier] = STATE(2534), + [sym_scope_identifier] = STATE(2535), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2666), + [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), @@ -88074,99 +89403,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2683), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1863), + [sym_xhp_class_identifier] = ACTIONS(1861), [sym_comment] = ACTIONS(3), }, [558] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(2164), + [sym_scoped_identifier] = STATE(2548), + [sym_scope_identifier] = STATE(2540), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2041), + [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), @@ -88174,99 +89504,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2756), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1869), + [sym_xhp_class_identifier] = ACTIONS(1867), [sym_comment] = ACTIONS(3), }, [559] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2032), + [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), @@ -88274,99 +89605,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, [560] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2028), + [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), @@ -88374,99 +89706,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, [561] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2024), + [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), @@ -88474,34 +89807,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -88510,47 +89843,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -88559,14 +89892,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [562] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2022), + [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), @@ -88574,99 +89908,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, [563] = { - [sym_qualified_identifier] = STATE(2054), - [sym_scoped_identifier] = STATE(2543), - [sym_scope_identifier] = STATE(2539), + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -88674,99 +90009,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2558), - [sym_subscript_expression] = STATE(2558), - [sym_list_expression] = STATE(2558), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2558), + [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(2558), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1813), - [sym_pipe_variable] = ACTIONS(1815), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1817), - [sym_xhp_class_identifier] = ACTIONS(1815), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, [564] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2021), + [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), @@ -88774,99 +90110,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(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), + }, + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1875), + [sym_xhp_class_identifier] = ACTIONS(1873), [sym_comment] = ACTIONS(3), }, - [565] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [566] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2497), + [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), @@ -88874,99 +90312,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [566] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [567] = { + [sym_qualified_identifier] = STATE(2139), + [sym_scoped_identifier] = STATE(2594), + [sym_scope_identifier] = STATE(2592), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2016), + [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), @@ -88974,99 +90413,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2612), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2612), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1881), + [sym_xhp_class_identifier] = ACTIONS(1879), [sym_comment] = ACTIONS(3), }, - [567] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [568] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2014), + [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), @@ -89074,34 +90514,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -89110,47 +90550,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -89158,15 +90598,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [568] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [569] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2013), + [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), @@ -89174,83 +90615,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2668), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), + [sym_variable] = ACTIONS(1883), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -89258,15 +90699,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [570] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2012), + [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), @@ -89274,99 +90716,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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), + }, + [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), + [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_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1885), + [sym_pipe_variable] = ACTIONS(1887), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1889), + [sym_xhp_class_identifier] = ACTIONS(1887), + [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), + [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), }, - [570] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [573] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1999), + [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), @@ -89374,34 +91019,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -89410,47 +91055,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -89458,15 +91103,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [574] = { + [sym_qualified_identifier] = STATE(2028), + [sym_scoped_identifier] = STATE(2468), + [sym_scope_identifier] = STATE(2465), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2620), + [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), @@ -89474,99 +91120,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2537), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2537), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1891), + [sym_pipe_variable] = ACTIONS(1893), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1895), + [sym_xhp_class_identifier] = ACTIONS(1893), [sym_comment] = ACTIONS(3), }, - [572] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [575] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2008), + [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), @@ -89574,99 +91221,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [573] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [576] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2006), + [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), @@ -89674,99 +91322,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(2047), - [sym_scoped_identifier] = STATE(2408), - [sym_scope_identifier] = STATE(2407), + [577] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -89774,99 +91423,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2505), - [sym_subscript_expression] = STATE(2505), - [sym_list_expression] = STATE(2505), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2505), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2505), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1819), - [sym_pipe_variable] = ACTIONS(1821), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1823), - [sym_xhp_class_identifier] = ACTIONS(1821), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [575] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [578] = { + [sym_qualified_identifier] = STATE(2048), + [sym_scoped_identifier] = STATE(2434), + [sym_scope_identifier] = STATE(2426), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2473), + [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), @@ -89874,99 +91524,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2541), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2541), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1897), + [sym_pipe_variable] = ACTIONS(1899), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1901), + [sym_xhp_class_identifier] = ACTIONS(1899), [sym_comment] = ACTIONS(3), }, - [576] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [579] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2001), + [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), @@ -89974,34 +91625,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -90010,47 +91661,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -90058,115 +91709,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [577] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2222), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [578] = { - [sym_qualified_identifier] = STATE(2098), - [sym_scoped_identifier] = STATE(2527), - [sym_scope_identifier] = STATE(2529), + [580] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -90174,99 +91726,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2609), + [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(2609), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1825), - [sym_pipe_variable] = ACTIONS(1827), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1829), - [sym_xhp_class_identifier] = ACTIONS(1827), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [579] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [581] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2625), + [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), @@ -90274,199 +91827,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2226), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [581] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [582] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1980), + [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), @@ -90474,499 +91928,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [582] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2240), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, [583] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2246), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [584] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2257), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [585] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2261), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [586] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2537), + [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), @@ -90974,99 +92029,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [587] = { - [sym_qualified_identifier] = STATE(2081), - [sym_scoped_identifier] = STATE(2519), - [sym_scope_identifier] = STATE(2517), + [584] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -91074,799 +92130,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2611), - [sym_subscript_expression] = STATE(2611), - [sym_list_expression] = STATE(2611), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2611), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2611), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1831), - [sym_pipe_variable] = ACTIONS(1833), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1835), - [sym_xhp_class_identifier] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - }, - [588] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2262), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [589] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2238), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [590] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2351), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [591] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2354), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [592] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2362), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [593] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2367), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [594] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2369), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [595] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [585] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2686), + [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), @@ -91874,34 +92231,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -91910,47 +92267,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -91958,15 +92315,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [596] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [586] = { + [sym_qualified_identifier] = STATE(2009), + [sym_scoped_identifier] = STATE(2501), + [sym_scope_identifier] = STATE(2491), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1995), + [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), @@ -91974,299 +92332,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2533), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2533), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1903), + [sym_pipe_variable] = ACTIONS(1905), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [597] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2370), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [598] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2372), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(1907), + [sym_xhp_class_identifier] = ACTIONS(1905), [sym_comment] = ACTIONS(3), }, - [599] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [587] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2212), + [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), @@ -92274,199 +92433,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [600] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2376), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [601] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [588] = { + [sym_qualified_identifier] = STATE(2041), + [sym_scoped_identifier] = STATE(2440), + [sym_scope_identifier] = STATE(2443), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2654), + [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), @@ -92474,599 +92534,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2581), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1909), + [sym_pipe_variable] = ACTIONS(1911), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [602] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2377), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [603] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2378), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [604] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2383), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [605] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2386), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [606] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2388), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(1913), + [sym_xhp_class_identifier] = ACTIONS(1911), [sym_comment] = ACTIONS(3), }, - [607] = { - [sym_qualified_identifier] = STATE(2037), - [sym_scoped_identifier] = STATE(2285), - [sym_scope_identifier] = STATE(2276), + [589] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -93074,299 +92635,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2507), - [sym_subscript_expression] = STATE(2507), - [sym_list_expression] = STATE(2507), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2507), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2507), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1837), - [sym_pipe_variable] = ACTIONS(1839), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1841), - [sym_xhp_class_identifier] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - }, - [608] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2393), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [609] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2414), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [610] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [590] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2692), + [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), @@ -93374,34 +92736,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -93410,47 +92772,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -93458,315 +92820,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [611] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2441), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [612] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2199), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [613] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2416), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [614] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [591] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2669), + [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), @@ -93774,99 +92837,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [615] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [592] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2069), + [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), @@ -93874,99 +92938,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [616] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [593] = { + [sym_qualified_identifier] = STATE(2154), + [sym_scoped_identifier] = STATE(2558), + [sym_scope_identifier] = STATE(2559), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2049), + [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), @@ -93974,99 +93039,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2710), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2710), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1915), + [sym_pipe_variable] = ACTIONS(1917), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1919), + [sym_xhp_class_identifier] = ACTIONS(1917), [sym_comment] = ACTIONS(3), }, - [617] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [594] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2064), + [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), @@ -94074,99 +93140,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [618] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [595] = { + [sym_qualified_identifier] = STATE(2158), + [sym_scoped_identifier] = STATE(2562), + [sym_scope_identifier] = STATE(2563), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2056), + [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), @@ -94174,99 +93241,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2701), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2701), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1921), + [sym_pipe_variable] = ACTIONS(1923), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1925), + [sym_xhp_class_identifier] = ACTIONS(1923), [sym_comment] = ACTIONS(3), }, - [619] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [596] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2055), + [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), @@ -94274,99 +93342,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [620] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [597] = { + [sym_qualified_identifier] = STATE(2059), + [sym_scoped_identifier] = STATE(2325), + [sym_scope_identifier] = STATE(2245), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2117), + [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), @@ -94374,99 +93443,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2567), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2567), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1927), + [sym_pipe_variable] = ACTIONS(1929), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1931), + [sym_xhp_class_identifier] = ACTIONS(1929), [sym_comment] = ACTIONS(3), }, - [621] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [598] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2071), + [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), @@ -94474,99 +93544,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [622] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [599] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2073), + [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), @@ -94574,99 +93645,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [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(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [623] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [600] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2080), + [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), @@ -94674,99 +93746,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [624] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [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(2114), + [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), @@ -94774,99 +93948,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2578), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1933), + [sym_pipe_variable] = ACTIONS(1935), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1937), + [sym_xhp_class_identifier] = ACTIONS(1935), [sym_comment] = ACTIONS(3), }, - [625] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [603] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2050), + [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), @@ -94874,99 +94049,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [626] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [604] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2132), + [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), @@ -94974,99 +94150,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [627] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [605] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2659), + [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), @@ -95074,99 +94251,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [628] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [606] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2122), + [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), @@ -95174,99 +94352,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [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(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [629] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [607] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2096), + [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), @@ -95274,99 +94453,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [630] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [608] = { + [sym_qualified_identifier] = STATE(2074), + [sym_scoped_identifier] = STATE(2366), + [sym_scope_identifier] = STATE(2371), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2068), + [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), @@ -95374,99 +94554,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2609), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1939), + [sym_pipe_variable] = ACTIONS(1941), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1943), + [sym_xhp_class_identifier] = ACTIONS(1941), [sym_comment] = ACTIONS(3), }, - [631] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [609] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2120), + [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), @@ -95474,99 +94655,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [632] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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), + [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), + }, + [612] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2604), + [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), @@ -95574,34 +94958,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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), + }, + [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), + [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), + }, + [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), + [sym__single_parameter_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), @@ -95610,47 +95196,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -95658,15 +95244,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [633] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [615] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -95674,83 +95261,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(2680), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2680), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2680), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1843), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -95758,15 +95345,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [634] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [616] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2074), + [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), @@ -95774,99 +95362,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [635] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [617] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2218), + [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), @@ -95874,99 +95463,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [636] = { - [sym_qualified_identifier] = STATE(2091), - [sym_scoped_identifier] = STATE(2478), - [sym_scope_identifier] = STATE(2468), + [618] = { + [sym_qualified_identifier] = STATE(2066), + [sym_scoped_identifier] = STATE(2259), + [sym_scope_identifier] = STATE(2270), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -95974,199 +95564,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2667), - [sym_subscript_expression] = STATE(2667), - [sym_list_expression] = STATE(2667), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2667), + [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(2667), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2552), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1845), - [sym_pipe_variable] = ACTIONS(1847), + [sym_variable] = ACTIONS(1945), + [sym_pipe_variable] = ACTIONS(1947), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1849), - [sym_xhp_class_identifier] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - }, - [637] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2275), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), + [sym_xhp_identifier] = ACTIONS(1949), + [sym_xhp_class_identifier] = ACTIONS(1947), [sym_comment] = ACTIONS(3), }, - [638] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [619] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2105), + [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), @@ -96174,99 +95665,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [639] = { - [sym_qualified_identifier] = STATE(2043), - [sym_scoped_identifier] = STATE(2231), - [sym_scope_identifier] = STATE(2328), + [620] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -96274,99 +95766,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2469), - [sym_subscript_expression] = STATE(2469), - [sym_list_expression] = STATE(2469), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2469), + [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(2469), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1851), - [sym_pipe_variable] = ACTIONS(1853), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1855), - [sym_xhp_class_identifier] = ACTIONS(1853), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [640] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [621] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2118), + [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), @@ -96374,99 +95867,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2107), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [641] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [622] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2474), + [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), @@ -96474,99 +95968,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [642] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [623] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2515), + [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), @@ -96574,99 +96069,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [643] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [624] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2000), + [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), @@ -96674,34 +96170,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -96710,47 +96206,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -96758,15 +96254,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [644] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [625] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2456), + [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), @@ -96774,99 +96271,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [645] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [626] = { + [sym_qualified_identifier] = STATE(2137), + [sym_scoped_identifier] = STATE(2597), + [sym_scope_identifier] = STATE(2611), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2457), + [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), @@ -96874,99 +96372,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2625), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1951), + [sym_pipe_variable] = ACTIONS(1953), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1955), + [sym_xhp_class_identifier] = ACTIONS(1953), [sym_comment] = ACTIONS(3), }, - [646] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [627] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2023), + [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), @@ -96974,99 +96473,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [647] = { - [sym_qualified_identifier] = STATE(1967), - [sym_scoped_identifier] = STATE(2392), - [sym_scope_identifier] = STATE(2420), + [628] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -97074,99 +96574,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_list_expression] = STATE(2455), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2455), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2455), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1857), - [sym_pipe_variable] = ACTIONS(1859), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1861), - [sym_xhp_class_identifier] = ACTIONS(1859), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [648] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2190), + [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), @@ -97174,99 +96877,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [649] = { - [sym_qualified_identifier] = STATE(2111), - [sym_scoped_identifier] = STATE(2548), - [sym_scope_identifier] = STATE(2549), + [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_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(2726), + [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), @@ -97274,99 +97079,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2581), + [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(2581), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1863), - [sym_pipe_variable] = ACTIONS(1865), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1867), - [sym_xhp_class_identifier] = ACTIONS(1865), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [650] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [634] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2020), + [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), @@ -97374,99 +97180,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [651] = { - [sym_qualified_identifier] = STATE(2099), - [sym_scoped_identifier] = STATE(2513), - [sym_scope_identifier] = STATE(2522), + [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_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(2726), + [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), @@ -97474,99 +97382,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2660), - [sym_subscript_expression] = STATE(2660), - [sym_list_expression] = STATE(2660), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2660), + [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(2660), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1869), - [sym_pipe_variable] = ACTIONS(1871), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1873), - [sym_xhp_class_identifier] = ACTIONS(1871), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [652] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [637] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2019), + [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), @@ -97574,99 +97483,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [653] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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_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(2664), + [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), @@ -97674,99 +97786,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [654] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [641] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1950), + [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), @@ -97774,99 +97887,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [655] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [642] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2703), + [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), @@ -97874,99 +97988,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [656] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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(2345), + [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), @@ -97974,99 +98190,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [657] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [645] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2015), + [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), @@ -98074,99 +98291,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [658] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [646] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2646), + [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), @@ -98174,99 +98392,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [659] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [647] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1996), + [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), @@ -98274,99 +98493,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(2031), - [sym_scoped_identifier] = STATE(2444), - [sym_scope_identifier] = STATE(2426), + [648] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -98374,99 +98594,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2479), - [sym_subscript_expression] = STATE(2479), - [sym_list_expression] = STATE(2479), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2479), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2479), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1875), - [sym_pipe_variable] = ACTIONS(1877), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1879), - [sym_xhp_class_identifier] = ACTIONS(1877), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [661] = { - [sym_qualified_identifier] = STATE(2035), - [sym_scoped_identifier] = STATE(2271), - [sym_scope_identifier] = STATE(2269), + [649] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -98474,99 +98695,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2493), - [sym_subscript_expression] = STATE(2493), - [sym_list_expression] = STATE(2493), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2493), + [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(2493), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1881), - [sym_pipe_variable] = ACTIONS(1883), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1885), - [sym_xhp_class_identifier] = ACTIONS(1883), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [662] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [650] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1988), + [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), @@ -98574,99 +98796,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [663] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [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_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(1973), + [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), @@ -98674,99 +98998,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [664] = { - [sym_qualified_identifier] = STATE(1806), - [sym_scoped_identifier] = STATE(1978), - [sym_scope_identifier] = STATE(1960), + [653] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2158), + [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), @@ -98774,99 +99099,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2107), - [sym_subscript_expression] = STATE(2107), - [sym_list_expression] = STATE(2107), + [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(2107), + [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(5707), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2107), + [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(2107), - [sym_parameters] = STATE(4080), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3738), - [sym_async_modifier] = STATE(3762), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1049), - [sym_pipe_variable] = ACTIONS(1051), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1065), - [anon_sym_include_once] = ACTIONS(1065), - [anon_sym_require] = ACTIONS(1067), - [anon_sym_require_once] = ACTIONS(1067), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1073), + [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(1075), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1219), - [sym_xhp_class_identifier] = ACTIONS(1051), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [665] = { - [sym_qualified_identifier] = STATE(2094), - [sym_scoped_identifier] = STATE(2460), - [sym_scope_identifier] = STATE(2516), + [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_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(2726), + [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), @@ -98874,99 +99301,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2644), - [sym_subscript_expression] = STATE(2644), - [sym_list_expression] = STATE(2644), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2644), + [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(2644), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1887), - [sym_pipe_variable] = ACTIONS(1889), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1891), - [sym_xhp_class_identifier] = ACTIONS(1889), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [666] = { - [sym_qualified_identifier] = STATE(2110), - [sym_scoped_identifier] = STATE(2464), - [sym_scope_identifier] = STATE(2514), + [656] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -98974,99 +99402,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2582), - [sym_subscript_expression] = STATE(2582), - [sym_list_expression] = STATE(2582), + [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(1871), + [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(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2582), + [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(2582), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1893), - [sym_pipe_variable] = ACTIONS(1895), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1897), - [sym_xhp_class_identifier] = ACTIONS(1895), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [667] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [657] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2512), + [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), @@ -99074,99 +99503,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [668] = { - [sym_qualified_identifier] = STATE(2092), - [sym_scoped_identifier] = STATE(2501), - [sym_scope_identifier] = STATE(2508), + [658] = { + [sym_qualified_identifier] = STATE(2088), + [sym_scoped_identifier] = STATE(2321), + [sym_scope_identifier] = STATE(2324), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -99174,99 +99604,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2639), - [sym_subscript_expression] = STATE(2639), - [sym_list_expression] = STATE(2639), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2639), + [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(2639), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2591), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1899), - [sym_pipe_variable] = ACTIONS(1901), + [sym_variable] = ACTIONS(1957), + [sym_pipe_variable] = ACTIONS(1959), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1903), - [sym_xhp_class_identifier] = ACTIONS(1901), + [sym_xhp_identifier] = ACTIONS(1961), + [sym_xhp_class_identifier] = ACTIONS(1959), [sym_comment] = ACTIONS(3), }, - [669] = { - [sym_qualified_identifier] = STATE(2093), - [sym_scoped_identifier] = STATE(2506), - [sym_scope_identifier] = STATE(2503), + [659] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -99274,199 +99705,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2631), - [sym_subscript_expression] = STATE(2631), - [sym_list_expression] = STATE(2631), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2631), + [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(2631), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1905), - [sym_pipe_variable] = ACTIONS(1907), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1909), - [sym_xhp_class_identifier] = ACTIONS(1907), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [670] = { - [sym_qualified_identifier] = STATE(2085), - [sym_scoped_identifier] = STATE(2518), - [sym_scope_identifier] = STATE(2494), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2679), - [sym_subscript_expression] = STATE(2679), - [sym_list_expression] = STATE(2679), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2679), - [sym_parameters] = STATE(4324), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1911), - [sym_pipe_variable] = ACTIONS(1913), - [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1915), - [sym_xhp_class_identifier] = ACTIONS(1913), + [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_comment] = ACTIONS(3), }, - [671] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [661] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2704), + [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), @@ -99474,99 +99907,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [672] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [662] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2574), + [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), @@ -99574,199 +100008,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [673] = { - [sym_qualified_identifier] = STATE(1864), - [sym_scoped_identifier] = STATE(2149), - [sym_scope_identifier] = STATE(2164), - [sym_heredoc] = STATE(2701), - [sym__expression] = STATE(2348), - [sym_true] = STATE(2701), - [sym_false] = STATE(2701), - [sym_null] = STATE(2701), - [sym_prefixed_string] = STATE(2701), - [sym_array] = STATE(2701), - [sym_tuple] = STATE(2701), - [sym_shape] = STATE(2701), - [sym_collection] = STATE(2701), - [sym_include_expression] = STATE(2701), - [sym_require_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_list_expression] = STATE(2202), - [sym_binary_expression] = STATE(2701), - [sym_prefix_unary_expression] = STATE(2701), - [sym_postfix_unary_expression] = STATE(2701), - [sym_is_expression] = STATE(2701), - [sym_as_expression] = STATE(2202), - [sym_awaitable_expression] = STATE(2701), - [sym_yield_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_ternary_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym__single_parameter_parameters] = STATE(5867), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2202), - [sym_new_expression] = STATE(2701), - [sym_selection_expression] = STATE(2202), - [sym_parameters] = STATE(4305), - [sym_enum_class_label] = STATE(2701), - [sym_attribute_modifier] = STATE(3712), - [sym_async_modifier] = STATE(3869), - [sym_xhp_expression] = STATE(2701), - [sym_xhp_open] = STATE(3544), - [sym_xhp_open_close] = STATE(2610), - [sym_function_pointer] = STATE(2701), - [sym_anonymous_function_expression] = STATE(2701), - [aux_sym_qualified_identifier_repeat1] = STATE(1778), - [sym_identifier] = ACTIONS(1081), - [sym_variable] = ACTIONS(1083), - [sym_pipe_variable] = ACTIONS(1085), - [anon_sym_shape] = ACTIONS(1227), - [anon_sym_tuple] = ACTIONS(1089), - [anon_sym_clone] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_print] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_BSLASH] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_parent] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_LT_LT_LT] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_function] = ACTIONS(1107), - [sym_float] = ACTIONS(1109), - [sym_integer] = ACTIONS(1111), - [anon_sym_true] = ACTIONS(1113), - [anon_sym_True] = ACTIONS(1113), - [anon_sym_TRUE] = ACTIONS(1113), - [anon_sym_false] = ACTIONS(1115), - [anon_sym_False] = ACTIONS(1115), - [anon_sym_FALSE] = ACTIONS(1115), - [anon_sym_null] = ACTIONS(1117), - [anon_sym_Null] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [sym_string] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1135), - [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_LT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_include] = ACTIONS(1129), - [anon_sym_include_once] = ACTIONS(1129), - [anon_sym_require] = ACTIONS(1131), - [anon_sym_require_once] = ACTIONS(1131), - [anon_sym_list] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_await] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1145), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - }, - [674] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [663] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2715), + [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), @@ -99774,99 +100109,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(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), }, - [675] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [664] = { + [sym_qualified_identifier] = STATE(1817), + [sym_scoped_identifier] = STATE(2082), + [sym_scope_identifier] = STATE(2084), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2194), + [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), @@ -99874,99 +100210,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [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(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2108), + [sym_parameters] = STATE(4259), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3792), + [sym_async_modifier] = STATE(3915), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [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(999), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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(1265), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [676] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [665] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2482), + [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), @@ -99974,99 +100311,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [677] = { - [sym_qualified_identifier] = STATE(2038), - [sym_scoped_identifier] = STATE(2252), - [sym_scope_identifier] = STATE(2379), + [666] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -100074,99 +100412,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2465), - [sym_subscript_expression] = STATE(2465), - [sym_list_expression] = STATE(2465), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2465), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2465), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1917), - [sym_pipe_variable] = ACTIONS(1919), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1921), - [sym_xhp_class_identifier] = ACTIONS(1919), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [678] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [667] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2484), + [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), @@ -100174,99 +100513,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [679] = { - [sym_qualified_identifier] = STATE(2072), - [sym_scoped_identifier] = STATE(2532), - [sym_scope_identifier] = STATE(2531), + [668] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -100274,99 +100614,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2594), - [sym_subscript_expression] = STATE(2594), - [sym_list_expression] = STATE(2594), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2594), + [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(2594), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1923), - [sym_pipe_variable] = ACTIONS(1925), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1927), - [sym_xhp_class_identifier] = ACTIONS(1925), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [680] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [669] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2492), + [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), @@ -100374,99 +100715,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [681] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [670] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2491), + [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), @@ -100474,99 +100816,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [682] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [671] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2489), + [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), @@ -100574,99 +100917,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [683] = { - [sym_qualified_identifier] = STATE(2033), - [sym_scoped_identifier] = STATE(2360), - [sym_scope_identifier] = STATE(2352), + [672] = { + [sym_qualified_identifier] = STATE(2005), + [sym_scoped_identifier] = STATE(2505), + [sym_scope_identifier] = STATE(2499), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -100674,99 +101018,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2540), - [sym_subscript_expression] = STATE(2540), - [sym_list_expression] = STATE(2540), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2540), + [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(2540), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2531), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1929), - [sym_pipe_variable] = ACTIONS(1931), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1933), - [sym_xhp_class_identifier] = ACTIONS(1931), + [sym_xhp_identifier] = ACTIONS(1967), + [sym_xhp_class_identifier] = ACTIONS(1965), [sym_comment] = ACTIONS(3), }, - [684] = { - [sym_qualified_identifier] = STATE(1994), - [sym_scoped_identifier] = STATE(2256), - [sym_scope_identifier] = STATE(2259), + [673] = { + [sym_qualified_identifier] = STATE(2095), + [sym_scoped_identifier] = STATE(2577), + [sym_scope_identifier] = STATE(2579), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -100774,99 +101119,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2480), - [sym_subscript_expression] = STATE(2480), - [sym_list_expression] = STATE(2480), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2480), + [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(2480), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2670), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1935), - [sym_pipe_variable] = ACTIONS(1937), + [sym_variable] = ACTIONS(1969), + [sym_pipe_variable] = ACTIONS(1971), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1939), - [sym_xhp_class_identifier] = ACTIONS(1937), + [sym_xhp_identifier] = ACTIONS(1973), + [sym_xhp_class_identifier] = ACTIONS(1971), [sym_comment] = ACTIONS(3), }, - [685] = { - [sym_qualified_identifier] = STATE(1954), - [sym_scoped_identifier] = STATE(2382), - [sym_scope_identifier] = STATE(2359), + [674] = { + [sym_qualified_identifier] = STATE(2098), + [sym_scoped_identifier] = STATE(2587), + [sym_scope_identifier] = STATE(2588), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -100874,99 +101220,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2538), - [sym_subscript_expression] = STATE(2538), - [sym_list_expression] = STATE(2538), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2538), + [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(2538), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2664), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1941), - [sym_pipe_variable] = ACTIONS(1943), + [sym_variable] = ACTIONS(1975), + [sym_pipe_variable] = ACTIONS(1977), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1945), - [sym_xhp_class_identifier] = ACTIONS(1943), + [sym_xhp_identifier] = ACTIONS(1979), + [sym_xhp_class_identifier] = ACTIONS(1977), [sym_comment] = ACTIONS(3), }, - [686] = { - [sym_qualified_identifier] = STATE(1982), - [sym_scoped_identifier] = STATE(2413), - [sym_scope_identifier] = STATE(2398), + [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), + [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), + }, + [676] = { + [sym_qualified_identifier] = STATE(2092), + [sym_scoped_identifier] = STATE(2314), + [sym_scope_identifier] = STATE(2316), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -100974,99 +101422,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2499), - [sym_subscript_expression] = STATE(2499), - [sym_list_expression] = STATE(2499), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2499), + [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(2499), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2589), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1947), - [sym_pipe_variable] = ACTIONS(1949), + [sym_variable] = ACTIONS(1981), + [sym_pipe_variable] = ACTIONS(1983), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1951), - [sym_xhp_class_identifier] = ACTIONS(1949), + [sym_xhp_identifier] = ACTIONS(1985), + [sym_xhp_class_identifier] = ACTIONS(1983), [sym_comment] = ACTIONS(3), }, - [687] = { - [sym_qualified_identifier] = STATE(2053), - [sym_scoped_identifier] = STATE(2525), - [sym_scope_identifier] = STATE(2526), + [677] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -101074,99 +101523,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2629), - [sym_subscript_expression] = STATE(2629), - [sym_list_expression] = STATE(2629), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2629), + [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(2629), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1953), - [sym_pipe_variable] = ACTIONS(1955), + [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), + }, + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1957), - [sym_xhp_class_identifier] = ACTIONS(1955), + [sym_xhp_identifier] = ACTIONS(1991), + [sym_xhp_class_identifier] = ACTIONS(1989), [sym_comment] = ACTIONS(3), }, - [688] = { - [sym_qualified_identifier] = STATE(2066), - [sym_scoped_identifier] = STATE(2466), - [sym_scope_identifier] = STATE(2470), + [679] = { + [sym_qualified_identifier] = STATE(2163), + [sym_scoped_identifier] = STATE(2546), + [sym_scope_identifier] = STATE(2544), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -101174,99 +101725,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2694), - [sym_subscript_expression] = STATE(2694), - [sym_list_expression] = STATE(2694), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2694), + [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(2694), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2759), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1959), - [sym_pipe_variable] = ACTIONS(1961), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1963), - [sym_xhp_class_identifier] = ACTIONS(1961), + [sym_xhp_identifier] = ACTIONS(1997), + [sym_xhp_class_identifier] = ACTIONS(1995), [sym_comment] = ACTIONS(3), }, - [689] = { - [sym_qualified_identifier] = STATE(2070), - [sym_scoped_identifier] = STATE(2483), - [sym_scope_identifier] = STATE(2481), + [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(2726), + [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), @@ -101274,99 +102129,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2656), - [sym_subscript_expression] = STATE(2656), - [sym_list_expression] = STATE(2656), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2656), + [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(2656), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4427), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3791), + [sym_async_modifier] = STATE(3932), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1965), - [sym_pipe_variable] = ACTIONS(1967), + [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), + }, + [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), + [sym__single_parameter_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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1969), - [sym_xhp_class_identifier] = ACTIONS(1967), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [690] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [685] = { + [sym_qualified_identifier] = STATE(2159), + [sym_scoped_identifier] = STATE(2555), + [sym_scope_identifier] = STATE(2551), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), + [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), @@ -101374,34 +102331,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [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(1871), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2700), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [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_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(2003), + [sym_xhp_class_identifier] = ACTIONS(2001), + [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), + [sym__single_parameter_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), @@ -101410,47 +102468,47 @@ 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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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), @@ -101458,15 +102516,16 @@ 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(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [687] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2336), + [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), @@ -101474,99 +102533,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [692] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [688] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2510), + [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), @@ -101574,99 +102634,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, - [693] = { - [sym_qualified_identifier] = STATE(2051), - [sym_scoped_identifier] = STATE(2550), - [sym_scope_identifier] = STATE(2462), + [689] = { + [sym_qualified_identifier] = STATE(2097), + [sym_scoped_identifier] = STATE(2600), + [sym_scope_identifier] = STATE(2526), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -101674,99 +102735,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2577), - [sym_subscript_expression] = STATE(2577), - [sym_list_expression] = STATE(2577), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2577), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2655), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2577), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(2655), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1971), - [sym_pipe_variable] = ACTIONS(1973), + [sym_variable] = ACTIONS(2005), + [sym_pipe_variable] = ACTIONS(2007), [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1975), - [sym_xhp_class_identifier] = ACTIONS(1973), + [sym_xhp_identifier] = ACTIONS(2009), + [sym_xhp_class_identifier] = ACTIONS(2007), [sym_comment] = ACTIONS(3), }, - [694] = { - [sym_qualified_identifier] = STATE(1958), - [sym_scoped_identifier] = STATE(2216), - [sym_scope_identifier] = STATE(2219), + [690] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -101774,99 +102836,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2467), - [sym_subscript_expression] = STATE(2467), - [sym_list_expression] = STATE(2467), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2467), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2467), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1977), - [sym_pipe_variable] = ACTIONS(1979), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1981), - [sym_xhp_class_identifier] = ACTIONS(1979), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [695] = { - [sym_qualified_identifier] = STATE(1998), - [sym_scoped_identifier] = STATE(2193), - [sym_scope_identifier] = STATE(2192), + [691] = { + [sym_qualified_identifier] = STATE(1790), + [sym_scoped_identifier] = STATE(1876), + [sym_scope_identifier] = STATE(1878), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2726), + [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), @@ -101874,99 +102937,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2520), - [sym_subscript_expression] = STATE(2520), - [sym_list_expression] = STATE(2520), + [sym_parenthesized_expression] = STATE(1892), + [sym_subscript_expression] = STATE(1892), + [sym_list_expression] = STATE(1892), [sym_binary_expression] = STATE(1929), [sym_prefix_unary_expression] = STATE(1929), [sym_postfix_unary_expression] = STATE(1929), [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6194), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(2520), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1892), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2520), - [sym_parameters] = STATE(4324), + [sym_selection_expression] = STATE(1892), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3716), - [sym_async_modifier] = STATE(3893), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1983), - [sym_pipe_variable] = ACTIONS(1985), + [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(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(51), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_include] = ACTIONS(97), - [anon_sym_include_once] = ACTIONS(97), - [anon_sym_require] = ACTIONS(99), - [anon_sym_require_once] = ACTIONS(99), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_await] = ACTIONS(937), + [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(1987), - [sym_xhp_class_identifier] = ACTIONS(1985), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [696] = { - [sym_qualified_identifier] = STATE(1744), - [sym_scoped_identifier] = STATE(1847), - [sym_scope_identifier] = STATE(1841), + [692] = { + [sym_qualified_identifier] = STATE(2103), + [sym_scoped_identifier] = STATE(2608), + [sym_scope_identifier] = STATE(2598), [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2477), + [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), @@ -101974,1554 +103038,1874 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_collection] = STATE(1929), [sym_include_expression] = STATE(1929), [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1871), - [sym_subscript_expression] = STATE(1871), - [sym_list_expression] = STATE(1871), + [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(1871), + [sym_as_expression] = STATE(1892), [sym_awaitable_expression] = STATE(1929), [sym_yield_expression] = STATE(1929), [sym_cast_expression] = STATE(1929), [sym_ternary_expression] = STATE(1929), [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5643), - [sym__single_parameter] = STATE(6191), - [sym_call_expression] = STATE(1871), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2654), [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1871), - [sym_parameters] = STATE(4095), + [sym_selection_expression] = STATE(2654), + [sym_parameters] = STATE(4449), [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3709), - [sym_async_modifier] = STATE(3801), + [sym_attribute_modifier] = STATE(3756), + [sym_async_modifier] = STATE(3954), [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3559), - [sym_xhp_open_close] = STATE(1870), + [sym_xhp_open] = STATE(3590), + [sym_xhp_open_close] = STATE(1930), [sym_function_pointer] = STATE(1929), [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1733), + [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_identifier] = ACTIONS(7), + [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_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(2015), + [sym_xhp_class_identifier] = ACTIONS(2013), + [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), + [sym__single_parameter_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(999), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(31), - [anon_sym_parent] = ACTIONS(31), - [anon_sym_static] = ACTIONS(31), - [anon_sym_LT_LT_LT] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_function] = ACTIONS(933), - [sym_float] = ACTIONS(77), - [sym_integer] = ACTIONS(79), - [anon_sym_true] = ACTIONS(81), - [anon_sym_True] = ACTIONS(81), - [anon_sym_TRUE] = ACTIONS(81), - [anon_sym_false] = ACTIONS(83), - [anon_sym_False] = ACTIONS(83), - [anon_sym_FALSE] = ACTIONS(83), - [anon_sym_null] = ACTIONS(85), - [anon_sym_Null] = ACTIONS(85), - [anon_sym_NULL] = ACTIONS(85), - [sym_string] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_array] = ACTIONS(91), - [anon_sym_varray] = ACTIONS(91), - [anon_sym_darray] = ACTIONS(91), - [anon_sym_vec] = ACTIONS(91), - [anon_sym_dict] = ACTIONS(91), - [anon_sym_keyset] = ACTIONS(91), - [anon_sym_LT] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_include] = ACTIONS(1015), - [anon_sym_include_once] = ACTIONS(1015), - [anon_sym_require] = ACTIONS(1017), - [anon_sym_require_once] = ACTIONS(1017), - [anon_sym_list] = ACTIONS(101), - [anon_sym_LT_LT] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), + [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(1025), + [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), }, + [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), + [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_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(2017), + [sym_pipe_variable] = ACTIONS(2019), + [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(2021), + [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(4684), - [sym_compound_statement] = STATE(812), - [aux_sym_qualified_identifier_repeat1] = STATE(1970), - [sym_identifier] = ACTIONS(1989), - [sym_variable] = ACTIONS(1991), - [sym_pipe_variable] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_newtype] = ACTIONS(1993), - [anon_sym_shape] = ACTIONS(1993), - [anon_sym_tuple] = ACTIONS(1993), - [anon_sym_clone] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(1993), - [anon_sym_parent] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_LT_LT_LT] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_echo] = ACTIONS(1993), - [anon_sym_unset] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_concurrent] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_elseif] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_case] = ACTIONS(1993), - [anon_sym_default] = ACTIONS(1993), - [anon_sym_foreach] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1993), - [sym_float] = ACTIONS(1991), - [sym_integer] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_True] = ACTIONS(1993), - [anon_sym_TRUE] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_False] = ACTIONS(1993), - [anon_sym_FALSE] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [anon_sym_Null] = ACTIONS(1993), - [anon_sym_NULL] = ACTIONS(1993), - [sym_string] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_array] = ACTIONS(1993), - [anon_sym_varray] = ACTIONS(1993), - [anon_sym_darray] = ACTIONS(1993), - [anon_sym_vec] = ACTIONS(1993), - [anon_sym_dict] = ACTIONS(1993), - [anon_sym_keyset] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_include] = ACTIONS(1993), - [anon_sym_include_once] = ACTIONS(1993), - [anon_sym_require] = ACTIONS(1993), - [anon_sym_require_once] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [sym_final_modifier] = ACTIONS(1993), - [sym_xhp_modifier] = ACTIONS(1993), - [sym_xhp_identifier] = ACTIONS(1993), - [sym_xhp_class_identifier] = ACTIONS(1991), + [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), + [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), }, [698] = { - [sym_identifier] = ACTIONS(1995), - [sym_variable] = ACTIONS(1997), - [sym_pipe_variable] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_newtype] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(1995), - [anon_sym_tuple] = ACTIONS(1995), - [anon_sym_clone] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_namespace] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_self] = ACTIONS(1995), - [anon_sym_parent] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_LT_LT_LT] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_throw] = ACTIONS(1995), - [anon_sym_echo] = ACTIONS(1995), - [anon_sym_unset] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_concurrent] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_function] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_elseif] = ACTIONS(1995), - [anon_sym_else] = ACTIONS(1995), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1995), - [anon_sym_default] = ACTIONS(1995), - [anon_sym_foreach] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1995), - [anon_sym_using] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [sym_integer] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_True] = ACTIONS(1995), - [anon_sym_TRUE] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_False] = ACTIONS(1995), - [anon_sym_FALSE] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_Null] = ACTIONS(1995), - [anon_sym_NULL] = ACTIONS(1995), - [sym_string] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_array] = ACTIONS(1995), - [anon_sym_varray] = ACTIONS(1995), - [anon_sym_darray] = ACTIONS(1995), - [anon_sym_vec] = ACTIONS(1995), - [anon_sym_dict] = ACTIONS(1995), - [anon_sym_keyset] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_include_once] = ACTIONS(1995), - [anon_sym_require] = ACTIONS(1995), - [anon_sym_require_once] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_interface] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_abstract] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1997), - [sym_final_modifier] = ACTIONS(1995), - [sym_xhp_modifier] = ACTIONS(1995), - [sym_xhp_identifier] = ACTIONS(1995), - [sym_xhp_class_identifier] = ACTIONS(1997), + [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_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_elseif] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_case] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_finally] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_elseif] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_case] = ACTIONS(2003), - [anon_sym_default] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_finally] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_elseif] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_case] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), + [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_comment] = ACTIONS(3), }, [702] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_elseif] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_case] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), + [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), }, [703] = { - [aux_sym_if_statement_repeat1] = STATE(705), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [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] = { - [aux_sym_if_statement_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(2021), - [sym_variable] = ACTIONS(2023), - [sym_pipe_variable] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_newtype] = ACTIONS(2021), - [anon_sym_shape] = ACTIONS(2021), - [anon_sym_tuple] = ACTIONS(2021), - [anon_sym_clone] = ACTIONS(2021), - [anon_sym_new] = ACTIONS(2021), - [anon_sym_print] = ACTIONS(2021), - [anon_sym_namespace] = ACTIONS(2021), - [anon_sym_BSLASH] = ACTIONS(2023), - [anon_sym_self] = ACTIONS(2021), - [anon_sym_parent] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2021), - [anon_sym_LT_LT_LT] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_throw] = ACTIONS(2021), - [anon_sym_echo] = ACTIONS(2021), - [anon_sym_unset] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_concurrent] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_function] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_elseif] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2028), - [anon_sym_switch] = ACTIONS(2021), - [anon_sym_case] = ACTIONS(2021), - [anon_sym_default] = ACTIONS(2021), - [anon_sym_foreach] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_using] = ACTIONS(2021), - [sym_float] = ACTIONS(2023), - [sym_integer] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_True] = ACTIONS(2021), - [anon_sym_TRUE] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_False] = ACTIONS(2021), - [anon_sym_FALSE] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [anon_sym_Null] = ACTIONS(2021), - [anon_sym_NULL] = ACTIONS(2021), - [sym_string] = ACTIONS(2023), - [anon_sym_AT] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_array] = ACTIONS(2021), - [anon_sym_varray] = ACTIONS(2021), - [anon_sym_darray] = ACTIONS(2021), - [anon_sym_vec] = ACTIONS(2021), - [anon_sym_dict] = ACTIONS(2021), - [anon_sym_keyset] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_include] = ACTIONS(2021), - [anon_sym_include_once] = ACTIONS(2021), - [anon_sym_require] = ACTIONS(2021), - [anon_sym_require_once] = ACTIONS(2021), - [anon_sym_list] = ACTIONS(2021), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_await] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_trait] = ACTIONS(2021), - [anon_sym_interface] = ACTIONS(2021), - [anon_sym_class] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_abstract] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2023), - [sym_final_modifier] = ACTIONS(2021), - [sym_xhp_modifier] = ACTIONS(2021), - [sym_xhp_identifier] = ACTIONS(2021), - [sym_xhp_class_identifier] = ACTIONS(2023), + [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] = { - [aux_sym_if_statement_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(2031), - [sym_variable] = ACTIONS(2033), - [sym_pipe_variable] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_newtype] = ACTIONS(2031), - [anon_sym_shape] = ACTIONS(2031), - [anon_sym_tuple] = ACTIONS(2031), - [anon_sym_clone] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_BSLASH] = ACTIONS(2033), - [anon_sym_self] = ACTIONS(2031), - [anon_sym_parent] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_echo] = ACTIONS(2031), - [anon_sym_unset] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_concurrent] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2037), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_case] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_foreach] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_using] = ACTIONS(2031), - [sym_float] = ACTIONS(2033), - [sym_integer] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_True] = ACTIONS(2031), - [anon_sym_TRUE] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_False] = ACTIONS(2031), - [anon_sym_FALSE] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_Null] = ACTIONS(2031), - [anon_sym_NULL] = ACTIONS(2031), - [sym_string] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_array] = ACTIONS(2031), - [anon_sym_varray] = ACTIONS(2031), - [anon_sym_darray] = ACTIONS(2031), - [anon_sym_vec] = ACTIONS(2031), - [anon_sym_dict] = ACTIONS(2031), - [anon_sym_keyset] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_include] = ACTIONS(2031), - [anon_sym_include_once] = ACTIONS(2031), - [anon_sym_require] = ACTIONS(2031), - [anon_sym_require_once] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2033), - [sym_final_modifier] = ACTIONS(2031), - [sym_xhp_modifier] = ACTIONS(2031), - [sym_xhp_identifier] = ACTIONS(2031), - [sym_xhp_class_identifier] = ACTIONS(2033), + [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__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_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(2023), + [sym_pipe_variable] = ACTIONS(2025), + [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(2027), + [sym_xhp_class_identifier] = ACTIONS(2025), [sym_comment] = ACTIONS(3), }, [706] = { - [aux_sym_if_statement_repeat1] = STATE(705), - [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_BSLASH] = ACTIONS(2041), - [anon_sym_self] = ACTIONS(2039), - [anon_sym_parent] = ACTIONS(2039), - [anon_sym_static] = 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(2035), - [anon_sym_else] = ACTIONS(2043), - [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_include] = ACTIONS(2039), - [anon_sym_include_once] = ACTIONS(2039), - [anon_sym_require] = ACTIONS(2039), - [anon_sym_require_once] = ACTIONS(2039), - [anon_sym_list] = ACTIONS(2039), - [anon_sym_LT_LT] = 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_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__single_parameter_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(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), }, [707] = { - [sym_qualified_identifier] = STATE(5103), - [sym_compound_statement] = STATE(1226), - [aux_sym_qualified_identifier_repeat1] = STATE(1970), - [ts_builtin_sym_end] = ACTIONS(1991), - [sym_identifier] = ACTIONS(1989), - [sym_variable] = ACTIONS(1991), - [sym_pipe_variable] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_newtype] = ACTIONS(1993), - [anon_sym_shape] = ACTIONS(1993), - [anon_sym_tuple] = ACTIONS(1993), - [anon_sym_clone] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(1993), - [anon_sym_parent] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_LT_LT_LT] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_echo] = ACTIONS(1993), - [anon_sym_unset] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_concurrent] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_elseif] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_foreach] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1993), - [sym_float] = ACTIONS(1991), - [sym_integer] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_True] = ACTIONS(1993), - [anon_sym_TRUE] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_False] = ACTIONS(1993), - [anon_sym_FALSE] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [anon_sym_Null] = ACTIONS(1993), - [anon_sym_NULL] = ACTIONS(1993), - [sym_string] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_array] = ACTIONS(1993), - [anon_sym_varray] = ACTIONS(1993), - [anon_sym_darray] = ACTIONS(1993), - [anon_sym_vec] = ACTIONS(1993), - [anon_sym_dict] = ACTIONS(1993), - [anon_sym_keyset] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_include] = ACTIONS(1993), - [anon_sym_include_once] = ACTIONS(1993), - [anon_sym_require] = ACTIONS(1993), - [anon_sym_require_once] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [sym_final_modifier] = ACTIONS(1993), - [sym_xhp_modifier] = ACTIONS(1993), - [sym_xhp_identifier] = ACTIONS(1993), - [sym_xhp_class_identifier] = ACTIONS(1991), + [sym_qualified_identifier] = STATE(4788), + [sym_compound_statement] = STATE(854), + [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(689), + [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_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), }, [708] = { - [sym_qualified_identifier] = STATE(4447), - [sym_compound_statement] = STATE(1264), - [aux_sym_qualified_identifier_repeat1] = STATE(1970), - [sym_identifier] = ACTIONS(1989), - [sym_variable] = ACTIONS(1991), - [sym_pipe_variable] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_newtype] = ACTIONS(1993), - [anon_sym_shape] = ACTIONS(1993), - [anon_sym_tuple] = ACTIONS(1993), - [anon_sym_clone] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(1993), - [anon_sym_parent] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_LT_LT_LT] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_echo] = ACTIONS(1993), - [anon_sym_unset] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_concurrent] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_case] = ACTIONS(1993), - [anon_sym_default] = ACTIONS(1993), - [anon_sym_foreach] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1993), - [sym_float] = ACTIONS(1991), - [sym_integer] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_True] = ACTIONS(1993), - [anon_sym_TRUE] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_False] = ACTIONS(1993), - [anon_sym_FALSE] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [anon_sym_Null] = ACTIONS(1993), - [anon_sym_NULL] = ACTIONS(1993), - [sym_string] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_array] = ACTIONS(1993), - [anon_sym_varray] = ACTIONS(1993), - [anon_sym_darray] = ACTIONS(1993), - [anon_sym_vec] = ACTIONS(1993), - [anon_sym_dict] = ACTIONS(1993), - [anon_sym_keyset] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_include] = ACTIONS(1993), - [anon_sym_include_once] = ACTIONS(1993), - [anon_sym_require] = ACTIONS(1993), - [anon_sym_require_once] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [sym_final_modifier] = ACTIONS(1993), - [sym_xhp_modifier] = ACTIONS(1993), - [sym_xhp_identifier] = ACTIONS(1993), - [sym_xhp_class_identifier] = ACTIONS(1991), + [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_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), }, [709] = { - [sym_qualified_identifier] = STATE(4392), - [sym_compound_statement] = STATE(991), - [aux_sym_qualified_identifier_repeat1] = STATE(1970), - [sym_identifier] = ACTIONS(1989), - [sym_variable] = ACTIONS(1991), - [sym_pipe_variable] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_newtype] = ACTIONS(1993), - [anon_sym_shape] = ACTIONS(1993), - [anon_sym_tuple] = ACTIONS(1993), - [anon_sym_clone] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(1993), - [anon_sym_parent] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_LT_LT_LT] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_echo] = ACTIONS(1993), - [anon_sym_unset] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_concurrent] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_elseif] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_foreach] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1993), - [sym_float] = ACTIONS(1991), - [sym_integer] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_True] = ACTIONS(1993), - [anon_sym_TRUE] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_False] = ACTIONS(1993), - [anon_sym_FALSE] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [anon_sym_Null] = ACTIONS(1993), - [anon_sym_NULL] = ACTIONS(1993), - [sym_string] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_array] = ACTIONS(1993), - [anon_sym_varray] = ACTIONS(1993), - [anon_sym_darray] = ACTIONS(1993), - [anon_sym_vec] = ACTIONS(1993), - [anon_sym_dict] = ACTIONS(1993), - [anon_sym_keyset] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_include] = ACTIONS(1993), - [anon_sym_include_once] = ACTIONS(1993), - [anon_sym_require] = ACTIONS(1993), - [anon_sym_require_once] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [sym_final_modifier] = ACTIONS(1993), - [sym_xhp_modifier] = ACTIONS(1993), - [sym_xhp_identifier] = ACTIONS(1993), - [sym_xhp_class_identifier] = ACTIONS(1991), + [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_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), }, [710] = { - [aux_sym_if_statement_repeat1] = STATE(711), - [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_BSLASH] = ACTIONS(2041), - [anon_sym_self] = ACTIONS(2039), - [anon_sym_parent] = ACTIONS(2039), - [anon_sym_static] = 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(2035), + [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(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_include] = ACTIONS(2039), - [anon_sym_include_once] = ACTIONS(2039), - [anon_sym_require] = ACTIONS(2039), - [anon_sym_require_once] = ACTIONS(2039), - [anon_sym_list] = ACTIONS(2039), - [anon_sym_LT_LT] = 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), + [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), }, [711] = { - [aux_sym_if_statement_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(2031), - [sym_variable] = ACTIONS(2033), - [sym_pipe_variable] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_newtype] = ACTIONS(2031), - [anon_sym_shape] = ACTIONS(2031), - [anon_sym_tuple] = ACTIONS(2031), - [anon_sym_clone] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_BSLASH] = ACTIONS(2033), - [anon_sym_self] = ACTIONS(2031), - [anon_sym_parent] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_echo] = ACTIONS(2031), - [anon_sym_unset] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_concurrent] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_case] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_foreach] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_using] = ACTIONS(2031), - [sym_float] = ACTIONS(2033), - [sym_integer] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_True] = ACTIONS(2031), - [anon_sym_TRUE] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_False] = ACTIONS(2031), - [anon_sym_FALSE] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_Null] = ACTIONS(2031), - [anon_sym_NULL] = ACTIONS(2031), - [sym_string] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_array] = ACTIONS(2031), - [anon_sym_varray] = ACTIONS(2031), - [anon_sym_darray] = ACTIONS(2031), - [anon_sym_vec] = ACTIONS(2031), - [anon_sym_dict] = ACTIONS(2031), - [anon_sym_keyset] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_include] = ACTIONS(2031), - [anon_sym_include_once] = ACTIONS(2031), - [anon_sym_require] = ACTIONS(2031), - [anon_sym_require_once] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2033), - [sym_final_modifier] = ACTIONS(2031), - [sym_xhp_modifier] = ACTIONS(2031), - [sym_xhp_identifier] = ACTIONS(2031), - [sym_xhp_class_identifier] = ACTIONS(2033), - [sym_comment] = ACTIONS(3), - }, - [712] = { - [aux_sym_if_statement_repeat1] = STATE(711), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), - [sym_comment] = ACTIONS(3), - }, - [713] = { [sym_identifier] = ACTIONS(2049), [sym_variable] = ACTIONS(2051), [sym_pipe_variable] = ACTIONS(2051), @@ -103533,10 +104917,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103563,6 +104952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103587,12 +104978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2049), [anon_sym_PLUS] = ACTIONS(2049), [anon_sym_DASH] = 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_list] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), [anon_sym_BANG] = ACTIONS(2051), [anon_sym_PLUS_PLUS] = ACTIONS(2051), [anon_sym_DASH_DASH] = ACTIONS(2051), @@ -103611,7 +104997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2051), [sym_comment] = ACTIONS(3), }, - [714] = { + [712] = { [sym_identifier] = ACTIONS(2053), [sym_variable] = ACTIONS(2055), [sym_pipe_variable] = ACTIONS(2055), @@ -103623,10 +105009,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103653,6 +105044,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_using] = ACTIONS(2053), [sym_float] = ACTIONS(2055), [sym_integer] = ACTIONS(2053), @@ -103677,12 +105070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(2053), [anon_sym_DASH] = 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_list] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), [anon_sym_BANG] = ACTIONS(2055), [anon_sym_PLUS_PLUS] = ACTIONS(2055), [anon_sym_DASH_DASH] = ACTIONS(2055), @@ -103701,7 +105089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [715] = { + [713] = { + [aux_sym_if_statement_repeat1] = STATE(721), [sym_identifier] = ACTIONS(2057), [sym_variable] = ACTIONS(2059), [sym_pipe_variable] = ACTIONS(2059), @@ -103713,10 +105102,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103767,12 +105161,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + }, + [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), + [sym_comment] = ACTIONS(3), + }, + [716] = { + [aux_sym_if_statement_repeat1] = STATE(718), + [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_list] = 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), @@ -103791,7 +105453,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [716] = { + [717] = { + [aux_sym_if_statement_repeat1] = STATE(717), [sym_identifier] = ACTIONS(2061), [sym_variable] = ACTIONS(2063), [sym_pipe_variable] = ACTIONS(2063), @@ -103803,10 +105466,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103823,8 +105491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2061), [anon_sym_const] = ACTIONS(2061), [anon_sym_if] = ACTIONS(2061), - [anon_sym_elseif] = ACTIONS(2061), - [anon_sym_else] = ACTIONS(2061), + [anon_sym_elseif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2068), [anon_sym_switch] = ACTIONS(2061), [anon_sym_case] = ACTIONS(2061), [anon_sym_default] = ACTIONS(2061), @@ -103857,12 +105525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2061), [anon_sym_PLUS] = ACTIONS(2061), [anon_sym_DASH] = 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_list] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(2063), [anon_sym_PLUS_PLUS] = ACTIONS(2063), [anon_sym_DASH_DASH] = ACTIONS(2063), @@ -103881,637 +105544,462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2063), [sym_comment] = ACTIONS(3), }, - [717] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_elseif] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_case] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - }, [718] = { - [sym_identifier] = ACTIONS(2065), - [sym_variable] = ACTIONS(2067), - [sym_pipe_variable] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_newtype] = ACTIONS(2065), - [anon_sym_shape] = ACTIONS(2065), - [anon_sym_tuple] = ACTIONS(2065), - [anon_sym_clone] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_print] = ACTIONS(2065), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_BSLASH] = ACTIONS(2067), - [anon_sym_self] = ACTIONS(2065), - [anon_sym_parent] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_LT_LT_LT] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_throw] = ACTIONS(2065), - [anon_sym_echo] = ACTIONS(2065), - [anon_sym_unset] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_concurrent] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_function] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_elseif] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2065), - [anon_sym_switch] = ACTIONS(2065), - [anon_sym_case] = ACTIONS(2065), - [anon_sym_default] = ACTIONS(2065), - [anon_sym_foreach] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [sym_float] = ACTIONS(2067), - [sym_integer] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_True] = ACTIONS(2065), - [anon_sym_TRUE] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_False] = ACTIONS(2065), - [anon_sym_FALSE] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [anon_sym_Null] = ACTIONS(2065), - [anon_sym_NULL] = ACTIONS(2065), - [sym_string] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_array] = ACTIONS(2065), - [anon_sym_varray] = ACTIONS(2065), - [anon_sym_darray] = ACTIONS(2065), - [anon_sym_vec] = ACTIONS(2065), - [anon_sym_dict] = ACTIONS(2065), - [anon_sym_keyset] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_include] = ACTIONS(2065), - [anon_sym_include_once] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(2065), - [anon_sym_require_once] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_abstract] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2067), - [sym_final_modifier] = ACTIONS(2065), - [sym_xhp_modifier] = ACTIONS(2065), - [sym_xhp_identifier] = ACTIONS(2065), - [sym_xhp_class_identifier] = ACTIONS(2067), + [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), [sym_comment] = ACTIONS(3), }, [719] = { - [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_BSLASH] = ACTIONS(2071), - [anon_sym_self] = ACTIONS(2069), - [anon_sym_parent] = ACTIONS(2069), - [anon_sym_static] = 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(2069), - [anon_sym_else] = ACTIONS(2069), - [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_include] = ACTIONS(2069), - [anon_sym_include_once] = ACTIONS(2069), - [anon_sym_require] = ACTIONS(2069), - [anon_sym_require_once] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, [720] = { - [sym_identifier] = ACTIONS(2073), - [sym_variable] = ACTIONS(2075), - [sym_pipe_variable] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_newtype] = ACTIONS(2073), - [anon_sym_shape] = ACTIONS(2073), - [anon_sym_tuple] = ACTIONS(2073), - [anon_sym_clone] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_print] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2073), - [anon_sym_BSLASH] = ACTIONS(2075), - [anon_sym_self] = ACTIONS(2073), - [anon_sym_parent] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_LT_LT_LT] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_echo] = ACTIONS(2073), - [anon_sym_unset] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_concurrent] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_function] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_elseif] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_case] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_foreach] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_using] = ACTIONS(2073), - [sym_float] = ACTIONS(2075), - [sym_integer] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_True] = ACTIONS(2073), - [anon_sym_TRUE] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_False] = ACTIONS(2073), - [anon_sym_FALSE] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [anon_sym_Null] = ACTIONS(2073), - [anon_sym_NULL] = ACTIONS(2073), - [sym_string] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_array] = ACTIONS(2073), - [anon_sym_varray] = ACTIONS(2073), - [anon_sym_darray] = ACTIONS(2073), - [anon_sym_vec] = ACTIONS(2073), - [anon_sym_dict] = ACTIONS(2073), - [anon_sym_keyset] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_include] = ACTIONS(2073), - [anon_sym_include_once] = ACTIONS(2073), - [anon_sym_require] = ACTIONS(2073), - [anon_sym_require_once] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_abstract] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2075), - [sym_final_modifier] = ACTIONS(2073), - [sym_xhp_modifier] = ACTIONS(2073), - [sym_xhp_identifier] = ACTIONS(2073), - [sym_xhp_class_identifier] = ACTIONS(2075), + [sym_qualified_identifier] = STATE(5263), + [sym_compound_statement] = STATE(1032), + [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(805), + [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), }, [721] = { - [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_BSLASH] = ACTIONS(2079), - [anon_sym_self] = ACTIONS(2077), - [anon_sym_parent] = ACTIONS(2077), - [anon_sym_static] = 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(2077), - [anon_sym_else] = ACTIONS(2077), - [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_include] = ACTIONS(2077), - [anon_sym_include_once] = ACTIONS(2077), - [anon_sym_require] = ACTIONS(2077), - [anon_sym_require_once] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_LT_LT] = 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), + [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] = { - [sym_identifier] = ACTIONS(2081), - [sym_variable] = ACTIONS(2083), - [sym_pipe_variable] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_newtype] = ACTIONS(2081), - [anon_sym_shape] = ACTIONS(2081), - [anon_sym_tuple] = ACTIONS(2081), - [anon_sym_clone] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_BSLASH] = ACTIONS(2083), - [anon_sym_self] = ACTIONS(2081), - [anon_sym_parent] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_echo] = ACTIONS(2081), - [anon_sym_unset] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_concurrent] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_elseif] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_foreach] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [sym_integer] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_True] = ACTIONS(2081), - [anon_sym_TRUE] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_False] = ACTIONS(2081), - [anon_sym_FALSE] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_Null] = ACTIONS(2081), - [anon_sym_NULL] = ACTIONS(2081), - [sym_string] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_array] = ACTIONS(2081), - [anon_sym_varray] = ACTIONS(2081), - [anon_sym_darray] = ACTIONS(2081), - [anon_sym_vec] = ACTIONS(2081), - [anon_sym_dict] = ACTIONS(2081), - [anon_sym_keyset] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_include] = ACTIONS(2081), - [anon_sym_include_once] = ACTIONS(2081), - [anon_sym_require] = ACTIONS(2081), - [anon_sym_require_once] = ACTIONS(2081), - [anon_sym_list] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2083), - [sym_final_modifier] = ACTIONS(2081), - [sym_xhp_modifier] = ACTIONS(2081), - [sym_xhp_identifier] = ACTIONS(2081), - [sym_xhp_class_identifier] = ACTIONS(2083), + [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(2085), - [sym_variable] = ACTIONS(2087), - [sym_pipe_variable] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_newtype] = ACTIONS(2085), - [anon_sym_shape] = ACTIONS(2085), - [anon_sym_tuple] = ACTIONS(2085), - [anon_sym_clone] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_BSLASH] = ACTIONS(2087), - [anon_sym_self] = ACTIONS(2085), - [anon_sym_parent] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_LT_LT_LT] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_echo] = ACTIONS(2085), - [anon_sym_unset] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_concurrent] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_elseif] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_foreach] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [sym_integer] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_True] = ACTIONS(2085), - [anon_sym_TRUE] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_False] = ACTIONS(2085), - [anon_sym_FALSE] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_Null] = ACTIONS(2085), - [anon_sym_NULL] = ACTIONS(2085), - [sym_string] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_array] = ACTIONS(2085), - [anon_sym_varray] = ACTIONS(2085), - [anon_sym_darray] = ACTIONS(2085), - [anon_sym_vec] = ACTIONS(2085), - [anon_sym_dict] = ACTIONS(2085), - [anon_sym_keyset] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_include_once] = ACTIONS(2085), - [anon_sym_require] = ACTIONS(2085), - [anon_sym_require_once] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2087), - [sym_final_modifier] = ACTIONS(2085), - [sym_xhp_modifier] = ACTIONS(2085), - [sym_xhp_identifier] = ACTIONS(2085), - [sym_xhp_class_identifier] = ACTIONS(2087), - [sym_comment] = ACTIONS(3), - }, - [724] = { [sym_identifier] = ACTIONS(2089), [sym_variable] = ACTIONS(2091), [sym_pipe_variable] = ACTIONS(2091), @@ -104523,10 +106011,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -104577,12 +106070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2089), [anon_sym_PLUS] = ACTIONS(2089), [anon_sym_DASH] = 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_list] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), [anon_sym_BANG] = ACTIONS(2091), [anon_sym_PLUS_PLUS] = ACTIONS(2091), [anon_sym_DASH_DASH] = ACTIONS(2091), @@ -104601,7 +106089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2091), [sym_comment] = ACTIONS(3), }, - [725] = { + [724] = { [sym_identifier] = ACTIONS(2093), [sym_variable] = ACTIONS(2095), [sym_pipe_variable] = ACTIONS(2095), @@ -104613,10 +106101,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -104667,12 +106160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2093), [anon_sym_PLUS] = ACTIONS(2093), [anon_sym_DASH] = 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_list] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), [anon_sym_BANG] = ACTIONS(2095), [anon_sym_PLUS_PLUS] = ACTIONS(2095), [anon_sym_DASH_DASH] = ACTIONS(2095), @@ -104691,7 +106179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [726] = { + [725] = { [sym_identifier] = ACTIONS(2097), [sym_variable] = ACTIONS(2099), [sym_pipe_variable] = ACTIONS(2099), @@ -104703,10 +106191,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -104757,12 +106250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2097), [anon_sym_PLUS] = ACTIONS(2097), [anon_sym_DASH] = 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_list] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), [anon_sym_BANG] = ACTIONS(2099), [anon_sym_PLUS_PLUS] = ACTIONS(2099), [anon_sym_DASH_DASH] = ACTIONS(2099), @@ -104781,7 +106269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2099), [sym_comment] = ACTIONS(3), }, - [727] = { + [726] = { [sym_identifier] = ACTIONS(2101), [sym_variable] = ACTIONS(2103), [sym_pipe_variable] = ACTIONS(2103), @@ -104793,10 +106281,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -104847,12 +106340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2101), [anon_sym_PLUS] = ACTIONS(2101), [anon_sym_DASH] = 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_list] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), [anon_sym_BANG] = ACTIONS(2103), [anon_sym_PLUS_PLUS] = ACTIONS(2103), [anon_sym_DASH_DASH] = ACTIONS(2103), @@ -104871,7 +106359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2103), [sym_comment] = ACTIONS(3), }, - [728] = { + [727] = { [sym_identifier] = ACTIONS(2105), [sym_variable] = ACTIONS(2107), [sym_pipe_variable] = ACTIONS(2107), @@ -104883,10 +106371,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -104937,12 +106430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2105), [anon_sym_PLUS] = ACTIONS(2105), [anon_sym_DASH] = 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_list] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), [anon_sym_BANG] = ACTIONS(2107), [anon_sym_PLUS_PLUS] = ACTIONS(2107), [anon_sym_DASH_DASH] = ACTIONS(2107), @@ -104961,7 +106449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(3), }, - [729] = { + [728] = { [sym_identifier] = ACTIONS(2109), [sym_variable] = ACTIONS(2111), [sym_pipe_variable] = ACTIONS(2111), @@ -104973,10 +106461,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105027,12 +106520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2109), [anon_sym_PLUS] = ACTIONS(2109), [anon_sym_DASH] = 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_list] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), [anon_sym_BANG] = ACTIONS(2111), [anon_sym_PLUS_PLUS] = ACTIONS(2111), [anon_sym_DASH_DASH] = ACTIONS(2111), @@ -105051,7 +106539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2111), [sym_comment] = ACTIONS(3), }, - [730] = { + [729] = { [sym_identifier] = ACTIONS(2113), [sym_variable] = ACTIONS(2115), [sym_pipe_variable] = ACTIONS(2115), @@ -105063,10 +106551,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105117,12 +106610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2113), [anon_sym_PLUS] = ACTIONS(2113), [anon_sym_DASH] = 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_list] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(2113), [anon_sym_BANG] = ACTIONS(2115), [anon_sym_PLUS_PLUS] = ACTIONS(2115), [anon_sym_DASH_DASH] = ACTIONS(2115), @@ -105141,97 +106629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2115), [sym_comment] = ACTIONS(3), }, - [731] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_elseif] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_case] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [732] = { + [730] = { [sym_identifier] = ACTIONS(2117), [sym_variable] = ACTIONS(2119), [sym_pipe_variable] = ACTIONS(2119), @@ -105243,10 +106641,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105297,12 +106700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2117), [anon_sym_PLUS] = ACTIONS(2117), [anon_sym_DASH] = 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_list] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), [anon_sym_BANG] = ACTIONS(2119), [anon_sym_PLUS_PLUS] = ACTIONS(2119), [anon_sym_DASH_DASH] = ACTIONS(2119), @@ -105321,7 +106719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2119), [sym_comment] = ACTIONS(3), }, - [733] = { + [731] = { [sym_identifier] = ACTIONS(2121), [sym_variable] = ACTIONS(2123), [sym_pipe_variable] = ACTIONS(2123), @@ -105333,10 +106731,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105387,12 +106790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2121), [anon_sym_PLUS] = ACTIONS(2121), [anon_sym_DASH] = 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_list] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), [anon_sym_BANG] = ACTIONS(2123), [anon_sym_PLUS_PLUS] = ACTIONS(2123), [anon_sym_DASH_DASH] = ACTIONS(2123), @@ -105411,7 +106809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2123), [sym_comment] = ACTIONS(3), }, - [734] = { + [732] = { [sym_identifier] = ACTIONS(2125), [sym_variable] = ACTIONS(2127), [sym_pipe_variable] = ACTIONS(2127), @@ -105423,10 +106821,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105477,12 +106880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2125), [anon_sym_PLUS] = ACTIONS(2125), [anon_sym_DASH] = 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_list] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), [anon_sym_BANG] = ACTIONS(2127), [anon_sym_PLUS_PLUS] = ACTIONS(2127), [anon_sym_DASH_DASH] = ACTIONS(2127), @@ -105501,7 +106899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2127), [sym_comment] = ACTIONS(3), }, - [735] = { + [733] = { [sym_identifier] = ACTIONS(2129), [sym_variable] = ACTIONS(2131), [sym_pipe_variable] = ACTIONS(2131), @@ -105513,10 +106911,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105567,12 +106970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2129), [anon_sym_PLUS] = ACTIONS(2129), [anon_sym_DASH] = 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_list] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), [anon_sym_BANG] = ACTIONS(2131), [anon_sym_PLUS_PLUS] = ACTIONS(2131), [anon_sym_DASH_DASH] = ACTIONS(2131), @@ -105591,7 +106989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2131), [sym_comment] = ACTIONS(3), }, - [736] = { + [734] = { [sym_identifier] = ACTIONS(2133), [sym_variable] = ACTIONS(2135), [sym_pipe_variable] = ACTIONS(2135), @@ -105603,10 +107001,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105657,12 +107060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2133), [anon_sym_PLUS] = ACTIONS(2133), [anon_sym_DASH] = 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_list] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), [anon_sym_BANG] = ACTIONS(2135), [anon_sym_PLUS_PLUS] = ACTIONS(2135), [anon_sym_DASH_DASH] = ACTIONS(2135), @@ -105681,7 +107079,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2135), [sym_comment] = ACTIONS(3), }, - [737] = { + [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), @@ -105693,10 +107181,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105747,12 +107240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2137), [anon_sym_PLUS] = ACTIONS(2137), [anon_sym_DASH] = 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_list] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), [anon_sym_BANG] = ACTIONS(2139), [anon_sym_PLUS_PLUS] = ACTIONS(2139), [anon_sym_DASH_DASH] = ACTIONS(2139), @@ -105771,7 +107259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [738] = { + [737] = { [sym_identifier] = ACTIONS(2141), [sym_variable] = ACTIONS(2143), [sym_pipe_variable] = ACTIONS(2143), @@ -105783,10 +107271,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105837,12 +107330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2141), [anon_sym_PLUS] = ACTIONS(2141), [anon_sym_DASH] = 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_list] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), [anon_sym_BANG] = ACTIONS(2143), [anon_sym_PLUS_PLUS] = ACTIONS(2143), [anon_sym_DASH_DASH] = ACTIONS(2143), @@ -105861,7 +107349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2143), [sym_comment] = ACTIONS(3), }, - [739] = { + [738] = { [sym_identifier] = ACTIONS(2145), [sym_variable] = ACTIONS(2147), [sym_pipe_variable] = ACTIONS(2147), @@ -105873,10 +107361,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105927,12 +107420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2145), [anon_sym_PLUS] = ACTIONS(2145), [anon_sym_DASH] = 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_list] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), [anon_sym_BANG] = ACTIONS(2147), [anon_sym_PLUS_PLUS] = ACTIONS(2147), [anon_sym_DASH_DASH] = ACTIONS(2147), @@ -105951,7 +107439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [740] = { + [739] = { [sym_identifier] = ACTIONS(2149), [sym_variable] = ACTIONS(2151), [sym_pipe_variable] = ACTIONS(2151), @@ -105963,10 +107451,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106017,12 +107510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2149), [anon_sym_PLUS] = ACTIONS(2149), [anon_sym_DASH] = 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_list] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), [anon_sym_BANG] = ACTIONS(2151), [anon_sym_PLUS_PLUS] = ACTIONS(2151), [anon_sym_DASH_DASH] = ACTIONS(2151), @@ -106041,7 +107529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2151), [sym_comment] = ACTIONS(3), }, - [741] = { + [740] = { [sym_identifier] = ACTIONS(2153), [sym_variable] = ACTIONS(2155), [sym_pipe_variable] = ACTIONS(2155), @@ -106053,10 +107541,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106107,12 +107600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2153), [anon_sym_PLUS] = ACTIONS(2153), [anon_sym_DASH] = 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_list] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), [anon_sym_BANG] = ACTIONS(2155), [anon_sym_PLUS_PLUS] = ACTIONS(2155), [anon_sym_DASH_DASH] = ACTIONS(2155), @@ -106131,7 +107619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2155), [sym_comment] = ACTIONS(3), }, - [742] = { + [741] = { [sym_identifier] = ACTIONS(2157), [sym_variable] = ACTIONS(2159), [sym_pipe_variable] = ACTIONS(2159), @@ -106143,10 +107631,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106197,12 +107690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2157), [anon_sym_PLUS] = ACTIONS(2157), [anon_sym_DASH] = 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_list] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), [anon_sym_BANG] = ACTIONS(2159), [anon_sym_PLUS_PLUS] = ACTIONS(2159), [anon_sym_DASH_DASH] = ACTIONS(2159), @@ -106221,7 +107709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(3), }, - [743] = { + [742] = { [sym_identifier] = ACTIONS(2161), [sym_variable] = ACTIONS(2163), [sym_pipe_variable] = ACTIONS(2163), @@ -106233,10 +107721,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106287,12 +107780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2161), [anon_sym_PLUS] = ACTIONS(2161), [anon_sym_DASH] = 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_list] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), [anon_sym_BANG] = ACTIONS(2163), [anon_sym_PLUS_PLUS] = ACTIONS(2163), [anon_sym_DASH_DASH] = ACTIONS(2163), @@ -106311,7 +107799,187 @@ 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] = { [sym_identifier] = ACTIONS(2165), [sym_variable] = ACTIONS(2167), [sym_pipe_variable] = ACTIONS(2167), @@ -106323,10 +107991,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106377,12 +108050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2165), [anon_sym_PLUS] = ACTIONS(2165), [anon_sym_DASH] = 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_list] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), [anon_sym_BANG] = ACTIONS(2167), [anon_sym_PLUS_PLUS] = ACTIONS(2167), [anon_sym_DASH_DASH] = ACTIONS(2167), @@ -106401,7 +108069,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(3), }, - [745] = { + [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] = { [sym_identifier] = ACTIONS(2169), [sym_variable] = ACTIONS(2171), [sym_pipe_variable] = ACTIONS(2171), @@ -106413,10 +108351,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106467,12 +108410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2169), [anon_sym_PLUS] = ACTIONS(2169), [anon_sym_DASH] = 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_list] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), [anon_sym_BANG] = ACTIONS(2171), [anon_sym_PLUS_PLUS] = ACTIONS(2171), [anon_sym_DASH_DASH] = ACTIONS(2171), @@ -106491,7 +108429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2171), [sym_comment] = ACTIONS(3), }, - [746] = { + [750] = { [sym_identifier] = ACTIONS(2173), [sym_variable] = ACTIONS(2175), [sym_pipe_variable] = ACTIONS(2175), @@ -106503,10 +108441,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106557,12 +108500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2173), [anon_sym_PLUS] = ACTIONS(2173), [anon_sym_DASH] = 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_list] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), [anon_sym_BANG] = ACTIONS(2175), [anon_sym_PLUS_PLUS] = ACTIONS(2175), [anon_sym_DASH_DASH] = ACTIONS(2175), @@ -106581,7 +108519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [747] = { + [751] = { [sym_identifier] = ACTIONS(2177), [sym_variable] = ACTIONS(2179), [sym_pipe_variable] = ACTIONS(2179), @@ -106593,10 +108531,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106647,12 +108590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2177), [anon_sym_PLUS] = ACTIONS(2177), [anon_sym_DASH] = 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_list] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), [anon_sym_BANG] = ACTIONS(2179), [anon_sym_PLUS_PLUS] = ACTIONS(2179), [anon_sym_DASH_DASH] = ACTIONS(2179), @@ -106671,7 +108609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [748] = { + [752] = { [sym_identifier] = ACTIONS(2181), [sym_variable] = ACTIONS(2183), [sym_pipe_variable] = ACTIONS(2183), @@ -106683,10 +108621,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106737,12 +108680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2181), [anon_sym_DASH] = 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_list] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), [anon_sym_BANG] = ACTIONS(2183), [anon_sym_PLUS_PLUS] = ACTIONS(2183), [anon_sym_DASH_DASH] = ACTIONS(2183), @@ -106761,7 +108699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [749] = { + [753] = { [sym_identifier] = ACTIONS(2185), [sym_variable] = ACTIONS(2187), [sym_pipe_variable] = ACTIONS(2187), @@ -106773,10 +108711,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106827,12 +108770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2185), [anon_sym_PLUS] = ACTIONS(2185), [anon_sym_DASH] = 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_list] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), [anon_sym_BANG] = ACTIONS(2187), [anon_sym_PLUS_PLUS] = ACTIONS(2187), [anon_sym_DASH_DASH] = ACTIONS(2187), @@ -106851,7 +108789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(3), }, - [750] = { + [754] = { [sym_identifier] = ACTIONS(2189), [sym_variable] = ACTIONS(2191), [sym_pipe_variable] = ACTIONS(2191), @@ -106863,10 +108801,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106917,12 +108860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2189), [anon_sym_PLUS] = ACTIONS(2189), [anon_sym_DASH] = 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_list] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), [anon_sym_BANG] = ACTIONS(2191), [anon_sym_PLUS_PLUS] = ACTIONS(2191), [anon_sym_DASH_DASH] = ACTIONS(2191), @@ -106941,7 +108879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [751] = { + [755] = { [sym_identifier] = ACTIONS(2193), [sym_variable] = ACTIONS(2195), [sym_pipe_variable] = ACTIONS(2195), @@ -106953,10 +108891,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107007,12 +108950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2193), [anon_sym_PLUS] = ACTIONS(2193), [anon_sym_DASH] = 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_list] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), [anon_sym_BANG] = ACTIONS(2195), [anon_sym_PLUS_PLUS] = ACTIONS(2195), [anon_sym_DASH_DASH] = ACTIONS(2195), @@ -107031,7 +108969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(3), }, - [752] = { + [756] = { [sym_identifier] = ACTIONS(2197), [sym_variable] = ACTIONS(2199), [sym_pipe_variable] = ACTIONS(2199), @@ -107043,10 +108981,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107097,12 +109040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2197), [anon_sym_PLUS] = ACTIONS(2197), [anon_sym_DASH] = 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_list] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), [anon_sym_BANG] = ACTIONS(2199), [anon_sym_PLUS_PLUS] = ACTIONS(2199), [anon_sym_DASH_DASH] = ACTIONS(2199), @@ -107121,7 +109059,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [753] = { + [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] = { [sym_identifier] = ACTIONS(2201), [sym_variable] = ACTIONS(2203), [sym_pipe_variable] = ACTIONS(2203), @@ -107133,10 +109251,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107187,12 +109310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2201), [anon_sym_PLUS] = ACTIONS(2201), [anon_sym_DASH] = 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_list] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), [anon_sym_BANG] = ACTIONS(2203), [anon_sym_PLUS_PLUS] = ACTIONS(2203), [anon_sym_DASH_DASH] = ACTIONS(2203), @@ -107211,7 +109329,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [754] = { + [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] = { [sym_identifier] = ACTIONS(2205), [sym_variable] = ACTIONS(2207), [sym_pipe_variable] = ACTIONS(2207), @@ -107223,10 +109431,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107277,12 +109490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2205), [anon_sym_PLUS] = ACTIONS(2205), [anon_sym_DASH] = 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_list] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), [anon_sym_BANG] = ACTIONS(2207), [anon_sym_PLUS_PLUS] = ACTIONS(2207), [anon_sym_DASH_DASH] = ACTIONS(2207), @@ -107301,7 +109509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2207), [sym_comment] = ACTIONS(3), }, - [755] = { + [762] = { [sym_identifier] = ACTIONS(2209), [sym_variable] = ACTIONS(2211), [sym_pipe_variable] = ACTIONS(2211), @@ -107313,10 +109521,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107367,12 +109580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2209), [anon_sym_PLUS] = ACTIONS(2209), [anon_sym_DASH] = 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_list] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), [anon_sym_BANG] = ACTIONS(2211), [anon_sym_PLUS_PLUS] = ACTIONS(2211), [anon_sym_DASH_DASH] = ACTIONS(2211), @@ -107391,7 +109599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [756] = { + [763] = { [sym_identifier] = ACTIONS(2213), [sym_variable] = ACTIONS(2215), [sym_pipe_variable] = ACTIONS(2215), @@ -107403,10 +109611,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107457,12 +109670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2213), [anon_sym_PLUS] = ACTIONS(2213), [anon_sym_DASH] = 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_list] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), [anon_sym_BANG] = ACTIONS(2215), [anon_sym_PLUS_PLUS] = ACTIONS(2215), [anon_sym_DASH_DASH] = ACTIONS(2215), @@ -107481,7 +109689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2215), [sym_comment] = ACTIONS(3), }, - [757] = { + [764] = { [sym_identifier] = ACTIONS(2217), [sym_variable] = ACTIONS(2219), [sym_pipe_variable] = ACTIONS(2219), @@ -107493,10 +109701,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107547,12 +109760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2217), [anon_sym_PLUS] = ACTIONS(2217), [anon_sym_DASH] = 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_list] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), [anon_sym_BANG] = ACTIONS(2219), [anon_sym_PLUS_PLUS] = ACTIONS(2219), [anon_sym_DASH_DASH] = ACTIONS(2219), @@ -107571,187 +109779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2219), [sym_comment] = ACTIONS(3), }, - [758] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [759] = { - [sym_identifier] = ACTIONS(1995), - [sym_variable] = ACTIONS(1997), - [sym_pipe_variable] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_newtype] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(1995), - [anon_sym_tuple] = ACTIONS(1995), - [anon_sym_clone] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_namespace] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_self] = ACTIONS(1995), - [anon_sym_parent] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_LT_LT_LT] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_throw] = ACTIONS(1995), - [anon_sym_echo] = ACTIONS(1995), - [anon_sym_unset] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_concurrent] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_function] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_case] = ACTIONS(1995), - [anon_sym_default] = ACTIONS(1995), - [anon_sym_foreach] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1995), - [anon_sym_using] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [sym_integer] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_True] = ACTIONS(1995), - [anon_sym_TRUE] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_False] = ACTIONS(1995), - [anon_sym_FALSE] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_Null] = ACTIONS(1995), - [anon_sym_NULL] = ACTIONS(1995), - [sym_string] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_array] = ACTIONS(1995), - [anon_sym_varray] = ACTIONS(1995), - [anon_sym_darray] = ACTIONS(1995), - [anon_sym_vec] = ACTIONS(1995), - [anon_sym_dict] = ACTIONS(1995), - [anon_sym_keyset] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_include_once] = ACTIONS(1995), - [anon_sym_require] = ACTIONS(1995), - [anon_sym_require_once] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_interface] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_abstract] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1997), - [sym_final_modifier] = ACTIONS(1995), - [sym_xhp_modifier] = ACTIONS(1995), - [sym_xhp_identifier] = ACTIONS(1995), - [sym_xhp_class_identifier] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - }, - [760] = { + [765] = { [sym_identifier] = ACTIONS(2221), [sym_variable] = ACTIONS(2223), [sym_pipe_variable] = ACTIONS(2223), @@ -107763,10 +109791,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107817,12 +109850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2221), [anon_sym_PLUS] = ACTIONS(2221), [anon_sym_DASH] = 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_list] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), [anon_sym_BANG] = ACTIONS(2223), [anon_sym_PLUS_PLUS] = ACTIONS(2223), [anon_sym_DASH_DASH] = ACTIONS(2223), @@ -107841,7 +109869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [761] = { + [766] = { [sym_identifier] = ACTIONS(2225), [sym_variable] = ACTIONS(2227), [sym_pipe_variable] = ACTIONS(2227), @@ -107853,10 +109881,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -107907,12 +109940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2225), [anon_sym_PLUS] = ACTIONS(2225), [anon_sym_DASH] = 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_list] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), [anon_sym_BANG] = ACTIONS(2227), [anon_sym_PLUS_PLUS] = ACTIONS(2227), [anon_sym_DASH_DASH] = ACTIONS(2227), @@ -107931,97 +109959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [762] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [763] = { + [767] = { [sym_identifier] = ACTIONS(2229), [sym_variable] = ACTIONS(2231), [sym_pipe_variable] = ACTIONS(2231), @@ -108033,10 +109971,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108087,12 +110030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2229), [anon_sym_PLUS] = ACTIONS(2229), [anon_sym_DASH] = 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_list] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), [anon_sym_BANG] = ACTIONS(2231), [anon_sym_PLUS_PLUS] = ACTIONS(2231), [anon_sym_DASH_DASH] = ACTIONS(2231), @@ -108111,97 +110049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(3), }, - [764] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [765] = { + [768] = { [sym_identifier] = ACTIONS(2233), [sym_variable] = ACTIONS(2235), [sym_pipe_variable] = ACTIONS(2235), @@ -108213,10 +110061,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108267,12 +110120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2233), [anon_sym_PLUS] = ACTIONS(2233), [anon_sym_DASH] = 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_list] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), [anon_sym_BANG] = ACTIONS(2235), [anon_sym_PLUS_PLUS] = ACTIONS(2235), [anon_sym_DASH_DASH] = ACTIONS(2235), @@ -108291,97 +110139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [766] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [767] = { + [769] = { [sym_identifier] = ACTIONS(2237), [sym_variable] = ACTIONS(2239), [sym_pipe_variable] = ACTIONS(2239), @@ -108393,10 +110151,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108447,12 +110210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2237), [anon_sym_PLUS] = ACTIONS(2237), [anon_sym_DASH] = 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_list] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), [anon_sym_BANG] = ACTIONS(2239), [anon_sym_PLUS_PLUS] = ACTIONS(2239), [anon_sym_DASH_DASH] = ACTIONS(2239), @@ -108471,7 +110229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2239), [sym_comment] = ACTIONS(3), }, - [768] = { + [770] = { [sym_identifier] = ACTIONS(2241), [sym_variable] = ACTIONS(2243), [sym_pipe_variable] = ACTIONS(2243), @@ -108483,10 +110241,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108537,12 +110300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2241), [anon_sym_PLUS] = ACTIONS(2241), [anon_sym_DASH] = 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_list] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), [anon_sym_BANG] = ACTIONS(2243), [anon_sym_PLUS_PLUS] = ACTIONS(2243), [anon_sym_DASH_DASH] = ACTIONS(2243), @@ -108561,7 +110319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [769] = { + [771] = { [sym_identifier] = ACTIONS(2245), [sym_variable] = ACTIONS(2247), [sym_pipe_variable] = ACTIONS(2247), @@ -108573,10 +110331,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108627,12 +110390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2245), [anon_sym_PLUS] = ACTIONS(2245), [anon_sym_DASH] = 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_list] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), [anon_sym_BANG] = ACTIONS(2247), [anon_sym_PLUS_PLUS] = ACTIONS(2247), [anon_sym_DASH_DASH] = ACTIONS(2247), @@ -108651,7 +110409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [770] = { + [772] = { [sym_identifier] = ACTIONS(2249), [sym_variable] = ACTIONS(2251), [sym_pipe_variable] = ACTIONS(2251), @@ -108663,10 +110421,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108717,12 +110480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2249), [anon_sym_PLUS] = ACTIONS(2249), [anon_sym_DASH] = 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_list] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), [anon_sym_BANG] = ACTIONS(2251), [anon_sym_PLUS_PLUS] = ACTIONS(2251), [anon_sym_DASH_DASH] = ACTIONS(2251), @@ -108741,7 +110499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2251), [sym_comment] = ACTIONS(3), }, - [771] = { + [773] = { [sym_identifier] = ACTIONS(2253), [sym_variable] = ACTIONS(2255), [sym_pipe_variable] = ACTIONS(2255), @@ -108753,10 +110511,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -108807,12 +110570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2253), [anon_sym_PLUS] = ACTIONS(2253), [anon_sym_DASH] = 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_list] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), [anon_sym_BANG] = ACTIONS(2255), [anon_sym_PLUS_PLUS] = ACTIONS(2255), [anon_sym_DASH_DASH] = ACTIONS(2255), @@ -108831,727 +110589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [772] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [773] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_case] = ACTIONS(2003), - [anon_sym_default] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_finally] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - }, [774] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_case] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_finally] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - }, - [775] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_elseif] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_finally] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - }, - [776] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_elseif] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_finally] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - }, - [777] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [778] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_elseif] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_finally] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - }, - [780] = { [sym_identifier] = ACTIONS(2257), [sym_variable] = ACTIONS(2259), [sym_pipe_variable] = ACTIONS(2259), @@ -109563,10 +110601,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -109617,12 +110660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2257), [anon_sym_PLUS] = ACTIONS(2257), [anon_sym_DASH] = 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_list] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), [anon_sym_BANG] = ACTIONS(2259), [anon_sym_PLUS_PLUS] = ACTIONS(2259), [anon_sym_DASH_DASH] = ACTIONS(2259), @@ -109641,637 +110679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [781] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_elseif] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_finally] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - }, - [783] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [784] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_case] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - }, - [785] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_elseif] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_case] = ACTIONS(2003), - [anon_sym_default] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - }, - [786] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_elseif] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_case] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - }, - [787] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [788] = { + [775] = { [sym_identifier] = ACTIONS(2261), [sym_variable] = ACTIONS(2263), [sym_pipe_variable] = ACTIONS(2263), @@ -110283,10 +110691,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -110337,12 +110750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2261), [anon_sym_PLUS] = ACTIONS(2261), [anon_sym_DASH] = 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_list] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), [anon_sym_BANG] = ACTIONS(2263), [anon_sym_PLUS_PLUS] = ACTIONS(2263), [anon_sym_DASH_DASH] = ACTIONS(2263), @@ -110361,7 +110769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2263), [sym_comment] = ACTIONS(3), }, - [789] = { + [776] = { [sym_identifier] = ACTIONS(2265), [sym_variable] = ACTIONS(2267), [sym_pipe_variable] = ACTIONS(2267), @@ -110373,10 +110781,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -110427,12 +110840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(2265), [anon_sym_DASH] = 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_list] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), [anon_sym_BANG] = ACTIONS(2267), [anon_sym_PLUS_PLUS] = ACTIONS(2267), [anon_sym_DASH_DASH] = ACTIONS(2267), @@ -110451,7 +110859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [790] = { + [777] = { [sym_identifier] = ACTIONS(2269), [sym_variable] = ACTIONS(2271), [sym_pipe_variable] = ACTIONS(2271), @@ -110463,10 +110871,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -110517,12 +110930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2269), [anon_sym_PLUS] = ACTIONS(2269), [anon_sym_DASH] = 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_list] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), [anon_sym_BANG] = ACTIONS(2271), [anon_sym_PLUS_PLUS] = ACTIONS(2271), [anon_sym_DASH_DASH] = ACTIONS(2271), @@ -110541,97 +110949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [791] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_elseif] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - }, - [792] = { + [778] = { [sym_identifier] = ACTIONS(2273), [sym_variable] = ACTIONS(2275), [sym_pipe_variable] = ACTIONS(2275), @@ -110643,10 +110961,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -110697,12 +111020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2273), [anon_sym_PLUS] = ACTIONS(2273), [anon_sym_DASH] = 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_list] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), [anon_sym_BANG] = ACTIONS(2275), [anon_sym_PLUS_PLUS] = ACTIONS(2275), [anon_sym_DASH_DASH] = ACTIONS(2275), @@ -110721,97 +111039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [793] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [794] = { + [779] = { [sym_identifier] = ACTIONS(2277), [sym_variable] = ACTIONS(2279), [sym_pipe_variable] = ACTIONS(2279), @@ -110823,10 +111051,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -110877,12 +111110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2277), [anon_sym_PLUS] = ACTIONS(2277), [anon_sym_DASH] = 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_list] = ACTIONS(2277), - [anon_sym_LT_LT] = ACTIONS(2277), [anon_sym_BANG] = ACTIONS(2279), [anon_sym_PLUS_PLUS] = ACTIONS(2279), [anon_sym_DASH_DASH] = ACTIONS(2279), @@ -110901,97 +111129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2279), [sym_comment] = ACTIONS(3), }, - [795] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [796] = { + [780] = { [sym_identifier] = ACTIONS(2281), [sym_variable] = ACTIONS(2283), [sym_pipe_variable] = ACTIONS(2283), @@ -111003,10 +111141,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -111057,12 +111200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2281), [anon_sym_PLUS] = ACTIONS(2281), [anon_sym_DASH] = 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_list] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), [anon_sym_BANG] = ACTIONS(2283), [anon_sym_PLUS_PLUS] = ACTIONS(2283), [anon_sym_DASH_DASH] = ACTIONS(2283), @@ -111081,7 +111219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(3), }, - [797] = { + [781] = { [sym_identifier] = ACTIONS(2285), [sym_variable] = ACTIONS(2287), [sym_pipe_variable] = ACTIONS(2287), @@ -111093,10 +111231,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -111147,12 +111290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2285), [anon_sym_PLUS] = ACTIONS(2285), [anon_sym_DASH] = 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_list] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), [anon_sym_BANG] = ACTIONS(2287), [anon_sym_PLUS_PLUS] = ACTIONS(2287), [anon_sym_DASH_DASH] = ACTIONS(2287), @@ -111171,187 +111309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(3), }, - [798] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [799] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [800] = { + [782] = { [sym_identifier] = ACTIONS(2289), [sym_variable] = ACTIONS(2291), [sym_pipe_variable] = ACTIONS(2291), @@ -111363,10 +111321,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -111417,12 +111380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2289), [anon_sym_PLUS] = ACTIONS(2289), [anon_sym_DASH] = 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_list] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), [anon_sym_BANG] = ACTIONS(2291), [anon_sym_PLUS_PLUS] = ACTIONS(2291), [anon_sym_DASH_DASH] = ACTIONS(2291), @@ -111441,97 +111399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2291), [sym_comment] = ACTIONS(3), }, - [801] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [802] = { + [783] = { [sym_identifier] = ACTIONS(2293), [sym_variable] = ACTIONS(2295), [sym_pipe_variable] = ACTIONS(2295), @@ -111543,10 +111411,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -111597,12 +111470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2293), [anon_sym_PLUS] = ACTIONS(2293), [anon_sym_DASH] = 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_list] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), [anon_sym_BANG] = ACTIONS(2295), [anon_sym_PLUS_PLUS] = ACTIONS(2295), [anon_sym_DASH_DASH] = ACTIONS(2295), @@ -111621,187 +111489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, - [803] = { - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), - [sym_comment] = ACTIONS(3), - }, - [804] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [805] = { + [784] = { [sym_identifier] = ACTIONS(2297), [sym_variable] = ACTIONS(2299), [sym_pipe_variable] = ACTIONS(2299), @@ -111813,10 +111501,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -111867,12 +111560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2297), [anon_sym_PLUS] = ACTIONS(2297), [anon_sym_DASH] = 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_list] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), [anon_sym_BANG] = ACTIONS(2299), [anon_sym_PLUS_PLUS] = ACTIONS(2299), [anon_sym_DASH_DASH] = ACTIONS(2299), @@ -111891,7 +111579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2299), [sym_comment] = ACTIONS(3), }, - [806] = { + [785] = { [sym_identifier] = ACTIONS(2301), [sym_variable] = ACTIONS(2303), [sym_pipe_variable] = ACTIONS(2303), @@ -111903,10 +111591,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -111957,12 +111650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2301), [anon_sym_PLUS] = ACTIONS(2301), [anon_sym_DASH] = 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_list] = ACTIONS(2301), - [anon_sym_LT_LT] = ACTIONS(2301), [anon_sym_BANG] = ACTIONS(2303), [anon_sym_PLUS_PLUS] = ACTIONS(2303), [anon_sym_DASH_DASH] = ACTIONS(2303), @@ -111981,7 +111669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(3), }, - [807] = { + [786] = { [sym_identifier] = ACTIONS(2305), [sym_variable] = ACTIONS(2307), [sym_pipe_variable] = ACTIONS(2307), @@ -111993,10 +111681,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112047,12 +111740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(2305), [anon_sym_DASH] = 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_list] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), [anon_sym_BANG] = ACTIONS(2307), [anon_sym_PLUS_PLUS] = ACTIONS(2307), [anon_sym_DASH_DASH] = ACTIONS(2307), @@ -112071,7 +111759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(3), }, - [808] = { + [787] = { [sym_identifier] = ACTIONS(2309), [sym_variable] = ACTIONS(2311), [sym_pipe_variable] = ACTIONS(2311), @@ -112083,10 +111771,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112137,12 +111830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2309), [anon_sym_PLUS] = ACTIONS(2309), [anon_sym_DASH] = 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_list] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), [anon_sym_BANG] = ACTIONS(2311), [anon_sym_PLUS_PLUS] = ACTIONS(2311), [anon_sym_DASH_DASH] = ACTIONS(2311), @@ -112161,7 +111849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2311), [sym_comment] = ACTIONS(3), }, - [809] = { + [788] = { [sym_identifier] = ACTIONS(2313), [sym_variable] = ACTIONS(2315), [sym_pipe_variable] = ACTIONS(2315), @@ -112173,10 +111861,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112227,12 +111920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2313), [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_DASH] = 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_list] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), [anon_sym_BANG] = ACTIONS(2315), [anon_sym_PLUS_PLUS] = ACTIONS(2315), [anon_sym_DASH_DASH] = ACTIONS(2315), @@ -112251,7 +111939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, - [810] = { + [789] = { [sym_identifier] = ACTIONS(2317), [sym_variable] = ACTIONS(2319), [sym_pipe_variable] = ACTIONS(2319), @@ -112263,10 +111951,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112317,12 +112010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2317), [anon_sym_PLUS] = ACTIONS(2317), [anon_sym_DASH] = 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_list] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(2319), [anon_sym_PLUS_PLUS] = ACTIONS(2319), [anon_sym_DASH_DASH] = ACTIONS(2319), @@ -112341,97 +112029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [811] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [812] = { + [790] = { [sym_identifier] = ACTIONS(2321), [sym_variable] = ACTIONS(2323), [sym_pipe_variable] = ACTIONS(2323), @@ -112443,10 +112041,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112497,12 +112100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2321), [anon_sym_PLUS] = ACTIONS(2321), [anon_sym_DASH] = 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_list] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), [anon_sym_BANG] = ACTIONS(2323), [anon_sym_PLUS_PLUS] = ACTIONS(2323), [anon_sym_DASH_DASH] = ACTIONS(2323), @@ -112521,7 +112119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [813] = { + [791] = { [sym_identifier] = ACTIONS(2325), [sym_variable] = ACTIONS(2327), [sym_pipe_variable] = ACTIONS(2327), @@ -112533,10 +112131,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112587,12 +112190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(2325), [anon_sym_DASH] = 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_list] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), [anon_sym_BANG] = ACTIONS(2327), [anon_sym_PLUS_PLUS] = ACTIONS(2327), [anon_sym_DASH_DASH] = ACTIONS(2327), @@ -112611,7 +112209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [814] = { + [792] = { [sym_identifier] = ACTIONS(2329), [sym_variable] = ACTIONS(2331), [sym_pipe_variable] = ACTIONS(2331), @@ -112623,10 +112221,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112677,12 +112280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2329), [anon_sym_PLUS] = ACTIONS(2329), [anon_sym_DASH] = 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_list] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), [anon_sym_BANG] = ACTIONS(2331), [anon_sym_PLUS_PLUS] = ACTIONS(2331), [anon_sym_DASH_DASH] = ACTIONS(2331), @@ -112701,7 +112299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [815] = { + [793] = { [sym_identifier] = ACTIONS(2333), [sym_variable] = ACTIONS(2335), [sym_pipe_variable] = ACTIONS(2335), @@ -112713,10 +112311,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112767,12 +112370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2333), [anon_sym_PLUS] = ACTIONS(2333), [anon_sym_DASH] = 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_list] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(2335), [anon_sym_PLUS_PLUS] = ACTIONS(2335), [anon_sym_DASH_DASH] = ACTIONS(2335), @@ -112791,7 +112389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [816] = { + [794] = { [sym_identifier] = ACTIONS(2337), [sym_variable] = ACTIONS(2339), [sym_pipe_variable] = ACTIONS(2339), @@ -112803,10 +112401,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112857,12 +112460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2337), [anon_sym_PLUS] = ACTIONS(2337), [anon_sym_DASH] = 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_list] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2337), [anon_sym_BANG] = ACTIONS(2339), [anon_sym_PLUS_PLUS] = ACTIONS(2339), [anon_sym_DASH_DASH] = ACTIONS(2339), @@ -112881,457 +112479,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [817] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [795] = { + [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_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), }, - [818] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [819] = { - [sym_identifier] = ACTIONS(1995), - [sym_variable] = ACTIONS(1997), - [sym_pipe_variable] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_newtype] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(1995), - [anon_sym_tuple] = ACTIONS(1995), - [anon_sym_clone] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_namespace] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_self] = ACTIONS(1995), - [anon_sym_parent] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_LT_LT_LT] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_throw] = ACTIONS(1995), - [anon_sym_echo] = ACTIONS(1995), - [anon_sym_unset] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_concurrent] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_function] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_elseif] = ACTIONS(1995), - [anon_sym_else] = ACTIONS(1995), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_foreach] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1995), - [anon_sym_using] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [sym_integer] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_True] = ACTIONS(1995), - [anon_sym_TRUE] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_False] = ACTIONS(1995), - [anon_sym_FALSE] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_Null] = ACTIONS(1995), - [anon_sym_NULL] = ACTIONS(1995), - [sym_string] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_array] = ACTIONS(1995), - [anon_sym_varray] = ACTIONS(1995), - [anon_sym_darray] = ACTIONS(1995), - [anon_sym_vec] = ACTIONS(1995), - [anon_sym_dict] = ACTIONS(1995), - [anon_sym_keyset] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_include_once] = ACTIONS(1995), - [anon_sym_require] = ACTIONS(1995), - [anon_sym_require_once] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_interface] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_abstract] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1997), - [sym_final_modifier] = ACTIONS(1995), - [sym_xhp_modifier] = ACTIONS(1995), - [sym_xhp_identifier] = ACTIONS(1995), - [sym_xhp_class_identifier] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - }, - [820] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [821] = { - [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_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = 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_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_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_LT_LT] = 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), - }, - [822] = { + [796] = { [sym_identifier] = ACTIONS(2345), [sym_variable] = ACTIONS(2347), [sym_pipe_variable] = ACTIONS(2347), @@ -113343,10 +112581,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -113397,12 +112640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2345), [anon_sym_PLUS] = ACTIONS(2345), [anon_sym_DASH] = 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_list] = ACTIONS(2345), - [anon_sym_LT_LT] = ACTIONS(2345), [anon_sym_BANG] = ACTIONS(2347), [anon_sym_PLUS_PLUS] = ACTIONS(2347), [anon_sym_DASH_DASH] = ACTIONS(2347), @@ -113421,7 +112659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [823] = { + [797] = { [sym_identifier] = ACTIONS(2349), [sym_variable] = ACTIONS(2351), [sym_pipe_variable] = ACTIONS(2351), @@ -113433,10 +112671,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -113487,12 +112730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2349), [anon_sym_PLUS] = ACTIONS(2349), [anon_sym_DASH] = 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_list] = ACTIONS(2349), - [anon_sym_LT_LT] = ACTIONS(2349), [anon_sym_BANG] = ACTIONS(2351), [anon_sym_PLUS_PLUS] = ACTIONS(2351), [anon_sym_DASH_DASH] = ACTIONS(2351), @@ -113511,7 +112749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(3), }, - [824] = { + [798] = { [sym_identifier] = ACTIONS(2353), [sym_variable] = ACTIONS(2355), [sym_pipe_variable] = ACTIONS(2355), @@ -113523,10 +112761,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -113577,12 +112820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2353), [anon_sym_PLUS] = ACTIONS(2353), [anon_sym_DASH] = 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_list] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), [anon_sym_BANG] = ACTIONS(2355), [anon_sym_PLUS_PLUS] = ACTIONS(2355), [anon_sym_DASH_DASH] = ACTIONS(2355), @@ -113601,97 +112839,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(3), }, - [825] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [799] = { + [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(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), }, - [826] = { + [800] = { [sym_identifier] = ACTIONS(2357), [sym_variable] = ACTIONS(2359), [sym_pipe_variable] = ACTIONS(2359), @@ -113703,10 +112941,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -113757,12 +113000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2357), [anon_sym_PLUS] = ACTIONS(2357), [anon_sym_DASH] = 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_list] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2357), [anon_sym_BANG] = ACTIONS(2359), [anon_sym_PLUS_PLUS] = ACTIONS(2359), [anon_sym_DASH_DASH] = ACTIONS(2359), @@ -113781,7 +113019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2359), [sym_comment] = ACTIONS(3), }, - [827] = { + [801] = { [sym_identifier] = ACTIONS(2361), [sym_variable] = ACTIONS(2363), [sym_pipe_variable] = ACTIONS(2363), @@ -113793,10 +113031,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -113847,12 +113090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2361), [anon_sym_PLUS] = ACTIONS(2361), [anon_sym_DASH] = 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_list] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), [anon_sym_BANG] = ACTIONS(2363), [anon_sym_PLUS_PLUS] = ACTIONS(2363), [anon_sym_DASH_DASH] = ACTIONS(2363), @@ -113871,97 +113109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2363), [sym_comment] = ACTIONS(3), }, - [828] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [829] = { + [802] = { [sym_identifier] = ACTIONS(2365), [sym_variable] = ACTIONS(2367), [sym_pipe_variable] = ACTIONS(2367), @@ -113973,10 +113121,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114027,12 +113180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2365), [anon_sym_PLUS] = ACTIONS(2365), [anon_sym_DASH] = 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_list] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), [anon_sym_BANG] = ACTIONS(2367), [anon_sym_PLUS_PLUS] = ACTIONS(2367), [anon_sym_DASH_DASH] = ACTIONS(2367), @@ -114051,7 +113199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2367), [sym_comment] = ACTIONS(3), }, - [830] = { + [803] = { [sym_identifier] = ACTIONS(2369), [sym_variable] = ACTIONS(2371), [sym_pipe_variable] = ACTIONS(2371), @@ -114063,10 +113211,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114117,12 +113270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2369), [anon_sym_PLUS] = ACTIONS(2369), [anon_sym_DASH] = 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_list] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), [anon_sym_BANG] = ACTIONS(2371), [anon_sym_PLUS_PLUS] = ACTIONS(2371), [anon_sym_DASH_DASH] = ACTIONS(2371), @@ -114141,7 +113289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2371), [sym_comment] = ACTIONS(3), }, - [831] = { + [804] = { [sym_identifier] = ACTIONS(2373), [sym_variable] = ACTIONS(2375), [sym_pipe_variable] = ACTIONS(2375), @@ -114153,10 +113301,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114207,12 +113360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2373), [anon_sym_PLUS] = ACTIONS(2373), [anon_sym_DASH] = 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_list] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), [anon_sym_BANG] = ACTIONS(2375), [anon_sym_PLUS_PLUS] = ACTIONS(2375), [anon_sym_DASH_DASH] = ACTIONS(2375), @@ -114231,97 +113379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(3), }, - [832] = { - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_elseif] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - }, - [833] = { + [805] = { [sym_identifier] = ACTIONS(2377), [sym_variable] = ACTIONS(2379), [sym_pipe_variable] = ACTIONS(2379), @@ -114333,10 +113391,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114387,12 +113450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2377), [anon_sym_PLUS] = ACTIONS(2377), [anon_sym_DASH] = 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_list] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), [anon_sym_BANG] = ACTIONS(2379), [anon_sym_PLUS_PLUS] = ACTIONS(2379), [anon_sym_DASH_DASH] = ACTIONS(2379), @@ -114411,97 +113469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, - [834] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_elseif] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [835] = { + [806] = { [sym_identifier] = ACTIONS(2381), [sym_variable] = ACTIONS(2383), [sym_pipe_variable] = ACTIONS(2383), @@ -114513,10 +113481,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114567,12 +113540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2381), [anon_sym_PLUS] = ACTIONS(2381), [anon_sym_DASH] = 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_list] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), [anon_sym_BANG] = ACTIONS(2383), [anon_sym_PLUS_PLUS] = ACTIONS(2383), [anon_sym_DASH_DASH] = ACTIONS(2383), @@ -114591,7 +113559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, - [836] = { + [807] = { [sym_identifier] = ACTIONS(2385), [sym_variable] = ACTIONS(2387), [sym_pipe_variable] = ACTIONS(2387), @@ -114603,10 +113571,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114657,12 +113630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(2385), [anon_sym_DASH] = 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_list] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), [anon_sym_BANG] = ACTIONS(2387), [anon_sym_PLUS_PLUS] = ACTIONS(2387), [anon_sym_DASH_DASH] = ACTIONS(2387), @@ -114681,7 +113649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, - [837] = { + [808] = { [sym_identifier] = ACTIONS(2389), [sym_variable] = ACTIONS(2391), [sym_pipe_variable] = ACTIONS(2391), @@ -114693,10 +113661,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114747,12 +113720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2389), [anon_sym_PLUS] = ACTIONS(2389), [anon_sym_DASH] = 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_list] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), [anon_sym_BANG] = ACTIONS(2391), [anon_sym_PLUS_PLUS] = ACTIONS(2391), [anon_sym_DASH_DASH] = ACTIONS(2391), @@ -114771,7 +113739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2391), [sym_comment] = ACTIONS(3), }, - [838] = { + [809] = { [sym_identifier] = ACTIONS(2393), [sym_variable] = ACTIONS(2395), [sym_pipe_variable] = ACTIONS(2395), @@ -114783,10 +113751,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114837,12 +113810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2393), [anon_sym_PLUS] = ACTIONS(2393), [anon_sym_DASH] = 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_list] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), [anon_sym_BANG] = ACTIONS(2395), [anon_sym_PLUS_PLUS] = ACTIONS(2395), [anon_sym_DASH_DASH] = ACTIONS(2395), @@ -114861,7 +113829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2395), [sym_comment] = ACTIONS(3), }, - [839] = { + [810] = { [sym_identifier] = ACTIONS(2397), [sym_variable] = ACTIONS(2399), [sym_pipe_variable] = ACTIONS(2399), @@ -114873,10 +113841,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114927,12 +113900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2397), [anon_sym_PLUS] = ACTIONS(2397), [anon_sym_DASH] = 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_list] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), [anon_sym_BANG] = ACTIONS(2399), [anon_sym_PLUS_PLUS] = ACTIONS(2399), [anon_sym_DASH_DASH] = ACTIONS(2399), @@ -114951,187 +113919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2399), [sym_comment] = ACTIONS(3), }, - [840] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_case] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [841] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [842] = { + [811] = { [sym_identifier] = ACTIONS(2401), [sym_variable] = ACTIONS(2403), [sym_pipe_variable] = ACTIONS(2403), @@ -115143,10 +113931,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -115197,12 +113990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2401), [anon_sym_PLUS] = ACTIONS(2401), [anon_sym_DASH] = 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_list] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), [anon_sym_BANG] = ACTIONS(2403), [anon_sym_PLUS_PLUS] = ACTIONS(2403), [anon_sym_DASH_DASH] = ACTIONS(2403), @@ -115221,277 +114009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, - [843] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [844] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_elseif] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [845] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [846] = { + [812] = { [sym_identifier] = ACTIONS(2405), [sym_variable] = ACTIONS(2407), [sym_pipe_variable] = ACTIONS(2407), @@ -115503,10 +114021,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -115557,12 +114080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2405), [anon_sym_PLUS] = ACTIONS(2405), [anon_sym_DASH] = 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_list] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), [anon_sym_BANG] = ACTIONS(2407), [anon_sym_PLUS_PLUS] = ACTIONS(2407), [anon_sym_DASH_DASH] = ACTIONS(2407), @@ -115581,7 +114099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, - [847] = { + [813] = { [sym_identifier] = ACTIONS(2409), [sym_variable] = ACTIONS(2411), [sym_pipe_variable] = ACTIONS(2411), @@ -115593,10 +114111,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -115647,12 +114170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2409), [anon_sym_PLUS] = ACTIONS(2409), [anon_sym_DASH] = 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_list] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2409), [anon_sym_BANG] = ACTIONS(2411), [anon_sym_PLUS_PLUS] = ACTIONS(2411), [anon_sym_DASH_DASH] = ACTIONS(2411), @@ -115671,7 +114189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(3), }, - [848] = { + [814] = { [sym_identifier] = ACTIONS(2413), [sym_variable] = ACTIONS(2415), [sym_pipe_variable] = ACTIONS(2415), @@ -115683,10 +114201,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -115737,12 +114260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2413), [anon_sym_PLUS] = ACTIONS(2413), [anon_sym_DASH] = 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_list] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(2415), [anon_sym_PLUS_PLUS] = ACTIONS(2415), [anon_sym_DASH_DASH] = ACTIONS(2415), @@ -115761,7 +114279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(3), }, - [849] = { + [815] = { [sym_identifier] = ACTIONS(2417), [sym_variable] = ACTIONS(2419), [sym_pipe_variable] = ACTIONS(2419), @@ -115773,10 +114291,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -115827,12 +114350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2417), [anon_sym_PLUS] = ACTIONS(2417), [anon_sym_DASH] = 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_list] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), [anon_sym_BANG] = ACTIONS(2419), [anon_sym_PLUS_PLUS] = ACTIONS(2419), [anon_sym_DASH_DASH] = ACTIONS(2419), @@ -115851,7 +114369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2419), [sym_comment] = ACTIONS(3), }, - [850] = { + [816] = { [sym_identifier] = ACTIONS(2421), [sym_variable] = ACTIONS(2423), [sym_pipe_variable] = ACTIONS(2423), @@ -115863,10 +114381,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -115917,12 +114440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2421), [anon_sym_PLUS] = ACTIONS(2421), [anon_sym_DASH] = 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_list] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), [anon_sym_BANG] = ACTIONS(2423), [anon_sym_PLUS_PLUS] = ACTIONS(2423), [anon_sym_DASH_DASH] = ACTIONS(2423), @@ -115941,7 +114459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2423), [sym_comment] = ACTIONS(3), }, - [851] = { + [817] = { [sym_identifier] = ACTIONS(2425), [sym_variable] = ACTIONS(2427), [sym_pipe_variable] = ACTIONS(2427), @@ -115953,10 +114471,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116007,12 +114530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2425), [anon_sym_PLUS] = ACTIONS(2425), [anon_sym_DASH] = 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_list] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), [anon_sym_BANG] = ACTIONS(2427), [anon_sym_PLUS_PLUS] = ACTIONS(2427), [anon_sym_DASH_DASH] = ACTIONS(2427), @@ -116031,7 +114549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(3), }, - [852] = { + [818] = { [sym_identifier] = ACTIONS(2429), [sym_variable] = ACTIONS(2431), [sym_pipe_variable] = ACTIONS(2431), @@ -116043,10 +114561,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116097,12 +114620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2429), [anon_sym_PLUS] = ACTIONS(2429), [anon_sym_DASH] = 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_list] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), [anon_sym_BANG] = ACTIONS(2431), [anon_sym_PLUS_PLUS] = ACTIONS(2431), [anon_sym_DASH_DASH] = ACTIONS(2431), @@ -116121,7 +114639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2431), [sym_comment] = ACTIONS(3), }, - [853] = { + [819] = { [sym_identifier] = ACTIONS(2433), [sym_variable] = ACTIONS(2435), [sym_pipe_variable] = ACTIONS(2435), @@ -116133,10 +114651,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116187,12 +114710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2433), [anon_sym_PLUS] = ACTIONS(2433), [anon_sym_DASH] = 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_list] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), [anon_sym_BANG] = ACTIONS(2435), [anon_sym_PLUS_PLUS] = ACTIONS(2435), [anon_sym_DASH_DASH] = ACTIONS(2435), @@ -116211,7 +114729,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, - [854] = { + [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), @@ -116223,10 +114831,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116277,12 +114890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2437), [anon_sym_PLUS] = ACTIONS(2437), [anon_sym_DASH] = 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_list] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), [anon_sym_BANG] = ACTIONS(2439), [anon_sym_PLUS_PLUS] = ACTIONS(2439), [anon_sym_DASH_DASH] = ACTIONS(2439), @@ -116301,7 +114909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, - [855] = { + [822] = { [sym_identifier] = ACTIONS(2441), [sym_variable] = ACTIONS(2443), [sym_pipe_variable] = ACTIONS(2443), @@ -116313,10 +114921,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116367,12 +114980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2441), [anon_sym_PLUS] = ACTIONS(2441), [anon_sym_DASH] = 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_list] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), [anon_sym_BANG] = ACTIONS(2443), [anon_sym_PLUS_PLUS] = ACTIONS(2443), [anon_sym_DASH_DASH] = ACTIONS(2443), @@ -116391,7 +114999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, - [856] = { + [823] = { [sym_identifier] = ACTIONS(2445), [sym_variable] = ACTIONS(2447), [sym_pipe_variable] = ACTIONS(2447), @@ -116403,10 +115011,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116457,12 +115070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2445), [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_DASH] = 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_list] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), [anon_sym_BANG] = ACTIONS(2447), [anon_sym_PLUS_PLUS] = ACTIONS(2447), [anon_sym_DASH_DASH] = ACTIONS(2447), @@ -116481,7 +115089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [857] = { + [824] = { [sym_identifier] = ACTIONS(2449), [sym_variable] = ACTIONS(2451), [sym_pipe_variable] = ACTIONS(2451), @@ -116493,10 +115101,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116547,12 +115160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2449), [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_DASH] = 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_list] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(2451), [anon_sym_PLUS_PLUS] = ACTIONS(2451), [anon_sym_DASH_DASH] = ACTIONS(2451), @@ -116571,7 +115179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(3), }, - [858] = { + [825] = { [sym_identifier] = ACTIONS(2453), [sym_variable] = ACTIONS(2455), [sym_pipe_variable] = ACTIONS(2455), @@ -116583,10 +115191,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116637,12 +115250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2453), [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_DASH] = 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_list] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), [anon_sym_BANG] = ACTIONS(2455), [anon_sym_PLUS_PLUS] = ACTIONS(2455), [anon_sym_DASH_DASH] = ACTIONS(2455), @@ -116661,7 +115269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2455), [sym_comment] = ACTIONS(3), }, - [859] = { + [826] = { [sym_identifier] = ACTIONS(2457), [sym_variable] = ACTIONS(2459), [sym_pipe_variable] = ACTIONS(2459), @@ -116673,10 +115281,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116727,12 +115340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2457), [anon_sym_PLUS] = ACTIONS(2457), [anon_sym_DASH] = 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_list] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), [anon_sym_BANG] = ACTIONS(2459), [anon_sym_PLUS_PLUS] = ACTIONS(2459), [anon_sym_DASH_DASH] = ACTIONS(2459), @@ -116751,7 +115359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, - [860] = { + [827] = { [sym_identifier] = ACTIONS(2461), [sym_variable] = ACTIONS(2463), [sym_pipe_variable] = ACTIONS(2463), @@ -116763,10 +115371,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116817,12 +115430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2461), [anon_sym_PLUS] = ACTIONS(2461), [anon_sym_DASH] = 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_list] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), [anon_sym_BANG] = ACTIONS(2463), [anon_sym_PLUS_PLUS] = ACTIONS(2463), [anon_sym_DASH_DASH] = ACTIONS(2463), @@ -116841,7 +115449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(3), }, - [861] = { + [828] = { [sym_identifier] = ACTIONS(2465), [sym_variable] = ACTIONS(2467), [sym_pipe_variable] = ACTIONS(2467), @@ -116853,10 +115461,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -116907,12 +115520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2465), [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_DASH] = 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_list] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), [anon_sym_BANG] = ACTIONS(2467), [anon_sym_PLUS_PLUS] = ACTIONS(2467), [anon_sym_DASH_DASH] = ACTIONS(2467), @@ -116931,97 +115539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, - [862] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [863] = { + [829] = { [sym_identifier] = ACTIONS(2469), [sym_variable] = ACTIONS(2471), [sym_pipe_variable] = ACTIONS(2471), @@ -117033,10 +115551,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117087,12 +115610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2469), [anon_sym_PLUS] = ACTIONS(2469), [anon_sym_DASH] = 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_list] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), [anon_sym_BANG] = ACTIONS(2471), [anon_sym_PLUS_PLUS] = ACTIONS(2471), [anon_sym_DASH_DASH] = ACTIONS(2471), @@ -117111,97 +115629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, - [864] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [865] = { + [830] = { [sym_identifier] = ACTIONS(2473), [sym_variable] = ACTIONS(2475), [sym_pipe_variable] = ACTIONS(2475), @@ -117213,10 +115641,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117267,12 +115700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2473), [anon_sym_PLUS] = ACTIONS(2473), [anon_sym_DASH] = 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_list] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), [anon_sym_BANG] = ACTIONS(2475), [anon_sym_PLUS_PLUS] = ACTIONS(2475), [anon_sym_DASH_DASH] = ACTIONS(2475), @@ -117291,7 +115719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [866] = { + [831] = { [sym_identifier] = ACTIONS(2477), [sym_variable] = ACTIONS(2479), [sym_pipe_variable] = ACTIONS(2479), @@ -117303,10 +115731,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117357,12 +115790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2477), [anon_sym_PLUS] = ACTIONS(2477), [anon_sym_DASH] = 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_list] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), [anon_sym_BANG] = ACTIONS(2479), [anon_sym_PLUS_PLUS] = ACTIONS(2479), [anon_sym_DASH_DASH] = ACTIONS(2479), @@ -117381,7 +115809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2479), [sym_comment] = ACTIONS(3), }, - [867] = { + [832] = { [sym_identifier] = ACTIONS(2481), [sym_variable] = ACTIONS(2483), [sym_pipe_variable] = ACTIONS(2483), @@ -117393,10 +115821,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117447,12 +115880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2481), [anon_sym_PLUS] = ACTIONS(2481), [anon_sym_DASH] = 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_list] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(2483), [anon_sym_PLUS_PLUS] = ACTIONS(2483), [anon_sym_DASH_DASH] = ACTIONS(2483), @@ -117471,7 +115899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2483), [sym_comment] = ACTIONS(3), }, - [868] = { + [833] = { [sym_identifier] = ACTIONS(2485), [sym_variable] = ACTIONS(2487), [sym_pipe_variable] = ACTIONS(2487), @@ -117483,10 +115911,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117537,12 +115970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2485), [anon_sym_PLUS] = ACTIONS(2485), [anon_sym_DASH] = 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_list] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), [anon_sym_BANG] = ACTIONS(2487), [anon_sym_PLUS_PLUS] = ACTIONS(2487), [anon_sym_DASH_DASH] = ACTIONS(2487), @@ -117561,7 +115989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2487), [sym_comment] = ACTIONS(3), }, - [869] = { + [834] = { [sym_identifier] = ACTIONS(2489), [sym_variable] = ACTIONS(2491), [sym_pipe_variable] = ACTIONS(2491), @@ -117573,10 +116001,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117627,12 +116060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2489), [anon_sym_PLUS] = ACTIONS(2489), [anon_sym_DASH] = 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_list] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), [anon_sym_BANG] = ACTIONS(2491), [anon_sym_PLUS_PLUS] = ACTIONS(2491), [anon_sym_DASH_DASH] = ACTIONS(2491), @@ -117651,7 +116079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, - [870] = { + [835] = { [sym_identifier] = ACTIONS(2493), [sym_variable] = ACTIONS(2495), [sym_pipe_variable] = ACTIONS(2495), @@ -117663,10 +116091,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117717,12 +116150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2493), [anon_sym_PLUS] = ACTIONS(2493), [anon_sym_DASH] = 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_list] = ACTIONS(2493), - [anon_sym_LT_LT] = ACTIONS(2493), [anon_sym_BANG] = ACTIONS(2495), [anon_sym_PLUS_PLUS] = ACTIONS(2495), [anon_sym_DASH_DASH] = ACTIONS(2495), @@ -117741,97 +116169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(3), }, - [871] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [872] = { + [836] = { [sym_identifier] = ACTIONS(2497), [sym_variable] = ACTIONS(2499), [sym_pipe_variable] = ACTIONS(2499), @@ -117843,10 +116181,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117897,12 +116240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2497), [anon_sym_PLUS] = ACTIONS(2497), [anon_sym_DASH] = 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_list] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(2497), [anon_sym_BANG] = ACTIONS(2499), [anon_sym_PLUS_PLUS] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(2499), @@ -117921,7 +116259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [873] = { + [837] = { [sym_identifier] = ACTIONS(2501), [sym_variable] = ACTIONS(2503), [sym_pipe_variable] = ACTIONS(2503), @@ -117933,10 +116271,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117987,12 +116330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2501), [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_DASH] = 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_list] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), [anon_sym_BANG] = ACTIONS(2503), [anon_sym_PLUS_PLUS] = ACTIONS(2503), [anon_sym_DASH_DASH] = ACTIONS(2503), @@ -118011,97 +116349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_identifier] = ACTIONS(1995), - [sym_variable] = ACTIONS(1997), - [sym_pipe_variable] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_newtype] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(1995), - [anon_sym_tuple] = ACTIONS(1995), - [anon_sym_clone] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_namespace] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_self] = ACTIONS(1995), - [anon_sym_parent] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_LT_LT_LT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_throw] = ACTIONS(1995), - [anon_sym_echo] = ACTIONS(1995), - [anon_sym_unset] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_concurrent] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_function] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_elseif] = ACTIONS(1995), - [anon_sym_else] = ACTIONS(1995), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_foreach] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1995), - [anon_sym_using] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [sym_integer] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_True] = ACTIONS(1995), - [anon_sym_TRUE] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_False] = ACTIONS(1995), - [anon_sym_FALSE] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_Null] = ACTIONS(1995), - [anon_sym_NULL] = ACTIONS(1995), - [sym_string] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_array] = ACTIONS(1995), - [anon_sym_varray] = ACTIONS(1995), - [anon_sym_darray] = ACTIONS(1995), - [anon_sym_vec] = ACTIONS(1995), - [anon_sym_dict] = ACTIONS(1995), - [anon_sym_keyset] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_include_once] = ACTIONS(1995), - [anon_sym_require] = ACTIONS(1995), - [anon_sym_require_once] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_interface] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_abstract] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1997), - [sym_final_modifier] = ACTIONS(1995), - [sym_xhp_modifier] = ACTIONS(1995), - [sym_xhp_identifier] = ACTIONS(1995), - [sym_xhp_class_identifier] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - }, - [875] = { + [838] = { [sym_identifier] = ACTIONS(2505), [sym_variable] = ACTIONS(2507), [sym_pipe_variable] = ACTIONS(2507), @@ -118113,10 +116361,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118167,12 +116420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2505), [anon_sym_PLUS] = ACTIONS(2505), [anon_sym_DASH] = 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_list] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), [anon_sym_BANG] = ACTIONS(2507), [anon_sym_PLUS_PLUS] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(2507), @@ -118191,7 +116439,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2507), [sym_comment] = ACTIONS(3), }, - [876] = { + [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_comment] = ACTIONS(3), + }, + [840] = { [sym_identifier] = ACTIONS(2509), [sym_variable] = ACTIONS(2511), [sym_pipe_variable] = ACTIONS(2511), @@ -118203,10 +116541,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118257,12 +116600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2509), [anon_sym_PLUS] = ACTIONS(2509), [anon_sym_DASH] = 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_list] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), [anon_sym_BANG] = ACTIONS(2511), [anon_sym_PLUS_PLUS] = ACTIONS(2511), [anon_sym_DASH_DASH] = ACTIONS(2511), @@ -118281,7 +116619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2511), [sym_comment] = ACTIONS(3), }, - [877] = { + [841] = { [sym_identifier] = ACTIONS(2513), [sym_variable] = ACTIONS(2515), [sym_pipe_variable] = ACTIONS(2515), @@ -118293,10 +116631,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118347,12 +116690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2513), [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_DASH] = 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_list] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), [anon_sym_BANG] = ACTIONS(2515), [anon_sym_PLUS_PLUS] = ACTIONS(2515), [anon_sym_DASH_DASH] = ACTIONS(2515), @@ -118371,7 +116709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2515), [sym_comment] = ACTIONS(3), }, - [878] = { + [842] = { [sym_identifier] = ACTIONS(2517), [sym_variable] = ACTIONS(2519), [sym_pipe_variable] = ACTIONS(2519), @@ -118383,10 +116721,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118437,12 +116780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2517), [anon_sym_PLUS] = ACTIONS(2517), [anon_sym_DASH] = 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_list] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), [anon_sym_BANG] = ACTIONS(2519), [anon_sym_PLUS_PLUS] = ACTIONS(2519), [anon_sym_DASH_DASH] = ACTIONS(2519), @@ -118461,7 +116799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2519), [sym_comment] = ACTIONS(3), }, - [879] = { + [843] = { [sym_identifier] = ACTIONS(2521), [sym_variable] = ACTIONS(2523), [sym_pipe_variable] = ACTIONS(2523), @@ -118473,10 +116811,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118527,12 +116870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2521), [anon_sym_PLUS] = ACTIONS(2521), [anon_sym_DASH] = 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_list] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), [anon_sym_BANG] = ACTIONS(2523), [anon_sym_PLUS_PLUS] = ACTIONS(2523), [anon_sym_DASH_DASH] = ACTIONS(2523), @@ -118551,7 +116889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, - [880] = { + [844] = { [sym_identifier] = ACTIONS(2525), [sym_variable] = ACTIONS(2527), [sym_pipe_variable] = ACTIONS(2527), @@ -118563,10 +116901,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118617,12 +116960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2525), [anon_sym_PLUS] = ACTIONS(2525), [anon_sym_DASH] = 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_list] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), [anon_sym_BANG] = ACTIONS(2527), [anon_sym_PLUS_PLUS] = ACTIONS(2527), [anon_sym_DASH_DASH] = ACTIONS(2527), @@ -118641,7 +116979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, - [881] = { + [845] = { [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -118653,10 +116991,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118707,12 +117050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2529), [anon_sym_PLUS] = ACTIONS(2529), [anon_sym_DASH] = 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_list] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), [anon_sym_BANG] = ACTIONS(2531), [anon_sym_PLUS_PLUS] = ACTIONS(2531), [anon_sym_DASH_DASH] = ACTIONS(2531), @@ -118731,7 +117069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [882] = { + [846] = { [sym_identifier] = ACTIONS(2533), [sym_variable] = ACTIONS(2535), [sym_pipe_variable] = ACTIONS(2535), @@ -118743,10 +117081,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118797,12 +117140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2533), [anon_sym_DASH] = 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_list] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), [anon_sym_BANG] = ACTIONS(2535), [anon_sym_PLUS_PLUS] = ACTIONS(2535), [anon_sym_DASH_DASH] = ACTIONS(2535), @@ -118821,7 +117159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, - [883] = { + [847] = { [sym_identifier] = ACTIONS(2537), [sym_variable] = ACTIONS(2539), [sym_pipe_variable] = ACTIONS(2539), @@ -118833,10 +117171,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118887,12 +117230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2537), [anon_sym_PLUS] = ACTIONS(2537), [anon_sym_DASH] = 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_list] = ACTIONS(2537), - [anon_sym_LT_LT] = ACTIONS(2537), [anon_sym_BANG] = ACTIONS(2539), [anon_sym_PLUS_PLUS] = ACTIONS(2539), [anon_sym_DASH_DASH] = ACTIONS(2539), @@ -118911,7 +117249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(3), }, - [884] = { + [848] = { [sym_identifier] = ACTIONS(2541), [sym_variable] = ACTIONS(2543), [sym_pipe_variable] = ACTIONS(2543), @@ -118923,10 +117261,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118977,12 +117320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2541), [anon_sym_PLUS] = ACTIONS(2541), [anon_sym_DASH] = 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_list] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), [anon_sym_BANG] = ACTIONS(2543), [anon_sym_PLUS_PLUS] = ACTIONS(2543), [anon_sym_DASH_DASH] = ACTIONS(2543), @@ -119001,7 +117339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, - [885] = { + [849] = { [sym_identifier] = ACTIONS(2545), [sym_variable] = ACTIONS(2547), [sym_pipe_variable] = ACTIONS(2547), @@ -119013,10 +117351,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -119067,12 +117410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2545), [anon_sym_PLUS] = ACTIONS(2545), [anon_sym_DASH] = 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_list] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), [anon_sym_BANG] = ACTIONS(2547), [anon_sym_PLUS_PLUS] = ACTIONS(2547), [anon_sym_DASH_DASH] = ACTIONS(2547), @@ -119091,7 +117429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2547), [sym_comment] = ACTIONS(3), }, - [886] = { + [850] = { [sym_identifier] = ACTIONS(2549), [sym_variable] = ACTIONS(2551), [sym_pipe_variable] = ACTIONS(2551), @@ -119103,10 +117441,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -119157,12 +117500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2549), [anon_sym_PLUS] = ACTIONS(2549), [anon_sym_DASH] = 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_list] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), [anon_sym_BANG] = ACTIONS(2551), [anon_sym_PLUS_PLUS] = ACTIONS(2551), [anon_sym_DASH_DASH] = ACTIONS(2551), @@ -119181,7 +117519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2551), [sym_comment] = ACTIONS(3), }, - [887] = { + [851] = { [sym_identifier] = ACTIONS(2553), [sym_variable] = ACTIONS(2555), [sym_pipe_variable] = ACTIONS(2555), @@ -119193,10 +117531,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -119247,12 +117590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2553), [anon_sym_PLUS] = ACTIONS(2553), [anon_sym_DASH] = 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_list] = ACTIONS(2553), - [anon_sym_LT_LT] = ACTIONS(2553), [anon_sym_BANG] = ACTIONS(2555), [anon_sym_PLUS_PLUS] = ACTIONS(2555), [anon_sym_DASH_DASH] = ACTIONS(2555), @@ -119271,7 +117609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2555), [sym_comment] = ACTIONS(3), }, - [888] = { + [852] = { [sym_identifier] = ACTIONS(2557), [sym_variable] = ACTIONS(2559), [sym_pipe_variable] = ACTIONS(2559), @@ -119283,10 +117621,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -119337,12 +117680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2557), [anon_sym_PLUS] = ACTIONS(2557), [anon_sym_DASH] = 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_list] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), [anon_sym_BANG] = ACTIONS(2559), [anon_sym_PLUS_PLUS] = ACTIONS(2559), [anon_sym_DASH_DASH] = ACTIONS(2559), @@ -119361,6711 +117699,5400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [889] = { - [aux_sym_if_statement_repeat1] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [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_comment] = ACTIONS(3), }, - [890] = { - [aux_sym_if_statement_repeat1] = STATE(892), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [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_comment] = ACTIONS(3), }, - [891] = { - [aux_sym_if_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(2021), - [sym_variable] = ACTIONS(2023), - [sym_pipe_variable] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_newtype] = ACTIONS(2021), - [anon_sym_shape] = ACTIONS(2021), - [anon_sym_tuple] = ACTIONS(2021), - [anon_sym_clone] = ACTIONS(2021), - [anon_sym_new] = ACTIONS(2021), - [anon_sym_print] = ACTIONS(2021), - [anon_sym_namespace] = ACTIONS(2021), - [anon_sym_BSLASH] = ACTIONS(2023), - [anon_sym_self] = ACTIONS(2021), - [anon_sym_parent] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2021), - [anon_sym_LT_LT_LT] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_throw] = ACTIONS(2021), - [anon_sym_echo] = ACTIONS(2021), - [anon_sym_unset] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_concurrent] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_function] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_elseif] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2564), - [anon_sym_switch] = ACTIONS(2021), - [anon_sym_foreach] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_using] = ACTIONS(2021), - [sym_float] = ACTIONS(2023), - [sym_integer] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_True] = ACTIONS(2021), - [anon_sym_TRUE] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_False] = ACTIONS(2021), - [anon_sym_FALSE] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [anon_sym_Null] = ACTIONS(2021), - [anon_sym_NULL] = ACTIONS(2021), - [sym_string] = ACTIONS(2023), - [anon_sym_AT] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_array] = ACTIONS(2021), - [anon_sym_varray] = ACTIONS(2021), - [anon_sym_darray] = ACTIONS(2021), - [anon_sym_vec] = ACTIONS(2021), - [anon_sym_dict] = ACTIONS(2021), - [anon_sym_keyset] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_include] = ACTIONS(2021), - [anon_sym_include_once] = ACTIONS(2021), - [anon_sym_require] = ACTIONS(2021), - [anon_sym_require_once] = ACTIONS(2021), - [anon_sym_list] = ACTIONS(2021), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_await] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_trait] = ACTIONS(2021), - [anon_sym_interface] = ACTIONS(2021), - [anon_sym_class] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_abstract] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2023), - [sym_final_modifier] = ACTIONS(2021), - [sym_xhp_modifier] = ACTIONS(2021), - [sym_xhp_identifier] = ACTIONS(2021), - [sym_xhp_class_identifier] = ACTIONS(2023), + [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_comment] = ACTIONS(3), }, - [892] = { - [aux_sym_if_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(2031), - [sym_variable] = ACTIONS(2033), - [sym_pipe_variable] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_newtype] = ACTIONS(2031), - [anon_sym_shape] = ACTIONS(2031), - [anon_sym_tuple] = ACTIONS(2031), - [anon_sym_clone] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_BSLASH] = ACTIONS(2033), - [anon_sym_self] = ACTIONS(2031), - [anon_sym_parent] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_echo] = ACTIONS(2031), - [anon_sym_unset] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_concurrent] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_elseif] = ACTIONS(2567), + [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(2031), - [anon_sym_foreach] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_using] = ACTIONS(2031), - [sym_float] = ACTIONS(2033), - [sym_integer] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_True] = ACTIONS(2031), - [anon_sym_TRUE] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_False] = ACTIONS(2031), - [anon_sym_FALSE] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_Null] = ACTIONS(2031), - [anon_sym_NULL] = ACTIONS(2031), - [sym_string] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_array] = ACTIONS(2031), - [anon_sym_varray] = ACTIONS(2031), - [anon_sym_darray] = ACTIONS(2031), - [anon_sym_vec] = ACTIONS(2031), - [anon_sym_dict] = ACTIONS(2031), - [anon_sym_keyset] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_include] = ACTIONS(2031), - [anon_sym_include_once] = ACTIONS(2031), - [anon_sym_require] = ACTIONS(2031), - [anon_sym_require_once] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2033), - [sym_final_modifier] = ACTIONS(2031), - [sym_xhp_modifier] = ACTIONS(2031), - [sym_xhp_identifier] = ACTIONS(2031), - [sym_xhp_class_identifier] = ACTIONS(2033), + [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), }, - [893] = { - [aux_sym_if_statement_repeat1] = STATE(892), - [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_BSLASH] = ACTIONS(2041), - [anon_sym_self] = ACTIONS(2039), - [anon_sym_parent] = ACTIONS(2039), - [anon_sym_static] = 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(2567), - [anon_sym_else] = ACTIONS(2571), - [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_include] = ACTIONS(2039), - [anon_sym_include_once] = ACTIONS(2039), - [anon_sym_require] = ACTIONS(2039), - [anon_sym_require_once] = ACTIONS(2039), - [anon_sym_list] = ACTIONS(2039), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [894] = { - [aux_sym_if_statement_repeat1] = STATE(894), - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2021), - [sym_variable] = ACTIONS(2023), - [sym_pipe_variable] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_newtype] = ACTIONS(2021), - [anon_sym_shape] = ACTIONS(2021), - [anon_sym_tuple] = ACTIONS(2021), - [anon_sym_clone] = ACTIONS(2021), - [anon_sym_new] = ACTIONS(2021), - [anon_sym_print] = ACTIONS(2021), - [anon_sym_namespace] = ACTIONS(2021), - [anon_sym_BSLASH] = ACTIONS(2023), - [anon_sym_self] = ACTIONS(2021), - [anon_sym_parent] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2021), - [anon_sym_LT_LT_LT] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_throw] = ACTIONS(2021), - [anon_sym_echo] = ACTIONS(2021), - [anon_sym_unset] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_concurrent] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_function] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), + [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(2576), - [anon_sym_switch] = ACTIONS(2021), - [anon_sym_foreach] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_using] = ACTIONS(2021), - [sym_float] = ACTIONS(2023), - [sym_integer] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_True] = ACTIONS(2021), - [anon_sym_TRUE] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_False] = ACTIONS(2021), - [anon_sym_FALSE] = ACTIONS(2021), - [anon_sym_null] = ACTIONS(2021), - [anon_sym_Null] = ACTIONS(2021), - [anon_sym_NULL] = ACTIONS(2021), - [sym_string] = ACTIONS(2023), - [anon_sym_AT] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_array] = ACTIONS(2021), - [anon_sym_varray] = ACTIONS(2021), - [anon_sym_darray] = ACTIONS(2021), - [anon_sym_vec] = ACTIONS(2021), - [anon_sym_dict] = ACTIONS(2021), - [anon_sym_keyset] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_PLUS] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_include] = ACTIONS(2021), - [anon_sym_include_once] = ACTIONS(2021), - [anon_sym_require] = ACTIONS(2021), - [anon_sym_require_once] = ACTIONS(2021), - [anon_sym_list] = ACTIONS(2021), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_await] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_trait] = ACTIONS(2021), - [anon_sym_interface] = ACTIONS(2021), - [anon_sym_class] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_abstract] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2023), - [sym_final_modifier] = ACTIONS(2021), - [sym_xhp_modifier] = ACTIONS(2021), - [sym_xhp_identifier] = ACTIONS(2021), - [sym_xhp_class_identifier] = ACTIONS(2023), + [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), }, - [895] = { - [aux_sym_if_statement_repeat1] = STATE(897), - [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_BSLASH] = ACTIONS(2041), - [anon_sym_self] = ACTIONS(2039), - [anon_sym_parent] = ACTIONS(2039), - [anon_sym_static] = 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(2579), - [anon_sym_else] = ACTIONS(2581), - [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_include] = ACTIONS(2039), - [anon_sym_include_once] = ACTIONS(2039), - [anon_sym_require] = ACTIONS(2039), - [anon_sym_require_once] = ACTIONS(2039), - [anon_sym_list] = ACTIONS(2039), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [896] = { - [sym_qualified_identifier] = STATE(4579), - [sym_compound_statement] = STATE(1646), - [aux_sym_qualified_identifier_repeat1] = STATE(1970), - [sym_identifier] = ACTIONS(1989), - [sym_variable] = ACTIONS(1991), - [sym_pipe_variable] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_newtype] = ACTIONS(1993), - [anon_sym_shape] = ACTIONS(1993), - [anon_sym_tuple] = ACTIONS(1993), - [anon_sym_clone] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(1993), - [anon_sym_parent] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_LT_LT_LT] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_echo] = ACTIONS(1993), - [anon_sym_unset] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_concurrent] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_foreach] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1993), - [sym_float] = ACTIONS(1991), - [sym_integer] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_True] = ACTIONS(1993), - [anon_sym_TRUE] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_False] = ACTIONS(1993), - [anon_sym_FALSE] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [anon_sym_Null] = ACTIONS(1993), - [anon_sym_NULL] = ACTIONS(1993), - [sym_string] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_array] = ACTIONS(1993), - [anon_sym_varray] = ACTIONS(1993), - [anon_sym_darray] = ACTIONS(1993), - [anon_sym_vec] = ACTIONS(1993), - [anon_sym_dict] = ACTIONS(1993), - [anon_sym_keyset] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_include] = ACTIONS(1993), - [anon_sym_include_once] = ACTIONS(1993), - [anon_sym_require] = ACTIONS(1993), - [anon_sym_require_once] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [sym_final_modifier] = ACTIONS(1993), - [sym_xhp_modifier] = ACTIONS(1993), - [sym_xhp_identifier] = ACTIONS(1993), - [sym_xhp_class_identifier] = ACTIONS(1991), + [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_comment] = ACTIONS(3), }, - [897] = { - [aux_sym_if_statement_repeat1] = STATE(894), - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2031), - [sym_variable] = ACTIONS(2033), - [sym_pipe_variable] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_newtype] = ACTIONS(2031), - [anon_sym_shape] = ACTIONS(2031), - [anon_sym_tuple] = ACTIONS(2031), - [anon_sym_clone] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_BSLASH] = ACTIONS(2033), - [anon_sym_self] = ACTIONS(2031), - [anon_sym_parent] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_echo] = ACTIONS(2031), - [anon_sym_unset] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_concurrent] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_elseif] = ACTIONS(2579), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_foreach] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_using] = ACTIONS(2031), - [sym_float] = ACTIONS(2033), - [sym_integer] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_True] = ACTIONS(2031), - [anon_sym_TRUE] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_False] = ACTIONS(2031), - [anon_sym_FALSE] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_Null] = ACTIONS(2031), - [anon_sym_NULL] = ACTIONS(2031), - [sym_string] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_array] = ACTIONS(2031), - [anon_sym_varray] = ACTIONS(2031), - [anon_sym_darray] = ACTIONS(2031), - [anon_sym_vec] = ACTIONS(2031), - [anon_sym_dict] = ACTIONS(2031), - [anon_sym_keyset] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_include] = ACTIONS(2031), - [anon_sym_include_once] = ACTIONS(2031), - [anon_sym_require] = ACTIONS(2031), - [anon_sym_require_once] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2033), - [sym_final_modifier] = ACTIONS(2031), - [sym_xhp_modifier] = ACTIONS(2031), - [sym_xhp_identifier] = ACTIONS(2031), - [sym_xhp_class_identifier] = ACTIONS(2033), + [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_comment] = ACTIONS(3), }, - [898] = { - [aux_sym_if_statement_repeat1] = STATE(899), - [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_BSLASH] = ACTIONS(2041), - [anon_sym_self] = ACTIONS(2039), - [anon_sym_parent] = ACTIONS(2039), - [anon_sym_static] = 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(2579), - [anon_sym_else] = ACTIONS(2585), - [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_include] = ACTIONS(2039), - [anon_sym_include_once] = ACTIONS(2039), - [anon_sym_require] = ACTIONS(2039), - [anon_sym_require_once] = ACTIONS(2039), - [anon_sym_list] = ACTIONS(2039), - [anon_sym_LT_LT] = 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), + [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), }, - [899] = { - [aux_sym_if_statement_repeat1] = STATE(894), - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2031), - [sym_variable] = ACTIONS(2033), - [sym_pipe_variable] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_newtype] = ACTIONS(2031), - [anon_sym_shape] = ACTIONS(2031), - [anon_sym_tuple] = ACTIONS(2031), - [anon_sym_clone] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_BSLASH] = ACTIONS(2033), - [anon_sym_self] = ACTIONS(2031), - [anon_sym_parent] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_echo] = ACTIONS(2031), - [anon_sym_unset] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_concurrent] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_elseif] = ACTIONS(2579), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_foreach] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_using] = ACTIONS(2031), - [sym_float] = ACTIONS(2033), - [sym_integer] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_True] = ACTIONS(2031), - [anon_sym_TRUE] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_False] = ACTIONS(2031), - [anon_sym_FALSE] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_Null] = ACTIONS(2031), - [anon_sym_NULL] = ACTIONS(2031), - [sym_string] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_array] = ACTIONS(2031), - [anon_sym_varray] = ACTIONS(2031), - [anon_sym_darray] = ACTIONS(2031), - [anon_sym_vec] = ACTIONS(2031), - [anon_sym_dict] = ACTIONS(2031), - [anon_sym_keyset] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_include] = ACTIONS(2031), - [anon_sym_include_once] = ACTIONS(2031), - [anon_sym_require] = ACTIONS(2031), - [anon_sym_require_once] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2033), - [sym_final_modifier] = ACTIONS(2031), - [sym_xhp_modifier] = ACTIONS(2031), - [sym_xhp_identifier] = ACTIONS(2031), - [sym_xhp_class_identifier] = ACTIONS(2033), + [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_comment] = ACTIONS(3), }, - [900] = { - [aux_sym_if_statement_repeat1] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [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_comment] = ACTIONS(3), }, - [901] = { - [aux_sym_if_statement_repeat1] = STATE(902), - [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_BSLASH] = ACTIONS(2041), - [anon_sym_self] = ACTIONS(2039), - [anon_sym_parent] = ACTIONS(2039), - [anon_sym_static] = 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(2567), - [anon_sym_else] = ACTIONS(2589), - [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_include] = ACTIONS(2039), - [anon_sym_include_once] = ACTIONS(2039), - [anon_sym_require] = ACTIONS(2039), - [anon_sym_require_once] = ACTIONS(2039), - [anon_sym_list] = ACTIONS(2039), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [902] = { - [aux_sym_if_statement_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(2031), - [sym_variable] = ACTIONS(2033), - [sym_pipe_variable] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_newtype] = ACTIONS(2031), - [anon_sym_shape] = ACTIONS(2031), - [anon_sym_tuple] = ACTIONS(2031), - [anon_sym_clone] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2031), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_BSLASH] = ACTIONS(2033), - [anon_sym_self] = ACTIONS(2031), - [anon_sym_parent] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_LT_LT_LT] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_echo] = ACTIONS(2031), - [anon_sym_unset] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_concurrent] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_elseif] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_foreach] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_using] = ACTIONS(2031), - [sym_float] = ACTIONS(2033), - [sym_integer] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_True] = ACTIONS(2031), - [anon_sym_TRUE] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_False] = ACTIONS(2031), - [anon_sym_FALSE] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_Null] = ACTIONS(2031), - [anon_sym_NULL] = ACTIONS(2031), - [sym_string] = ACTIONS(2033), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_array] = ACTIONS(2031), - [anon_sym_varray] = ACTIONS(2031), - [anon_sym_darray] = ACTIONS(2031), - [anon_sym_vec] = ACTIONS(2031), - [anon_sym_dict] = ACTIONS(2031), - [anon_sym_keyset] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_include] = ACTIONS(2031), - [anon_sym_include_once] = ACTIONS(2031), - [anon_sym_require] = ACTIONS(2031), - [anon_sym_require_once] = ACTIONS(2031), - [anon_sym_list] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_interface] = ACTIONS(2031), - [anon_sym_class] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_abstract] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2033), - [sym_final_modifier] = ACTIONS(2031), - [sym_xhp_modifier] = ACTIONS(2031), - [sym_xhp_identifier] = ACTIONS(2031), - [sym_xhp_class_identifier] = ACTIONS(2033), + [866] = { + [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(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), }, - [903] = { - [aux_sym_if_statement_repeat1] = STATE(902), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [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), }, - [904] = { - [sym_qualified_identifier] = STATE(4405), - [sym_compound_statement] = STATE(1524), - [aux_sym_qualified_identifier_repeat1] = STATE(1970), - [ts_builtin_sym_end] = ACTIONS(1991), - [sym_identifier] = ACTIONS(1989), - [sym_variable] = ACTIONS(1991), - [sym_pipe_variable] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_newtype] = ACTIONS(1993), - [anon_sym_shape] = ACTIONS(1993), - [anon_sym_tuple] = ACTIONS(1993), - [anon_sym_clone] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1993), - [anon_sym_namespace] = ACTIONS(929), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_self] = ACTIONS(1993), - [anon_sym_parent] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_LT_LT_LT] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_echo] = ACTIONS(1993), - [anon_sym_unset] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_concurrent] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_function] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_switch] = ACTIONS(1993), - [anon_sym_foreach] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1993), - [sym_float] = ACTIONS(1991), - [sym_integer] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_True] = ACTIONS(1993), - [anon_sym_TRUE] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_False] = ACTIONS(1993), - [anon_sym_FALSE] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1993), - [anon_sym_Null] = ACTIONS(1993), - [anon_sym_NULL] = ACTIONS(1993), - [sym_string] = ACTIONS(1991), - [anon_sym_AT] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1991), - [anon_sym_array] = ACTIONS(1993), - [anon_sym_varray] = ACTIONS(1993), - [anon_sym_darray] = ACTIONS(1993), - [anon_sym_vec] = ACTIONS(1993), - [anon_sym_dict] = ACTIONS(1993), - [anon_sym_keyset] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_include] = ACTIONS(1993), - [anon_sym_include_once] = ACTIONS(1993), - [anon_sym_require] = ACTIONS(1993), - [anon_sym_require_once] = ACTIONS(1993), - [anon_sym_list] = ACTIONS(1993), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_interface] = ACTIONS(1993), - [anon_sym_class] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_abstract] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [sym_final_modifier] = ACTIONS(1993), - [sym_xhp_modifier] = ACTIONS(1993), - [sym_xhp_identifier] = ACTIONS(1993), - [sym_xhp_class_identifier] = ACTIONS(1991), + [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), [sym_comment] = ACTIONS(3), }, - [905] = { - [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_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = 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_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [906] = { - [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_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = 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_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [907] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [908] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [872] = { + [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), }, - [909] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [910] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [911] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [912] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [913] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [914] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [915] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [916] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [917] = { - [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_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = 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_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_LT_LT] = 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), + [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), }, - [918] = { - [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_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = 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_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_LT_LT] = 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), + [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), }, - [919] = { - [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_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = 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_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_LT_LT] = 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), + [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), }, - [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_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = 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_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_LT_LT] = 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), + [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), }, - [921] = { - [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_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = 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_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_LT_LT] = 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), + [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), }, - [922] = { - [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_BSLASH] = ACTIONS(2071), - [anon_sym_self] = ACTIONS(2069), - [anon_sym_parent] = ACTIONS(2069), - [anon_sym_static] = 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_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_include] = ACTIONS(2069), - [anon_sym_include_once] = ACTIONS(2069), - [anon_sym_require] = ACTIONS(2069), - [anon_sym_require_once] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_LT_LT] = 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), + [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), }, - [923] = { - [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_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = 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_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_LT_LT] = 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), + [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), }, - [924] = { - [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_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = 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_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_LT_LT] = 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), + [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), }, - [925] = { - [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_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = 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_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_LT_LT] = 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), + [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), }, - [926] = { - [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_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = 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_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_LT_LT] = 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), + [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), }, - [927] = { - [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_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = 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_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_LT_LT] = 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), + [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), }, - [928] = { - [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_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = 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_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_LT_LT] = 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] = { - [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_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = 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_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_LT_LT] = 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), + [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), }, - [930] = { - [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_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = 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_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_LT_LT] = 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), + [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), }, - [931] = { - [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_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = 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_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_LT_LT] = 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), + [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), }, - [932] = { - [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_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = 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_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_LT_LT] = 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), + [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), }, - [933] = { - [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_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = 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_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_LT_LT] = 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), + [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), }, - [934] = { - [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_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = 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_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_LT_LT] = 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), + [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), }, - [935] = { - [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_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = 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_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_LT_LT] = 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), - }, - [936] = { - [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_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = 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_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_LT_LT] = 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), + [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), }, - [937] = { - [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_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = 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_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_LT_LT] = 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), + [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), }, - [938] = { - [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_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = 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_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_LT_LT] = 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), + [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), }, - [939] = { - [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_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = 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_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_LT_LT] = 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), + [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), }, - [940] = { - [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_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = 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_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_LT_LT] = 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), + [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), }, - [941] = { - [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_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = 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_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_LT_LT] = 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), + [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), }, - [942] = { - [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_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = 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_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_LT_LT] = 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), - }, - [943] = { - [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_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = 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_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_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_LT_LT] = 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), + [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), }, - [944] = { - [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_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = 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_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_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_LT_LT] = 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), + [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), }, - [945] = { - [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_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = 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_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_LT_LT] = 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), + [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), }, - [946] = { - [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_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = 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_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_LT_LT] = 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), + [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), }, - [947] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_elseif] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), + [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), }, - [948] = { - [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_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = 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_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_LT_LT] = 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), + [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), }, - [949] = { - [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_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = 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_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_LT_LT] = 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), + [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), }, - [950] = { - [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_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = 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_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_LT_LT] = 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), + [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), }, - [951] = { - [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_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = 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_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_LT_LT] = 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(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_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = 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_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_LT_LT] = 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), - }, - [953] = { - [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_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = 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_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_LT_LT] = 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), - }, - [954] = { - [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_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = 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_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_LT_LT] = 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), - }, - [955] = { - [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_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = 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_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_LT_LT] = 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), - }, - [956] = { - [sym_identifier] = ACTIONS(2085), - [sym_variable] = ACTIONS(2087), - [sym_pipe_variable] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_newtype] = ACTIONS(2085), - [anon_sym_shape] = ACTIONS(2085), - [anon_sym_tuple] = ACTIONS(2085), - [anon_sym_clone] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_BSLASH] = ACTIONS(2087), - [anon_sym_self] = ACTIONS(2085), - [anon_sym_parent] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_LT_LT_LT] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_echo] = ACTIONS(2085), - [anon_sym_unset] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_concurrent] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_elseif] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_foreach] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [sym_integer] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_True] = ACTIONS(2085), - [anon_sym_TRUE] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_False] = ACTIONS(2085), - [anon_sym_FALSE] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_Null] = ACTIONS(2085), - [anon_sym_NULL] = ACTIONS(2085), - [sym_string] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_array] = ACTIONS(2085), - [anon_sym_varray] = ACTIONS(2085), - [anon_sym_darray] = ACTIONS(2085), - [anon_sym_vec] = ACTIONS(2085), - [anon_sym_dict] = ACTIONS(2085), - [anon_sym_keyset] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_include_once] = ACTIONS(2085), - [anon_sym_require] = ACTIONS(2085), - [anon_sym_require_once] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2087), - [sym_final_modifier] = ACTIONS(2085), - [sym_xhp_modifier] = ACTIONS(2085), - [sym_xhp_identifier] = ACTIONS(2085), - [sym_xhp_class_identifier] = ACTIONS(2087), - [sym_comment] = ACTIONS(3), - }, - [957] = { - [sym_identifier] = ACTIONS(2081), - [sym_variable] = ACTIONS(2083), - [sym_pipe_variable] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_newtype] = ACTIONS(2081), - [anon_sym_shape] = ACTIONS(2081), - [anon_sym_tuple] = ACTIONS(2081), - [anon_sym_clone] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_BSLASH] = ACTIONS(2083), - [anon_sym_self] = ACTIONS(2081), - [anon_sym_parent] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_echo] = ACTIONS(2081), - [anon_sym_unset] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_concurrent] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_elseif] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_foreach] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [sym_integer] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_True] = ACTIONS(2081), - [anon_sym_TRUE] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_False] = ACTIONS(2081), - [anon_sym_FALSE] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_Null] = ACTIONS(2081), - [anon_sym_NULL] = ACTIONS(2081), - [sym_string] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_array] = ACTIONS(2081), - [anon_sym_varray] = ACTIONS(2081), - [anon_sym_darray] = ACTIONS(2081), - [anon_sym_vec] = ACTIONS(2081), - [anon_sym_dict] = ACTIONS(2081), - [anon_sym_keyset] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_include] = ACTIONS(2081), - [anon_sym_include_once] = ACTIONS(2081), - [anon_sym_require] = ACTIONS(2081), - [anon_sym_require_once] = ACTIONS(2081), - [anon_sym_list] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2083), - [sym_final_modifier] = ACTIONS(2081), - [sym_xhp_modifier] = ACTIONS(2081), - [sym_xhp_identifier] = ACTIONS(2081), - [sym_xhp_class_identifier] = ACTIONS(2083), - [sym_comment] = ACTIONS(3), - }, - [958] = { - [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_BSLASH] = ACTIONS(2079), - [anon_sym_self] = ACTIONS(2077), - [anon_sym_parent] = ACTIONS(2077), - [anon_sym_static] = 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(2077), - [anon_sym_else] = ACTIONS(2077), - [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_include] = ACTIONS(2077), - [anon_sym_include_once] = ACTIONS(2077), - [anon_sym_require] = ACTIONS(2077), - [anon_sym_require_once] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_LT_LT] = 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), - }, - [959] = { - [sym_identifier] = ACTIONS(2073), - [sym_variable] = ACTIONS(2075), - [sym_pipe_variable] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_newtype] = ACTIONS(2073), - [anon_sym_shape] = ACTIONS(2073), - [anon_sym_tuple] = ACTIONS(2073), - [anon_sym_clone] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_print] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2073), - [anon_sym_BSLASH] = ACTIONS(2075), - [anon_sym_self] = ACTIONS(2073), - [anon_sym_parent] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_LT_LT_LT] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_echo] = ACTIONS(2073), - [anon_sym_unset] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_concurrent] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_function] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_elseif] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_foreach] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_using] = ACTIONS(2073), - [sym_float] = ACTIONS(2075), - [sym_integer] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_True] = ACTIONS(2073), - [anon_sym_TRUE] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_False] = ACTIONS(2073), - [anon_sym_FALSE] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [anon_sym_Null] = ACTIONS(2073), - [anon_sym_NULL] = ACTIONS(2073), - [sym_string] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_array] = ACTIONS(2073), - [anon_sym_varray] = ACTIONS(2073), - [anon_sym_darray] = ACTIONS(2073), - [anon_sym_vec] = ACTIONS(2073), - [anon_sym_dict] = ACTIONS(2073), - [anon_sym_keyset] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_include] = ACTIONS(2073), - [anon_sym_include_once] = ACTIONS(2073), - [anon_sym_require] = ACTIONS(2073), - [anon_sym_require_once] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_abstract] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2075), - [sym_final_modifier] = ACTIONS(2073), - [sym_xhp_modifier] = ACTIONS(2073), - [sym_xhp_identifier] = ACTIONS(2073), - [sym_xhp_class_identifier] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - }, - [960] = { - [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_BSLASH] = ACTIONS(2071), - [anon_sym_self] = ACTIONS(2069), - [anon_sym_parent] = ACTIONS(2069), - [anon_sym_static] = 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(2069), - [anon_sym_else] = ACTIONS(2069), - [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_include] = ACTIONS(2069), - [anon_sym_include_once] = ACTIONS(2069), - [anon_sym_require] = ACTIONS(2069), - [anon_sym_require_once] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_LT_LT] = 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), - }, - [961] = { - [sym_identifier] = ACTIONS(2065), - [sym_variable] = ACTIONS(2067), - [sym_pipe_variable] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_newtype] = ACTIONS(2065), - [anon_sym_shape] = ACTIONS(2065), - [anon_sym_tuple] = ACTIONS(2065), - [anon_sym_clone] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_print] = ACTIONS(2065), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_BSLASH] = ACTIONS(2067), - [anon_sym_self] = ACTIONS(2065), - [anon_sym_parent] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_LT_LT_LT] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_throw] = ACTIONS(2065), - [anon_sym_echo] = ACTIONS(2065), - [anon_sym_unset] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_concurrent] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_function] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_elseif] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2065), - [anon_sym_switch] = ACTIONS(2065), - [anon_sym_foreach] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [sym_float] = ACTIONS(2067), - [sym_integer] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_True] = ACTIONS(2065), - [anon_sym_TRUE] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_False] = ACTIONS(2065), - [anon_sym_FALSE] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [anon_sym_Null] = ACTIONS(2065), - [anon_sym_NULL] = ACTIONS(2065), - [sym_string] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_array] = ACTIONS(2065), - [anon_sym_varray] = ACTIONS(2065), - [anon_sym_darray] = ACTIONS(2065), - [anon_sym_vec] = ACTIONS(2065), - [anon_sym_dict] = ACTIONS(2065), - [anon_sym_keyset] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_include] = ACTIONS(2065), - [anon_sym_include_once] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(2065), - [anon_sym_require_once] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_abstract] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2067), - [sym_final_modifier] = ACTIONS(2065), - [sym_xhp_modifier] = ACTIONS(2065), - [sym_xhp_identifier] = ACTIONS(2065), - [sym_xhp_class_identifier] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - }, - [962] = { - [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_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = 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_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_LT_LT] = 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), - }, - [963] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_elseif] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), }, - [964] = { - [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_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = 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_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_LT_LT] = 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), + [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), }, - [965] = { + [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), @@ -126077,12 +123104,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -126097,8 +123128,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2061), [anon_sym_const] = ACTIONS(2061), [anon_sym_if] = ACTIONS(2061), - [anon_sym_elseif] = ACTIONS(2061), - [anon_sym_else] = 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), @@ -126129,12 +123160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2061), [anon_sym_PLUS] = ACTIONS(2061), [anon_sym_DASH] = 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_list] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(2061), [anon_sym_BANG] = ACTIONS(2063), [anon_sym_PLUS_PLUS] = ACTIONS(2063), [anon_sym_DASH_DASH] = ACTIONS(2063), @@ -126153,183 +123179,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2063), [sym_comment] = ACTIONS(3), }, - [966] = { - [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_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = 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_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_LT_LT] = 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), - }, - [967] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_case] = ACTIONS(2003), - [anon_sym_default] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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), }, - [968] = { + [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), @@ -126341,12 +123282,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -126393,12 +123338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2057), [anon_sym_PLUS] = ACTIONS(2057), [anon_sym_DASH] = 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_list] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2059), [anon_sym_PLUS_PLUS] = ACTIONS(2059), [anon_sym_DASH_DASH] = ACTIONS(2059), @@ -126417,95 +123357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [969] = { - [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_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = 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_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_LT_LT] = 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), - }, - [970] = { + [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), @@ -126517,12 +123371,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -126537,9 +123395,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -126569,12 +123427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2057), [anon_sym_PLUS] = ACTIONS(2057), [anon_sym_DASH] = 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_list] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), [anon_sym_BANG] = ACTIONS(2059), [anon_sym_PLUS_PLUS] = ACTIONS(2059), [anon_sym_DASH_DASH] = ACTIONS(2059), @@ -126593,271 +123446,1418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [971] = { - [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_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = 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_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_LT_LT] = 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), + [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), }, - [972] = { - [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_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = 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_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_LT_LT] = 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), + [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), }, - [973] = { - [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_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = 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_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_LT_LT] = 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), + [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), }, - [974] = { + [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), @@ -126869,10 +124869,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -126889,9 +124894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -126921,12 +124926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2549), [anon_sym_PLUS] = ACTIONS(2549), [anon_sym_DASH] = 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_list] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), [anon_sym_BANG] = ACTIONS(2551), [anon_sym_PLUS_PLUS] = ACTIONS(2551), [anon_sym_DASH_DASH] = ACTIONS(2551), @@ -126945,711 +124945,975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2551), [sym_comment] = ACTIONS(3), }, - [975] = { - [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_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = 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_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_LT_LT] = 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), + [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), }, - [976] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_elseif] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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), }, - [977] = { - [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_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = 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_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_LT_LT] = 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), + [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), }, - [978] = { - [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_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = 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_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_LT_LT] = 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), + [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), }, - [979] = { - [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_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = 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_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_LT_LT] = 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), + [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), }, - [980] = { - [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_BSLASH] = ACTIONS(2063), - [anon_sym_self] = ACTIONS(2061), - [anon_sym_parent] = ACTIONS(2061), - [anon_sym_static] = 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_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_include] = ACTIONS(2061), - [anon_sym_include_once] = ACTIONS(2061), - [anon_sym_require] = ACTIONS(2061), - [anon_sym_require_once] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_LT_LT] = 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), + [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), }, - [981] = { - [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_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = 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_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_LT_LT] = 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), + [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), }, - [982] = { - [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_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = 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_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_LT_LT] = 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), + [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), }, - [983] = { + [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), @@ -127661,10 +125925,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -127681,9 +125950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -127713,12 +125982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2401), [anon_sym_PLUS] = ACTIONS(2401), [anon_sym_DASH] = 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_list] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), [anon_sym_BANG] = ACTIONS(2403), [anon_sym_PLUS_PLUS] = ACTIONS(2403), [anon_sym_DASH_DASH] = ACTIONS(2403), @@ -127737,5376 +126001,6431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, - [984] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_case] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), }, - [985] = { - [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_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = 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_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_LT_LT] = 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), + [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), }, - [986] = { - [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_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = 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_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_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_LT_LT] = 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), + [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), }, - [987] = { - [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_BSLASH] = ACTIONS(2243), - [anon_sym_self] = ACTIONS(2241), - [anon_sym_parent] = ACTIONS(2241), - [anon_sym_static] = 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_include] = ACTIONS(2241), - [anon_sym_include_once] = ACTIONS(2241), - [anon_sym_require] = ACTIONS(2241), - [anon_sym_require_once] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_LT_LT] = 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), + [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), }, - [988] = { - [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_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = 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_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_LT_LT] = 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), + [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), }, - [989] = { - [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_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = 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_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_LT_LT] = 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), + [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), }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_elseif] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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), }, - [991] = { - [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_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = 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_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_LT_LT] = 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), + [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), }, - [992] = { - [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_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = 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_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_LT_LT] = 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), + [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), }, - [993] = { - [sym_identifier] = ACTIONS(2065), - [sym_variable] = ACTIONS(2067), - [sym_pipe_variable] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_newtype] = ACTIONS(2065), - [anon_sym_shape] = ACTIONS(2065), - [anon_sym_tuple] = ACTIONS(2065), - [anon_sym_clone] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_print] = ACTIONS(2065), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_BSLASH] = ACTIONS(2067), - [anon_sym_self] = ACTIONS(2065), - [anon_sym_parent] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_LT_LT_LT] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_throw] = ACTIONS(2065), - [anon_sym_echo] = ACTIONS(2065), - [anon_sym_unset] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_concurrent] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_function] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_switch] = ACTIONS(2065), - [anon_sym_case] = ACTIONS(2065), - [anon_sym_default] = ACTIONS(2065), - [anon_sym_foreach] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [sym_float] = ACTIONS(2067), - [sym_integer] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_True] = ACTIONS(2065), - [anon_sym_TRUE] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_False] = ACTIONS(2065), - [anon_sym_FALSE] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [anon_sym_Null] = ACTIONS(2065), - [anon_sym_NULL] = ACTIONS(2065), - [sym_string] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_array] = ACTIONS(2065), - [anon_sym_varray] = ACTIONS(2065), - [anon_sym_darray] = ACTIONS(2065), - [anon_sym_vec] = ACTIONS(2065), - [anon_sym_dict] = ACTIONS(2065), - [anon_sym_keyset] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_include] = ACTIONS(2065), - [anon_sym_include_once] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(2065), - [anon_sym_require_once] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_abstract] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2067), - [sym_final_modifier] = ACTIONS(2065), - [sym_xhp_modifier] = ACTIONS(2065), - [sym_xhp_identifier] = ACTIONS(2065), - [sym_xhp_class_identifier] = ACTIONS(2067), + [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), }, - [994] = { - [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_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = 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_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_LT_LT] = 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), + [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), }, - [995] = { - [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_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = 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_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_LT_LT] = 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), + [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), }, - [996] = { - [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_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = 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_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_LT_LT] = 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), + [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), }, - [997] = { - [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_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = 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_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_LT_LT] = 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), + [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), }, - [998] = { - [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_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = 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_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_LT_LT] = 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), + [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), }, - [999] = { - [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_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = 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_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_LT_LT] = 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), + [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), }, - [1000] = { - [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_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = 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_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_LT_LT] = 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), + [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), }, - [1001] = { - [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_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = 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_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_LT_LT] = 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), + [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), }, - [1002] = { - [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_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = 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_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_LT_LT] = 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), + [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), }, - [1003] = { - [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_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = 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_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_LT_LT] = 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), + [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), }, - [1004] = { - [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_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = 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_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_LT_LT] = 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), + [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), }, - [1005] = { - [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_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = 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_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_LT_LT] = 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), + [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), }, - [1006] = { - [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_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = 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_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_LT_LT] = 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), + [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), }, - [1007] = { - [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_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = 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_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_LT_LT] = 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), + [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), }, - [1008] = { - [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_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = 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_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_LT_LT] = 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), + [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), }, - [1009] = { - [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_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = 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_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_LT_LT] = 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), + [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), - }, - [1010] = { - [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_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = 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_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_LT_LT] = 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), + }, + [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), }, - [1011] = { - [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_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = 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_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_LT_LT] = 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), + [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), }, - [1012] = { - [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_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = 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_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_LT_LT] = 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), + [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), }, - [1013] = { - [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_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = 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_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_LT_LT] = 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), + [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), }, - [1014] = { - [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_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = 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_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_LT_LT] = 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), + [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), }, - [1015] = { - [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_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = 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_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_LT_LT] = 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), + [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), }, - [1016] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [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_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = 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_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_LT_LT] = 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), + [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), }, - [1018] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1019] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1020] = { - [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_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = 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_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_LT_LT] = 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), + [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), }, - [1021] = { - [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_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = 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_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_LT_LT] = 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), + [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), }, - [1022] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1023] = { - [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_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = 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_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_LT_LT] = 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), + [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), }, - [1024] = { - [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_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = 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_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_LT_LT] = 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), + [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), }, - [1025] = { - [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_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = 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_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_LT_LT] = 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), + [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), }, - [1026] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1027] = { - [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_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = 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_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_LT_LT] = 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), + [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), }, - [1028] = { - [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_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = 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_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_LT_LT] = 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), + [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), }, - [1029] = { - [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_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = 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_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_LT_LT] = 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), + [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), }, - [1030] = { - [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_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = 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_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_LT_LT] = 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), + [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), }, - [1031] = { - [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_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = 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_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_LT_LT] = 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), + [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), }, - [1032] = { - [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_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = 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_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_LT_LT] = 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), + [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), }, - [1033] = { - [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_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = 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_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_LT_LT] = 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), + [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), }, - [1034] = { - [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_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = 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_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_LT_LT] = 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), + [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), }, - [1035] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1036] = { - [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_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = 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_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_LT_LT] = 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), + [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), }, - [1037] = { - [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_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = 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_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_LT_LT] = 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), + [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), }, - [1038] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1039] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1040] = { - [sym_identifier] = ACTIONS(2073), - [sym_variable] = ACTIONS(2075), - [sym_pipe_variable] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_newtype] = ACTIONS(2073), - [anon_sym_shape] = ACTIONS(2073), - [anon_sym_tuple] = ACTIONS(2073), - [anon_sym_clone] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_print] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2073), - [anon_sym_BSLASH] = ACTIONS(2075), - [anon_sym_self] = ACTIONS(2073), - [anon_sym_parent] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_LT_LT_LT] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_echo] = ACTIONS(2073), - [anon_sym_unset] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_concurrent] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_function] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_case] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_foreach] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_using] = ACTIONS(2073), - [sym_float] = ACTIONS(2075), - [sym_integer] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_True] = ACTIONS(2073), - [anon_sym_TRUE] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_False] = ACTIONS(2073), - [anon_sym_FALSE] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [anon_sym_Null] = ACTIONS(2073), - [anon_sym_NULL] = ACTIONS(2073), - [sym_string] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_array] = ACTIONS(2073), - [anon_sym_varray] = ACTIONS(2073), - [anon_sym_darray] = ACTIONS(2073), - [anon_sym_vec] = ACTIONS(2073), - [anon_sym_dict] = ACTIONS(2073), - [anon_sym_keyset] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_include] = ACTIONS(2073), - [anon_sym_include_once] = ACTIONS(2073), - [anon_sym_require] = ACTIONS(2073), - [anon_sym_require_once] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_abstract] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2075), - [sym_final_modifier] = ACTIONS(2073), - [sym_xhp_modifier] = ACTIONS(2073), - [sym_xhp_identifier] = ACTIONS(2073), - [sym_xhp_class_identifier] = ACTIONS(2075), + [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), }, - [1041] = { - [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_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = 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_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_LT_LT] = 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), + [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), }, - [1042] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1043] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1044] = { - [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_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = 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_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_LT_LT] = 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), + [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), }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(2439), + [1019] = { [sym_identifier] = ACTIONS(2437), [sym_variable] = ACTIONS(2439), [sym_pipe_variable] = ACTIONS(2439), @@ -133118,11 +132437,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -133137,9 +132462,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -133169,12 +132494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2437), [anon_sym_PLUS] = ACTIONS(2437), [anon_sym_DASH] = 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_list] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), [anon_sym_BANG] = ACTIONS(2439), [anon_sym_PLUS_PLUS] = ACTIONS(2439), [anon_sym_DASH_DASH] = ACTIONS(2439), @@ -133193,1680 +132513,2471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, - [1046] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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), + }, + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1047] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1048] = { - [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_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = 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_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1049] = { - [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_BSLASH] = ACTIONS(2079), - [anon_sym_self] = ACTIONS(2077), - [anon_sym_parent] = ACTIONS(2077), - [anon_sym_static] = 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_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_include] = ACTIONS(2077), - [anon_sym_include_once] = ACTIONS(2077), - [anon_sym_require] = ACTIONS(2077), - [anon_sym_require_once] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1050] = { - [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_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = 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_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_LT_LT] = 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), + [1032] = { + [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), }, - [1051] = { - [sym_identifier] = ACTIONS(2081), - [sym_variable] = ACTIONS(2083), - [sym_pipe_variable] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_newtype] = ACTIONS(2081), - [anon_sym_shape] = ACTIONS(2081), - [anon_sym_tuple] = ACTIONS(2081), - [anon_sym_clone] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_BSLASH] = ACTIONS(2083), - [anon_sym_self] = ACTIONS(2081), - [anon_sym_parent] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_echo] = ACTIONS(2081), - [anon_sym_unset] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_concurrent] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_foreach] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [sym_integer] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_True] = ACTIONS(2081), - [anon_sym_TRUE] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_False] = ACTIONS(2081), - [anon_sym_FALSE] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_Null] = ACTIONS(2081), - [anon_sym_NULL] = ACTIONS(2081), - [sym_string] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_array] = ACTIONS(2081), - [anon_sym_varray] = ACTIONS(2081), - [anon_sym_darray] = ACTIONS(2081), - [anon_sym_vec] = ACTIONS(2081), - [anon_sym_dict] = ACTIONS(2081), - [anon_sym_keyset] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_include] = ACTIONS(2081), - [anon_sym_include_once] = ACTIONS(2081), - [anon_sym_require] = ACTIONS(2081), - [anon_sym_require_once] = ACTIONS(2081), - [anon_sym_list] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2083), - [sym_final_modifier] = ACTIONS(2081), - [sym_xhp_modifier] = ACTIONS(2081), - [sym_xhp_identifier] = ACTIONS(2081), - [sym_xhp_class_identifier] = ACTIONS(2083), + [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), [sym_comment] = ACTIONS(3), }, - [1052] = { - [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_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = 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_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1053] = { - [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_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = 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_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1054] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1055] = { - [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_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = 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_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1056] = { - [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_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = 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_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1057] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1058] = { - [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_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = 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_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_LT_LT] = 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), + [1040] = { + [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), }, - [1059] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1060] = { - [sym_identifier] = ACTIONS(2085), - [sym_variable] = ACTIONS(2087), - [sym_pipe_variable] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_newtype] = ACTIONS(2085), - [anon_sym_shape] = ACTIONS(2085), - [anon_sym_tuple] = ACTIONS(2085), - [anon_sym_clone] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_BSLASH] = ACTIONS(2087), - [anon_sym_self] = ACTIONS(2085), - [anon_sym_parent] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_LT_LT_LT] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_echo] = ACTIONS(2085), - [anon_sym_unset] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_concurrent] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_foreach] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [sym_integer] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_True] = ACTIONS(2085), - [anon_sym_TRUE] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_False] = ACTIONS(2085), - [anon_sym_FALSE] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_Null] = ACTIONS(2085), - [anon_sym_NULL] = ACTIONS(2085), - [sym_string] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_array] = ACTIONS(2085), - [anon_sym_varray] = ACTIONS(2085), - [anon_sym_darray] = ACTIONS(2085), - [anon_sym_vec] = ACTIONS(2085), - [anon_sym_dict] = ACTIONS(2085), - [anon_sym_keyset] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_include_once] = ACTIONS(2085), - [anon_sym_require] = ACTIONS(2085), - [anon_sym_require_once] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2087), - [sym_final_modifier] = ACTIONS(2085), - [sym_xhp_modifier] = ACTIONS(2085), - [sym_xhp_identifier] = ACTIONS(2085), - [sym_xhp_class_identifier] = ACTIONS(2087), + [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), [sym_comment] = ACTIONS(3), }, - [1061] = { - [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_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = 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_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1062] = { - [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_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = 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_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1063] = { - [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_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = 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_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1064] = { - [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_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = 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_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_LT_LT] = 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), + [1047] = { + [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), }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(2503), + [1048] = { [sym_identifier] = ACTIONS(2501), [sym_variable] = ACTIONS(2503), [sym_pipe_variable] = ACTIONS(2503), @@ -134878,11 +134989,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -134897,9 +135014,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -134929,12 +135046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2501), [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_DASH] = 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_list] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), [anon_sym_BANG] = ACTIONS(2503), [anon_sym_PLUS_PLUS] = ACTIONS(2503), [anon_sym_DASH_DASH] = ACTIONS(2503), @@ -134953,887 +135065,711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [1066] = { - [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_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = 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_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_LT_LT] = 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), - }, - [1067] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1068] = { - [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_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = 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_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1069] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1070] = { - [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_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = 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_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1071] = { - [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_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = 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_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1072] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1073] = { - [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_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = 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_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1074] = { - [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_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = 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_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1075] = { - [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_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = 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_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1076] = { + [1057] = { [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), @@ -135846,10 +135782,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -135897,12 +135838,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + }, + [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_list] = 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), @@ -135921,5815 +135945,5992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1077] = { - [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_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = 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_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_LT_LT] = 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), - }, - [1078] = { - [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_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = 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_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1079] = { - [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_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = 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_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1080] = { - [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_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = 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_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1081] = { - [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_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = 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_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1082] = { - [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_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = 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_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_LT_LT] = 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), + [1063] = { + [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), [sym_comment] = ACTIONS(3), }, - [1083] = { - [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_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = 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_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1084] = { - [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_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = 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_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1085] = { - [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_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = 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_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1086] = { - [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_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = 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_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1087] = { - [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_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = 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_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1088] = { - [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_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = 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_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1089] = { - [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_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = 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_case] = ACTIONS(2089), - [anon_sym_default] = 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_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1091] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1092] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1093] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1094] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1095] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1096] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1097] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1098] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1099] = { - [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_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = 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_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1100] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1101] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1102] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1103] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1104] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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] = { + [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), [sym_comment] = ACTIONS(3), }, - [1105] = { - [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_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = 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_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1106] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1107] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1108] = { - [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_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = 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_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1109] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1110] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1111] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1112] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1113] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1114] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1115] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1116] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1117] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1118] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1119] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1120] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1121] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1122] = { - [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_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = 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_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1123] = { - [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_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = 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_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1124] = { - [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_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = 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_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1125] = { - [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_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = 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_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1126] = { - [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_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = 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_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1127] = { - [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_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = 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_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1128] = { - [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_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = 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_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1129] = { - [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_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = 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_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1130] = { - [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_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = 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_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1131] = { - [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_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = 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_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1132] = { - [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_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = 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_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1133] = { - [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_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = 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_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1134] = { - [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_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = 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_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1135] = { - [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_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = 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_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1136] = { - [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_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = 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_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1137] = { - [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_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = 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_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_LT_LT] = 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), + [1120] = { + [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_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), }, - [1138] = { - [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_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = 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_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1139] = { - [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_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = 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_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1140] = { - [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_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = 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_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1141] = { - [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_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = 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_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1142] = { - [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_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = 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_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1143] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1127] = { + [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -141741,12 +141942,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -141785,1008 +141990,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_LT_LT] = 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), - }, - [1144] = { - [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_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = 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_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_LT_LT] = 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), - }, - [1145] = { - [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_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = 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_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_LT_LT] = 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), - }, - [1146] = { - [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_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = 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_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_LT_LT] = 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), - }, - [1147] = { - [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_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = 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_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_LT_LT] = 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), - }, - [1148] = { - [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_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = 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_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_LT_LT] = 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), - }, - [1149] = { - [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_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = 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_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_LT_LT] = 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), - }, - [1150] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1151] = { - [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_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = 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_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_LT_LT] = 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), - }, - [1152] = { - [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_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = 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_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_LT_LT] = 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), - }, - [1153] = { - [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_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = 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_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_LT_LT] = 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_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), }, - [1154] = { - [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_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = 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_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1155] = { - [ts_builtin_sym_end] = ACTIONS(2139), + [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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1131] = { [sym_identifier] = ACTIONS(2137), [sym_variable] = ACTIONS(2139), [sym_pipe_variable] = ACTIONS(2139), @@ -142798,11 +142293,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -142817,9 +142318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), [anon_sym_foreach] = ACTIONS(2137), [anon_sym_while] = ACTIONS(2137), [anon_sym_do] = ACTIONS(2137), @@ -142849,12 +142350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2137), [anon_sym_PLUS] = ACTIONS(2137), [anon_sym_DASH] = 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_list] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), [anon_sym_BANG] = ACTIONS(2139), [anon_sym_PLUS_PLUS] = ACTIONS(2139), [anon_sym_DASH_DASH] = ACTIONS(2139), @@ -142873,1239 +142369,2031 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [1156] = { - [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_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = 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_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1135] = { + [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_case] = ACTIONS(2089), + [anon_sym_default] = 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), + }, + [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), + [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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1157] = { - [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_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = 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_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1158] = { - [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_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = 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_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1159] = { - [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_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = 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_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1160] = { - [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_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = 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_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_LT_LT] = 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), + [1145] = { + [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_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), }, - [1161] = { - [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_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = 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_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1162] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_elseif] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), + [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), [sym_comment] = ACTIONS(3), }, - [1163] = { - [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_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = 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_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1164] = { - [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_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = 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_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1165] = { - [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_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = 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_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1166] = { - [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_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = 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_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1167] = { - [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_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = 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_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1168] = { - [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_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = 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_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_LT_LT] = 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), + [1153] = { + [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), [sym_comment] = ACTIONS(3), }, - [1169] = { - [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_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = 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_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_LT_LT] = 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), + [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), }, - [1170] = { + [1155] = { [sym_identifier] = ACTIONS(2325), [sym_variable] = ACTIONS(2327), [sym_pipe_variable] = ACTIONS(2327), @@ -144117,10 +144405,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -144169,12 +144462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(2325), [anon_sym_DASH] = 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_list] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), [anon_sym_BANG] = ACTIONS(2327), [anon_sym_PLUS_PLUS] = ACTIONS(2327), [anon_sym_DASH_DASH] = ACTIONS(2327), @@ -144193,2471 +144481,2735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [1171] = { - [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_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = 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_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1172] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_case] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), + [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), [sym_comment] = ACTIONS(3), }, - [1173] = { - [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_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = 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_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1174] = { - [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_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = 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_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1175] = { - [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_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = 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_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1176] = { - [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_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = 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_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [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_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = 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_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1178] = { - [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_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = 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_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1179] = { - [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_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = 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_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1180] = { - [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_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = 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_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1181] = { - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2085), - [sym_variable] = ACTIONS(2087), - [sym_pipe_variable] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_newtype] = ACTIONS(2085), - [anon_sym_shape] = ACTIONS(2085), - [anon_sym_tuple] = ACTIONS(2085), - [anon_sym_clone] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_BSLASH] = ACTIONS(2087), - [anon_sym_self] = ACTIONS(2085), - [anon_sym_parent] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_LT_LT_LT] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_echo] = ACTIONS(2085), - [anon_sym_unset] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_concurrent] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_elseif] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_foreach] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [sym_integer] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_True] = ACTIONS(2085), - [anon_sym_TRUE] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_False] = ACTIONS(2085), - [anon_sym_FALSE] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_Null] = ACTIONS(2085), - [anon_sym_NULL] = ACTIONS(2085), - [sym_string] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_array] = ACTIONS(2085), - [anon_sym_varray] = ACTIONS(2085), - [anon_sym_darray] = ACTIONS(2085), - [anon_sym_vec] = ACTIONS(2085), - [anon_sym_dict] = ACTIONS(2085), - [anon_sym_keyset] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_include_once] = ACTIONS(2085), - [anon_sym_require] = ACTIONS(2085), - [anon_sym_require_once] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2087), - [sym_final_modifier] = ACTIONS(2085), - [sym_xhp_modifier] = ACTIONS(2085), - [sym_xhp_identifier] = ACTIONS(2085), - [sym_xhp_class_identifier] = ACTIONS(2087), + [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), [sym_comment] = ACTIONS(3), }, - [1182] = { - [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_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = 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_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1183] = { - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2081), - [sym_variable] = ACTIONS(2083), - [sym_pipe_variable] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_newtype] = ACTIONS(2081), - [anon_sym_shape] = ACTIONS(2081), - [anon_sym_tuple] = ACTIONS(2081), - [anon_sym_clone] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_BSLASH] = ACTIONS(2083), - [anon_sym_self] = ACTIONS(2081), - [anon_sym_parent] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_echo] = ACTIONS(2081), - [anon_sym_unset] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_concurrent] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_elseif] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_foreach] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [sym_integer] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_True] = ACTIONS(2081), - [anon_sym_TRUE] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_False] = ACTIONS(2081), - [anon_sym_FALSE] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_Null] = ACTIONS(2081), - [anon_sym_NULL] = ACTIONS(2081), - [sym_string] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_array] = ACTIONS(2081), - [anon_sym_varray] = ACTIONS(2081), - [anon_sym_darray] = ACTIONS(2081), - [anon_sym_vec] = ACTIONS(2081), - [anon_sym_dict] = ACTIONS(2081), - [anon_sym_keyset] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_include] = ACTIONS(2081), - [anon_sym_include_once] = ACTIONS(2081), - [anon_sym_require] = ACTIONS(2081), - [anon_sym_require_once] = ACTIONS(2081), - [anon_sym_list] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2083), - [sym_final_modifier] = ACTIONS(2081), - [sym_xhp_modifier] = ACTIONS(2081), - [sym_xhp_identifier] = ACTIONS(2081), - [sym_xhp_class_identifier] = ACTIONS(2083), + [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), [sym_comment] = ACTIONS(3), }, - [1184] = { - [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_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = 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_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1185] = { - [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_BSLASH] = ACTIONS(2079), - [anon_sym_self] = ACTIONS(2077), - [anon_sym_parent] = ACTIONS(2077), - [anon_sym_static] = 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(2077), - [anon_sym_else] = ACTIONS(2077), - [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_include] = ACTIONS(2077), - [anon_sym_include_once] = ACTIONS(2077), - [anon_sym_require] = ACTIONS(2077), - [anon_sym_require_once] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1186] = { - [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_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = 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_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1187] = { - [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_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = 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_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1188] = { - [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_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = 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_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1189] = { - [ts_builtin_sym_end] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2073), - [sym_variable] = ACTIONS(2075), - [sym_pipe_variable] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_newtype] = ACTIONS(2073), - [anon_sym_shape] = ACTIONS(2073), - [anon_sym_tuple] = ACTIONS(2073), - [anon_sym_clone] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_print] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2073), - [anon_sym_BSLASH] = ACTIONS(2075), - [anon_sym_self] = ACTIONS(2073), - [anon_sym_parent] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_LT_LT_LT] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_echo] = ACTIONS(2073), - [anon_sym_unset] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_concurrent] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_function] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_elseif] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_foreach] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_using] = ACTIONS(2073), - [sym_float] = ACTIONS(2075), - [sym_integer] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_True] = ACTIONS(2073), - [anon_sym_TRUE] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_False] = ACTIONS(2073), - [anon_sym_FALSE] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [anon_sym_Null] = ACTIONS(2073), - [anon_sym_NULL] = ACTIONS(2073), - [sym_string] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_array] = ACTIONS(2073), - [anon_sym_varray] = ACTIONS(2073), - [anon_sym_darray] = ACTIONS(2073), - [anon_sym_vec] = ACTIONS(2073), - [anon_sym_dict] = ACTIONS(2073), - [anon_sym_keyset] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_include] = ACTIONS(2073), - [anon_sym_include_once] = ACTIONS(2073), - [anon_sym_require] = ACTIONS(2073), - [anon_sym_require_once] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_abstract] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2075), - [sym_final_modifier] = ACTIONS(2073), - [sym_xhp_modifier] = ACTIONS(2073), - [sym_xhp_identifier] = ACTIONS(2073), - [sym_xhp_class_identifier] = ACTIONS(2075), + [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), [sym_comment] = ACTIONS(3), }, - [1190] = { - [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_BSLASH] = ACTIONS(2071), - [anon_sym_self] = ACTIONS(2069), - [anon_sym_parent] = ACTIONS(2069), - [anon_sym_static] = 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(2069), - [anon_sym_else] = ACTIONS(2069), - [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_include] = ACTIONS(2069), - [anon_sym_include_once] = ACTIONS(2069), - [anon_sym_require] = ACTIONS(2069), - [anon_sym_require_once] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1191] = { - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2065), - [sym_variable] = ACTIONS(2067), - [sym_pipe_variable] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_newtype] = ACTIONS(2065), - [anon_sym_shape] = ACTIONS(2065), - [anon_sym_tuple] = ACTIONS(2065), - [anon_sym_clone] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_print] = ACTIONS(2065), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_BSLASH] = ACTIONS(2067), - [anon_sym_self] = ACTIONS(2065), - [anon_sym_parent] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_LT_LT_LT] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_throw] = ACTIONS(2065), - [anon_sym_echo] = ACTIONS(2065), - [anon_sym_unset] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_concurrent] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_function] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_elseif] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2065), - [anon_sym_switch] = ACTIONS(2065), - [anon_sym_foreach] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [sym_float] = ACTIONS(2067), - [sym_integer] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_True] = ACTIONS(2065), - [anon_sym_TRUE] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_False] = ACTIONS(2065), - [anon_sym_FALSE] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [anon_sym_Null] = ACTIONS(2065), - [anon_sym_NULL] = ACTIONS(2065), - [sym_string] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_array] = ACTIONS(2065), - [anon_sym_varray] = ACTIONS(2065), - [anon_sym_darray] = ACTIONS(2065), - [anon_sym_vec] = ACTIONS(2065), - [anon_sym_dict] = ACTIONS(2065), - [anon_sym_keyset] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_include] = ACTIONS(2065), - [anon_sym_include_once] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(2065), - [anon_sym_require_once] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_abstract] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2067), - [sym_final_modifier] = ACTIONS(2065), - [sym_xhp_modifier] = ACTIONS(2065), - [sym_xhp_identifier] = ACTIONS(2065), - [sym_xhp_class_identifier] = ACTIONS(2067), + [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), [sym_comment] = ACTIONS(3), }, - [1192] = { - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_elseif] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), [sym_comment] = ACTIONS(3), }, - [1193] = { - [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_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = 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_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1194] = { - [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_BSLASH] = ACTIONS(2063), - [anon_sym_self] = ACTIONS(2061), - [anon_sym_parent] = ACTIONS(2061), - [anon_sym_static] = 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(2061), - [anon_sym_else] = ACTIONS(2061), - [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_include] = ACTIONS(2061), - [anon_sym_include_once] = ACTIONS(2061), - [anon_sym_require] = ACTIONS(2061), - [anon_sym_require_once] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1195] = { - [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_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = 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_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1196] = { - [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_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = 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_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_LT_LT] = 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), + [1183] = { + [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), }, - [1197] = { - [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_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = 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_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1198] = { - [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_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = 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_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1199] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1187] = { [ts_builtin_sym_end] = ACTIONS(2491), [sym_identifier] = ACTIONS(2489), [sym_variable] = ACTIONS(2491), @@ -146670,10 +147222,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -146721,12 +147278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2489), [anon_sym_PLUS] = ACTIONS(2489), [anon_sym_DASH] = 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_list] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), [anon_sym_BANG] = ACTIONS(2491), [anon_sym_PLUS_PLUS] = ACTIONS(2491), [anon_sym_DASH_DASH] = ACTIONS(2491), @@ -146745,1063 +147297,1415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, - [1200] = { - [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_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = 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_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1201] = { - [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_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = 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_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1202] = { - [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_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = 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_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1203] = { - [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_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = 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_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1204] = { - [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_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = 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_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1205] = { - [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_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = 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_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_LT_LT] = 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), + [1197] = { + [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_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), }, - [1206] = { - [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_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = 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_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1207] = { - [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_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = 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_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1208] = { - [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_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = 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_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1209] = { - [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_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = 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_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1210] = { - [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_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = 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_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1211] = { - [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_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = 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_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1212] = { + [1204] = { [sym_identifier] = ACTIONS(2437), [sym_variable] = ACTIONS(2439), [sym_pipe_variable] = ACTIONS(2439), @@ -147813,10 +148717,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147865,12 +148774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2437), [anon_sym_PLUS] = ACTIONS(2437), [anon_sym_DASH] = 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_list] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), [anon_sym_BANG] = ACTIONS(2439), [anon_sym_PLUS_PLUS] = ACTIONS(2439), [anon_sym_DASH_DASH] = ACTIONS(2439), @@ -147889,535 +148793,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, - [1213] = { - [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_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = 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_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1214] = { - [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_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = 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_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1215] = { - [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_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = 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_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1216] = { - [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_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = 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_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1217] = { - [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_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = 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_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1218] = { - [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_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = 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_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_LT_LT] = 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), + [1210] = { + [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] = { + [1211] = { [ts_builtin_sym_end] = ACTIONS(2399), [sym_identifier] = ACTIONS(2397), [sym_variable] = ACTIONS(2399), @@ -148430,10 +149334,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -148479,386 +149388,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_LT_LT] = 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), - }, - [1220] = { - [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_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = 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_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_LT_LT] = 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), - }, - [1221] = { - [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_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = 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_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_LT_LT] = 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), - }, - [1222] = { - [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_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = 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_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_LT_LT] = 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_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), }, - [1223] = { - [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_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = 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_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_LT_LT] = 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), + [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), }, - [1224] = { - [ts_builtin_sym_end] = ACTIONS(2223), + [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), @@ -148870,11 +149597,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -148911,3473 +149644,2941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_LT_LT] = 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), - }, - [1225] = { - [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_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = 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_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_LT_LT] = 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), - }, - [1226] = { - [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_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = 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_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_LT_LT] = 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), - }, - [1227] = { - [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_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = 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_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_LT_LT] = 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), - }, - [1228] = { - [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_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = 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_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_LT_LT] = 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), - }, - [1229] = { - [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_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = 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_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_LT_LT] = 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), - }, - [1230] = { - [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_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = 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_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_LT_LT] = 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), - }, - [1231] = { - [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_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = 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_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_LT_LT] = 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), - }, - [1232] = { - [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_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = 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_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_LT_LT] = 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), + [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), }, - [1233] = { - [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_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = 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_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_LT_LT] = 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), + [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), }, - [1234] = { - [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_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = 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_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_LT_LT] = 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), + [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), }, - [1235] = { - [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_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = 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_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_LT_LT] = 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), + [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), }, - [1236] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_case] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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), [sym_comment] = ACTIONS(3), }, - [1237] = { - [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_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = 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_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1238] = { - [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_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = 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_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_LT_LT] = 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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1221] = { + [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), }, - [1239] = { - [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_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = 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_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1240] = { - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [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), [sym_comment] = ACTIONS(3), }, - [1241] = { - [sym_identifier] = ACTIONS(1995), - [sym_variable] = ACTIONS(1997), - [sym_pipe_variable] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_newtype] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(1995), - [anon_sym_tuple] = ACTIONS(1995), - [anon_sym_clone] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_namespace] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_self] = ACTIONS(1995), - [anon_sym_parent] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_LT_LT_LT] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_throw] = ACTIONS(1995), - [anon_sym_echo] = ACTIONS(1995), - [anon_sym_unset] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_concurrent] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_function] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_foreach] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1995), - [anon_sym_using] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [sym_integer] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_True] = ACTIONS(1995), - [anon_sym_TRUE] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_False] = ACTIONS(1995), - [anon_sym_FALSE] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_Null] = ACTIONS(1995), - [anon_sym_NULL] = ACTIONS(1995), - [sym_string] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_array] = ACTIONS(1995), - [anon_sym_varray] = ACTIONS(1995), - [anon_sym_darray] = ACTIONS(1995), - [anon_sym_vec] = ACTIONS(1995), - [anon_sym_dict] = ACTIONS(1995), - [anon_sym_keyset] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_include_once] = ACTIONS(1995), - [anon_sym_require] = ACTIONS(1995), - [anon_sym_require_once] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_interface] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_abstract] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1997), - [sym_final_modifier] = ACTIONS(1995), - [sym_xhp_modifier] = ACTIONS(1995), - [sym_xhp_identifier] = ACTIONS(1995), - [sym_xhp_class_identifier] = ACTIONS(1997), + [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), [sym_comment] = ACTIONS(3), }, - [1242] = { - [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_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = 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_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1243] = { - [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_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = 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_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1244] = { - [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_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = 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_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1245] = { - [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_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = 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_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1246] = { - [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_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = 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_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1247] = { - [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_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = 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_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1248] = { - [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_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = 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_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1249] = { - [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_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = 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_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1250] = { - [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_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = 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_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1251] = { - [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_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = 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_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1252] = { - [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_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = 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_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1253] = { - [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_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = 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_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1254] = { - [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_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = 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_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1255] = { - [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_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = 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_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1256] = { - [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_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = 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_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1257] = { - [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_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = 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_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1258] = { - [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_BSLASH] = ACTIONS(2243), - [anon_sym_self] = ACTIONS(2241), - [anon_sym_parent] = ACTIONS(2241), - [anon_sym_static] = 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_include] = ACTIONS(2241), - [anon_sym_include_once] = ACTIONS(2241), - [anon_sym_require] = ACTIONS(2241), - [anon_sym_require_once] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1259] = { - [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_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = 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_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1260] = { - [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_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = 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_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1261] = { - [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_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = 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_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1262] = { - [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_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = 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_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1263] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_elseif] = ACTIONS(2003), - [anon_sym_else] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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), [sym_comment] = ACTIONS(3), }, - [1264] = { + [1248] = { + [ts_builtin_sym_end] = ACTIONS(2323), [sym_identifier] = ACTIONS(2321), [sym_variable] = ACTIONS(2323), [sym_pipe_variable] = ACTIONS(2323), @@ -152389,12 +152590,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -152409,9 +152614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), [anon_sym_foreach] = ACTIONS(2321), [anon_sym_while] = ACTIONS(2321), [anon_sym_do] = ACTIONS(2321), @@ -152441,12 +152646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2321), [anon_sym_PLUS] = ACTIONS(2321), [anon_sym_DASH] = 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_list] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), [anon_sym_BANG] = ACTIONS(2323), [anon_sym_PLUS_PLUS] = ACTIONS(2323), [anon_sym_DASH_DASH] = ACTIONS(2323), @@ -152465,359 +152665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [1265] = { - [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_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = 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_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_LT_LT] = 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), - }, - [1266] = { - [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_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = 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_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_LT_LT] = 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), - }, - [1267] = { - [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_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = 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_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_LT_LT] = 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), - }, - [1268] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [1269] = { + [1249] = { [sym_identifier] = ACTIONS(2333), [sym_variable] = ACTIONS(2335), [sym_pipe_variable] = ACTIONS(2335), @@ -152829,10 +152677,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -152881,12 +152734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2333), [anon_sym_PLUS] = ACTIONS(2333), [anon_sym_DASH] = 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_list] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(2335), [anon_sym_PLUS_PLUS] = ACTIONS(2335), [anon_sym_DASH_DASH] = ACTIONS(2335), @@ -152905,535 +152753,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [1270] = { - [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_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = 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_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1271] = { - [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_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = 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_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1272] = { - [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_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = 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_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1273] = { - [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_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = 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_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1274] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), [sym_comment] = ACTIONS(3), }, - [1275] = { - [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_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = 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_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_LT_LT] = 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), + [1255] = { + [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), }, - [1276] = { + [1256] = { + [ts_builtin_sym_end] = ACTIONS(2319), [sym_identifier] = ACTIONS(2317), [sym_variable] = ACTIONS(2319), [sym_pipe_variable] = ACTIONS(2319), @@ -153445,12 +153294,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -153497,12 +153350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2317), [anon_sym_PLUS] = ACTIONS(2317), [anon_sym_DASH] = 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_list] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(2319), [anon_sym_PLUS_PLUS] = ACTIONS(2319), [anon_sym_DASH_DASH] = ACTIONS(2319), @@ -153521,447 +153369,1064 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [1277] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1278] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_finally] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [1258] = { + [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), }, - [1279] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_finally] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + }, + [1263] = { + [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), + }, + [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), }, - [1280] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_finally] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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), }, - [1281] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_catch] = ACTIONS(2003), - [anon_sym_finally] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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), [sym_comment] = ACTIONS(3), }, - [1282] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1269] = { + [ts_builtin_sym_end] = ACTIONS(2315), [sym_identifier] = ACTIONS(2313), [sym_variable] = ACTIONS(2315), [sym_pipe_variable] = ACTIONS(2315), @@ -153973,12 +154438,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -154025,12 +154494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2313), [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_DASH] = 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_list] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), [anon_sym_BANG] = ACTIONS(2315), [anon_sym_PLUS_PLUS] = ACTIONS(2315), [anon_sym_DASH_DASH] = ACTIONS(2315), @@ -154049,799 +154513,1152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, - [1283] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1284] = { - [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_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = 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_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1285] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1286] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1287] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1288] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1289] = { - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), [sym_comment] = ACTIONS(3), }, - [1290] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1291] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1292] = { + [1283] = { + [ts_builtin_sym_end] = ACTIONS(2211), [sym_identifier] = ACTIONS(2209), [sym_variable] = ACTIONS(2211), [sym_pipe_variable] = ACTIONS(2211), @@ -154853,100 +155670,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2209), [anon_sym_print] = ACTIONS(2209), [anon_sym_namespace] = 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_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_include] = ACTIONS(2209), [anon_sym_include_once] = ACTIONS(2209), [anon_sym_require] = ACTIONS(2209), [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1293] = { - [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_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), @@ -154961,9 +155694,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), [anon_sym_foreach] = ACTIONS(2209), [anon_sym_while] = ACTIONS(2209), [anon_sym_do] = ACTIONS(2209), @@ -154993,12 +155726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2209), [anon_sym_PLUS] = ACTIONS(2209), [anon_sym_DASH] = 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_list] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), [anon_sym_BANG] = ACTIONS(2211), [anon_sym_PLUS_PLUS] = ACTIONS(2211), [anon_sym_DASH_DASH] = ACTIONS(2211), @@ -155017,1327 +155745,1944 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [1294] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1295] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1296] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1289] = { + [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), + }, + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1297] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1298] = { - [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_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = 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_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1299] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1300] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1301] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [1298] = { + [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), }, - [1302] = { - [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_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = 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_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1303] = { - [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_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = 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_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1304] = { - [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_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = 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_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1305] = { - [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_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = 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_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1306] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1307] = { - [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_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = 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_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1308] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1309] = { + [1306] = { + [ts_builtin_sym_end] = ACTIONS(2267), [sym_identifier] = ACTIONS(2265), [sym_variable] = ACTIONS(2267), [sym_pipe_variable] = ACTIONS(2267), @@ -156349,12 +157694,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -156369,9 +157718,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), [anon_sym_foreach] = ACTIONS(2265), [anon_sym_while] = ACTIONS(2265), [anon_sym_do] = ACTIONS(2265), @@ -156401,12 +157750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(2265), [anon_sym_DASH] = 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_list] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), [anon_sym_BANG] = ACTIONS(2267), [anon_sym_PLUS_PLUS] = ACTIONS(2267), [anon_sym_DASH_DASH] = ACTIONS(2267), @@ -156425,359 +157769,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [1310] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1311] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2011), - [anon_sym_finally] = ACTIONS(2011), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [1312] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1313] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1314] = { + [1308] = { + [ts_builtin_sym_end] = ACTIONS(2259), [sym_identifier] = ACTIONS(2257), [sym_variable] = ACTIONS(2259), [sym_pipe_variable] = ACTIONS(2259), @@ -156789,12 +157870,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -156809,9 +157894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), [anon_sym_foreach] = ACTIONS(2257), [anon_sym_while] = ACTIONS(2257), [anon_sym_do] = ACTIONS(2257), @@ -156841,12 +157926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2257), [anon_sym_PLUS] = ACTIONS(2257), [anon_sym_DASH] = 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_list] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), [anon_sym_BANG] = ACTIONS(2259), [anon_sym_PLUS_PLUS] = ACTIONS(2259), [anon_sym_DASH_DASH] = ACTIONS(2259), @@ -156865,1239 +157945,1768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2259), [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), + [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), + [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), + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + }, [1315] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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_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), }, [1316] = { - [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_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = 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_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_LT_LT] = 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_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), }, [1317] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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_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), }, [1318] = { - [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_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = 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_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_LT_LT] = 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), + [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), }, [1319] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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_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), }, [1320] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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_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), }, [1321] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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_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), }, [1322] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, [1323] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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_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), }, [1324] = { - [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_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = 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_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_LT_LT] = 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_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), }, [1325] = { - [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_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = 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_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_LT_LT] = 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_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), }, [1326] = { - [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_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = 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_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_LT_LT] = 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_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), }, [1327] = { - [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_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = 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_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_LT_LT] = 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_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), }, [1328] = { - [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_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = 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_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_LT_LT] = 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_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), }, [1329] = { + [ts_builtin_sym_end] = ACTIONS(2239), [sym_identifier] = ACTIONS(2237), [sym_variable] = ACTIONS(2239), [sym_pipe_variable] = ACTIONS(2239), @@ -158109,12 +159718,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -158129,9 +159742,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), @@ -158161,12 +159774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2237), [anon_sym_PLUS] = ACTIONS(2237), [anon_sym_DASH] = 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_list] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), [anon_sym_BANG] = ACTIONS(2239), [anon_sym_PLUS_PLUS] = ACTIONS(2239), [anon_sym_DASH_DASH] = ACTIONS(2239), @@ -158185,183 +159793,975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2239), [sym_comment] = ACTIONS(3), }, - [1330] = { - [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_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = 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_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1331] = { - [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_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = 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_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1332] = { + [1341] = { [sym_identifier] = ACTIONS(2245), [sym_variable] = ACTIONS(2247), [sym_pipe_variable] = ACTIONS(2247), @@ -158373,10 +160773,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -158425,12 +160830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2245), [anon_sym_PLUS] = ACTIONS(2245), [anon_sym_DASH] = 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_list] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), [anon_sym_BANG] = ACTIONS(2247), [anon_sym_PLUS_PLUS] = ACTIONS(2247), [anon_sym_DASH_DASH] = ACTIONS(2247), @@ -158449,1503 +160849,1679 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [1333] = { - [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_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = 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_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_LT_LT] = 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), + [1342] = { + [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_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(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_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = 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_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1335] = { - [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_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = 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_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1336] = { - [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_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = 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_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_LT_LT] = 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), + [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), [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_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = 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_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1338] = { - [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_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = 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_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1339] = { - [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_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = 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_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1340] = { - [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_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = 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_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1341] = { - [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_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = 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_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1342] = { - [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_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = 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_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1343] = { - [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_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = 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_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1344] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_identifier] = ACTIONS(1995), - [sym_variable] = ACTIONS(1997), - [sym_pipe_variable] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_newtype] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(1995), - [anon_sym_tuple] = ACTIONS(1995), - [anon_sym_clone] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_namespace] = ACTIONS(1995), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_self] = ACTIONS(1995), - [anon_sym_parent] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_LT_LT_LT] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_throw] = ACTIONS(1995), - [anon_sym_echo] = ACTIONS(1995), - [anon_sym_unset] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_concurrent] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_function] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_switch] = ACTIONS(1995), - [anon_sym_foreach] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_do] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_catch] = ACTIONS(1995), - [anon_sym_finally] = ACTIONS(1995), - [anon_sym_using] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [sym_integer] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_True] = ACTIONS(1995), - [anon_sym_TRUE] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_False] = ACTIONS(1995), - [anon_sym_FALSE] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_Null] = ACTIONS(1995), - [anon_sym_NULL] = ACTIONS(1995), - [sym_string] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_array] = ACTIONS(1995), - [anon_sym_varray] = ACTIONS(1995), - [anon_sym_darray] = ACTIONS(1995), - [anon_sym_vec] = ACTIONS(1995), - [anon_sym_dict] = ACTIONS(1995), - [anon_sym_keyset] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_include_once] = ACTIONS(1995), - [anon_sym_require] = ACTIONS(1995), - [anon_sym_require_once] = ACTIONS(1995), - [anon_sym_list] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_interface] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_abstract] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1997), - [sym_final_modifier] = ACTIONS(1995), - [sym_xhp_modifier] = ACTIONS(1995), - [sym_xhp_identifier] = ACTIONS(1995), - [sym_xhp_class_identifier] = ACTIONS(1997), + [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), [sym_comment] = ACTIONS(3), }, - [1345] = { - [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_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = 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_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1346] = { - [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_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = 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_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1347] = { - [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_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = 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_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1348] = { - [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_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = 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_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1349] = { - [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_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = 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_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1350] = { + [1361] = { [sym_identifier] = ACTIONS(2269), [sym_variable] = ACTIONS(2271), [sym_pipe_variable] = ACTIONS(2271), @@ -159957,10 +162533,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -160009,12 +162590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2269), [anon_sym_PLUS] = ACTIONS(2269), [anon_sym_DASH] = 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_list] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), [anon_sym_BANG] = ACTIONS(2271), [anon_sym_PLUS_PLUS] = ACTIONS(2271), [anon_sym_DASH_DASH] = ACTIONS(2271), @@ -160033,1503 +162609,2559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [1351] = { - [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_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = 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_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1352] = { - [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_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = 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_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1353] = { - [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_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = 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_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1354] = { - [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_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = 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_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1355] = { - [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_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = 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_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1356] = { - [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_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = 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_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_LT_LT] = 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), + [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), }, - [1357] = { - [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_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = 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_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_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1358] = { - [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_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = 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_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1359] = { - [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_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = 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_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1360] = { - [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_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = 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_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1361] = { - [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_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = 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_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1362] = { - [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_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = 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_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1363] = { - [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_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = 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_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1364] = { - [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_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = 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_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1365] = { - [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_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = 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_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1366] = { - [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_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = 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_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1367] = { - [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_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = 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_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_LT_LT] = 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), + [1389] = { + [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), }, - [1368] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1391] = { [sym_identifier] = ACTIONS(2445), [sym_variable] = ACTIONS(2447), [sym_pipe_variable] = ACTIONS(2447), @@ -161541,10 +165173,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -161561,9 +165198,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -161593,12 +165230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2445), [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_DASH] = 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_list] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), [anon_sym_BANG] = ACTIONS(2447), [anon_sym_PLUS_PLUS] = ACTIONS(2447), [anon_sym_DASH_DASH] = ACTIONS(2447), @@ -161617,975 +165249,1415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [1369] = { - [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_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = 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_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1370] = { - [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_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = 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_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_LT_LT] = 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), + [1393] = { + [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), + }, + [1394] = { + [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), + }, + [1395] = { + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + }, + [1397] = { + [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), }, - [1371] = { - [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_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = 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_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_LT_LT] = 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), + [1398] = { + [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_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), }, - [1372] = { - [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_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = 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_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1373] = { - [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_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = 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_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_LT_LT] = 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), + [1400] = { + [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_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), }, - [1374] = { - [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_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = 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_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1375] = { - [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_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = 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_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1376] = { - [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_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = 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_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1377] = { - [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_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = 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_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1378] = { - [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_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = 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_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1379] = { - [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_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = 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_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1380] = { + [1408] = { [sym_identifier] = ACTIONS(2049), [sym_variable] = ACTIONS(2051), [sym_pipe_variable] = ACTIONS(2051), @@ -162597,10 +166669,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -162618,13 +166695,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -162649,12 +166726,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + }, + [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), + [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), + [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), + [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_list] = 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), @@ -162673,271 +167097,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2051), [sym_comment] = ACTIONS(3), }, - [1381] = { - [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_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = 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_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1382] = { - [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_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = 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_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1383] = { - [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_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = 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_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1384] = { + [1419] = { [sym_identifier] = ACTIONS(2381), [sym_variable] = ACTIONS(2383), [sym_pipe_variable] = ACTIONS(2383), @@ -162949,10 +167637,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -162969,9 +167662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -163001,12 +167694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2381), [anon_sym_PLUS] = ACTIONS(2381), [anon_sym_DASH] = 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_list] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), [anon_sym_BANG] = ACTIONS(2383), [anon_sym_PLUS_PLUS] = ACTIONS(2383), [anon_sym_DASH_DASH] = ACTIONS(2383), @@ -163025,1491 +167713,1825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, - [1385] = { - [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_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = 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_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1386] = { - [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_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = 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_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_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1387] = { - [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_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = 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_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1388] = { - [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_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = 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_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1389] = { - [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_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = 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_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1390] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_elseif] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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), [sym_comment] = ACTIONS(3), }, - [1391] = { - [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_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = 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_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1392] = { - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_identifier] = ACTIONS(2017), - [sym_variable] = ACTIONS(2019), - [sym_pipe_variable] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_newtype] = ACTIONS(2017), - [anon_sym_shape] = ACTIONS(2017), - [anon_sym_tuple] = ACTIONS(2017), - [anon_sym_clone] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_BSLASH] = ACTIONS(2019), - [anon_sym_self] = ACTIONS(2017), - [anon_sym_parent] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_throw] = ACTIONS(2017), - [anon_sym_echo] = ACTIONS(2017), - [anon_sym_unset] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_concurrent] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_function] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_elseif] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_switch] = ACTIONS(2017), - [anon_sym_foreach] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_using] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [sym_integer] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_True] = ACTIONS(2017), - [anon_sym_TRUE] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_False] = ACTIONS(2017), - [anon_sym_FALSE] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [anon_sym_Null] = ACTIONS(2017), - [anon_sym_NULL] = ACTIONS(2017), - [sym_string] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_array] = ACTIONS(2017), - [anon_sym_varray] = ACTIONS(2017), - [anon_sym_darray] = ACTIONS(2017), - [anon_sym_vec] = ACTIONS(2017), - [anon_sym_dict] = ACTIONS(2017), - [anon_sym_keyset] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_include_once] = ACTIONS(2017), - [anon_sym_require] = ACTIONS(2017), - [anon_sym_require_once] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_interface] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_abstract] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2019), - [sym_final_modifier] = ACTIONS(2017), - [sym_xhp_modifier] = ACTIONS(2017), - [sym_xhp_identifier] = ACTIONS(2017), - [sym_xhp_class_identifier] = ACTIONS(2019), + [1429] = { + [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), }, - [1393] = { - [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_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = 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_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_LT_LT] = 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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1431] = { + [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), }, - [1394] = { - [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_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = 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_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1395] = { - [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_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = 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_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_LT_LT] = 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), + [1433] = { + [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), }, - [1396] = { - [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_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = 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_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1397] = { - [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_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = 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_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1398] = { - [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_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = 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_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_LT_LT] = 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), + [1436] = { + [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), }, - [1399] = { - [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_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = 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_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_LT_LT] = 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), + [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), }, - [1400] = { - [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_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = 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_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_LT_LT] = 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), + [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), }, - [1401] = { - [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_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = 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_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1402] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1441] = { [ts_builtin_sym_end] = ACTIONS(2299), [sym_identifier] = ACTIONS(2297), [sym_variable] = ACTIONS(2299), @@ -164522,10 +169544,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -164571,12 +169598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2297), [anon_sym_PLUS] = ACTIONS(2297), [anon_sym_DASH] = 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_list] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), [anon_sym_BANG] = ACTIONS(2299), [anon_sym_PLUS_PLUS] = ACTIONS(2299), [anon_sym_DASH_DASH] = ACTIONS(2299), @@ -164595,1470 +169617,1813 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2299), [sym_comment] = ACTIONS(3), }, - [1403] = { - [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_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = 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_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1404] = { - [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_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = 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_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_LT_LT] = 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), + [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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1445] = { + [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), + }, + [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), [sym_comment] = ACTIONS(3), }, - [1405] = { - [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_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = 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_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1406] = { - [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_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = 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_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1407] = { - [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_BSLASH] = ACTIONS(2079), - [anon_sym_self] = ACTIONS(2077), - [anon_sym_parent] = ACTIONS(2077), - [anon_sym_static] = 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_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_include] = ACTIONS(2077), - [anon_sym_include_once] = ACTIONS(2077), - [anon_sym_require] = ACTIONS(2077), - [anon_sym_require_once] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1408] = { - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2081), - [sym_variable] = ACTIONS(2083), - [sym_pipe_variable] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_newtype] = ACTIONS(2081), - [anon_sym_shape] = ACTIONS(2081), - [anon_sym_tuple] = ACTIONS(2081), - [anon_sym_clone] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_BSLASH] = ACTIONS(2083), - [anon_sym_self] = ACTIONS(2081), - [anon_sym_parent] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_echo] = ACTIONS(2081), - [anon_sym_unset] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_concurrent] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_foreach] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [sym_integer] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_True] = ACTIONS(2081), - [anon_sym_TRUE] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_False] = ACTIONS(2081), - [anon_sym_FALSE] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_Null] = ACTIONS(2081), - [anon_sym_NULL] = ACTIONS(2081), - [sym_string] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_array] = ACTIONS(2081), - [anon_sym_varray] = ACTIONS(2081), - [anon_sym_darray] = ACTIONS(2081), - [anon_sym_vec] = ACTIONS(2081), - [anon_sym_dict] = ACTIONS(2081), - [anon_sym_keyset] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_include] = ACTIONS(2081), - [anon_sym_include_once] = ACTIONS(2081), - [anon_sym_require] = ACTIONS(2081), - [anon_sym_require_once] = ACTIONS(2081), - [anon_sym_list] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2083), - [sym_final_modifier] = ACTIONS(2081), - [sym_xhp_modifier] = ACTIONS(2081), - [sym_xhp_identifier] = ACTIONS(2081), - [sym_xhp_class_identifier] = ACTIONS(2083), + [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), [sym_comment] = ACTIONS(3), }, - [1409] = { - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2085), - [sym_variable] = ACTIONS(2087), - [sym_pipe_variable] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_newtype] = ACTIONS(2085), - [anon_sym_shape] = ACTIONS(2085), - [anon_sym_tuple] = ACTIONS(2085), - [anon_sym_clone] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_BSLASH] = ACTIONS(2087), - [anon_sym_self] = ACTIONS(2085), - [anon_sym_parent] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_LT_LT_LT] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_echo] = ACTIONS(2085), - [anon_sym_unset] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_concurrent] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_foreach] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [sym_integer] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_True] = ACTIONS(2085), - [anon_sym_TRUE] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_False] = ACTIONS(2085), - [anon_sym_FALSE] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_Null] = ACTIONS(2085), - [anon_sym_NULL] = ACTIONS(2085), - [sym_string] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_array] = ACTIONS(2085), - [anon_sym_varray] = ACTIONS(2085), - [anon_sym_darray] = ACTIONS(2085), - [anon_sym_vec] = ACTIONS(2085), - [anon_sym_dict] = ACTIONS(2085), - [anon_sym_keyset] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_include_once] = ACTIONS(2085), - [anon_sym_require] = ACTIONS(2085), - [anon_sym_require_once] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2087), - [sym_final_modifier] = ACTIONS(2085), - [sym_xhp_modifier] = ACTIONS(2085), - [sym_xhp_identifier] = ACTIONS(2085), - [sym_xhp_class_identifier] = ACTIONS(2087), + [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), [sym_comment] = ACTIONS(3), }, - [1410] = { - [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_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = 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_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1411] = { - [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_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = 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_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_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1412] = { - [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_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = 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_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1413] = { - [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_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = 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_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1414] = { - [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_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = 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_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1415] = { - [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_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = 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_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1416] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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), [sym_comment] = ACTIONS(3), }, - [1417] = { - [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_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = 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_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1418] = { - [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_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = 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_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1419] = { - [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_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = 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_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1420] = { - [ts_builtin_sym_end] = ACTIONS(2363), + [1463] = { [sym_identifier] = ACTIONS(2361), [sym_variable] = ACTIONS(2363), [sym_pipe_variable] = ACTIONS(2363), @@ -166070,11 +171435,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -166119,12 +171490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2361), [anon_sym_PLUS] = ACTIONS(2361), [anon_sym_DASH] = 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_list] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), [anon_sym_BANG] = ACTIONS(2363), [anon_sym_PLUS_PLUS] = ACTIONS(2363), [anon_sym_DASH_DASH] = ACTIONS(2363), @@ -166143,94 +171509,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2363), [sym_comment] = ACTIONS(3), }, - [1421] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1422] = { - [ts_builtin_sym_end] = ACTIONS(2251), + [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), + [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), + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + }, + [1470] = { [sym_identifier] = ACTIONS(2249), [sym_variable] = ACTIONS(2251), [sym_pipe_variable] = ACTIONS(2251), @@ -166242,11 +172037,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -166291,548 +172092,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2249), [anon_sym_PLUS] = ACTIONS(2249), [anon_sym_DASH] = 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_list] = ACTIONS(2249), - [anon_sym_LT_LT] = 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), - }, - [1423] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1424] = { - [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_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = 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_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_LT_LT] = 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), - }, - [1425] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1426] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1427] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1428] = { - [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_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = 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_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1429] = { - [ts_builtin_sym_end] = ACTIONS(2211), + [1472] = { [sym_identifier] = ACTIONS(2209), [sym_variable] = ACTIONS(2211), [sym_pipe_variable] = ACTIONS(2211), @@ -166844,97 +172209,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2209), [anon_sym_print] = ACTIONS(2209), [anon_sym_namespace] = 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_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_include] = ACTIONS(2209), [anon_sym_include_once] = ACTIONS(2209), [anon_sym_require] = ACTIONS(2209), [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1430] = { - [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_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), @@ -166979,12 +172264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2209), [anon_sym_PLUS] = ACTIONS(2209), [anon_sym_DASH] = 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_list] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), [anon_sym_BANG] = ACTIONS(2211), [anon_sym_PLUS_PLUS] = ACTIONS(2211), [anon_sym_DASH_DASH] = ACTIONS(2211), @@ -167003,2501 +172283,2845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [1431] = { - [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_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = 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_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1432] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1433] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1434] = { - [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_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = 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_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1435] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1436] = { - [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_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = 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_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_LT_LT] = 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), + [1482] = { + [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_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), }, - [1437] = { - [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_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = 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_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1438] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1439] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), - }, - [1440] = { - [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_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = 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_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_LT_LT] = 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), + }, + [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), [sym_comment] = ACTIONS(3), }, - [1441] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1442] = { - [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_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = 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_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1443] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [1489] = { + [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), }, - [1444] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1445] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1446] = { - [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_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = 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_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1447] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1448] = { - [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_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = 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_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_LT_LT] = 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), + [1494] = { + [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_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), }, - [1449] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1450] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1451] = { - [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_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = 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_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1452] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1453] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1454] = { - [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_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = 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_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_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1455] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [1501] = { + [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), }, - [1456] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1457] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1458] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1459] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1460] = { + [1506] = { [ts_builtin_sym_end] = ACTIONS(2259), [sym_identifier] = ACTIONS(2257), [sym_variable] = ACTIONS(2259), @@ -169510,10 +175134,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -169559,12 +175188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2257), [anon_sym_PLUS] = ACTIONS(2257), [anon_sym_DASH] = 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_list] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), [anon_sym_BANG] = ACTIONS(2259), [anon_sym_PLUS_PLUS] = ACTIONS(2259), [anon_sym_DASH_DASH] = ACTIONS(2259), @@ -169583,695 +175207,1556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [1461] = { - [ts_builtin_sym_end] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2073), - [sym_variable] = ACTIONS(2075), - [sym_pipe_variable] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_newtype] = ACTIONS(2073), - [anon_sym_shape] = ACTIONS(2073), - [anon_sym_tuple] = ACTIONS(2073), - [anon_sym_clone] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_print] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2073), - [anon_sym_BSLASH] = ACTIONS(2075), - [anon_sym_self] = ACTIONS(2073), - [anon_sym_parent] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_LT_LT_LT] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_echo] = ACTIONS(2073), - [anon_sym_unset] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_concurrent] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_function] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_foreach] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_using] = ACTIONS(2073), - [sym_float] = ACTIONS(2075), - [sym_integer] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_True] = ACTIONS(2073), - [anon_sym_TRUE] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_False] = ACTIONS(2073), - [anon_sym_FALSE] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [anon_sym_Null] = ACTIONS(2073), - [anon_sym_NULL] = ACTIONS(2073), - [sym_string] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_array] = ACTIONS(2073), - [anon_sym_varray] = ACTIONS(2073), - [anon_sym_darray] = ACTIONS(2073), - [anon_sym_vec] = ACTIONS(2073), - [anon_sym_dict] = ACTIONS(2073), - [anon_sym_keyset] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_include] = ACTIONS(2073), - [anon_sym_include_once] = ACTIONS(2073), - [anon_sym_require] = ACTIONS(2073), - [anon_sym_require_once] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_abstract] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2075), - [sym_final_modifier] = ACTIONS(2073), - [sym_xhp_modifier] = ACTIONS(2073), - [sym_xhp_identifier] = ACTIONS(2073), - [sym_xhp_class_identifier] = ACTIONS(2075), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1462] = { - [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_BSLASH] = ACTIONS(2071), - [anon_sym_self] = ACTIONS(2069), - [anon_sym_parent] = ACTIONS(2069), - [anon_sym_static] = 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_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_include] = ACTIONS(2069), - [anon_sym_include_once] = ACTIONS(2069), - [anon_sym_require] = ACTIONS(2069), - [anon_sym_require_once] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1463] = { - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2065), - [sym_variable] = ACTIONS(2067), - [sym_pipe_variable] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_newtype] = ACTIONS(2065), - [anon_sym_shape] = ACTIONS(2065), - [anon_sym_tuple] = ACTIONS(2065), - [anon_sym_clone] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_print] = ACTIONS(2065), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_BSLASH] = ACTIONS(2067), - [anon_sym_self] = ACTIONS(2065), - [anon_sym_parent] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_LT_LT_LT] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_throw] = ACTIONS(2065), - [anon_sym_echo] = ACTIONS(2065), - [anon_sym_unset] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_concurrent] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_function] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_switch] = ACTIONS(2065), - [anon_sym_foreach] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [sym_float] = ACTIONS(2067), - [sym_integer] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_True] = ACTIONS(2065), - [anon_sym_TRUE] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_False] = ACTIONS(2065), - [anon_sym_FALSE] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [anon_sym_Null] = ACTIONS(2065), - [anon_sym_NULL] = ACTIONS(2065), - [sym_string] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_array] = ACTIONS(2065), - [anon_sym_varray] = ACTIONS(2065), - [anon_sym_darray] = ACTIONS(2065), - [anon_sym_vec] = ACTIONS(2065), - [anon_sym_dict] = ACTIONS(2065), - [anon_sym_keyset] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_include] = ACTIONS(2065), - [anon_sym_include_once] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(2065), - [anon_sym_require_once] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_abstract] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2067), - [sym_final_modifier] = ACTIONS(2065), - [sym_xhp_modifier] = ACTIONS(2065), - [sym_xhp_identifier] = ACTIONS(2065), - [sym_xhp_class_identifier] = ACTIONS(2067), + [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), [sym_comment] = ACTIONS(3), }, - [1464] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1465] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1466] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1467] = { - [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_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = 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_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1468] = { - [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_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = 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_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1469] = { + [1525] = { + [ts_builtin_sym_end] = ACTIONS(2435), [sym_identifier] = ACTIONS(2433), [sym_variable] = ACTIONS(2435), [sym_pipe_variable] = ACTIONS(2435), @@ -170283,12 +176768,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -170333,12 +176822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2433), [anon_sym_PLUS] = ACTIONS(2433), [anon_sym_DASH] = 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_list] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), [anon_sym_BANG] = ACTIONS(2435), [anon_sym_PLUS_PLUS] = ACTIONS(2435), [anon_sym_DASH_DASH] = ACTIONS(2435), @@ -170357,3877 +176841,3706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, - [1470] = { - [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_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = 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_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_LT_LT] = 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), - }, - [1471] = { - [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_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = 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_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_LT_LT] = 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), - }, - [1472] = { - [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_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = 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_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_LT_LT] = 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), - }, - [1473] = { - [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_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = 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_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_LT_LT] = 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), - }, - [1474] = { - [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_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = 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_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_LT_LT] = 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), - }, - [1475] = { - [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_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = 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_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1476] = { - [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_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = 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_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_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1477] = { - [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_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = 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_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1478] = { - [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_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = 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_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1479] = { - [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_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = 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_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1480] = { - [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_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = 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_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_LT_LT] = 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), + [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), [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_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = 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_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_LT_LT] = 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), + [1532] = { + [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_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), }, - [1482] = { - [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_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = 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_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1483] = { - [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_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = 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_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1484] = { - [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_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = 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_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1485] = { - [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_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = 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_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1486] = { - [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_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = 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_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1487] = { - [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_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = 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_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1488] = { - [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_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = 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_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1489] = { - [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_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = 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_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1490] = { - [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_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = 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_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1491] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), + [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), [sym_comment] = ACTIONS(3), }, - [1492] = { - [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_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = 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_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1493] = { - [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_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = 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_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1494] = { - [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_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = 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_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1495] = { - [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_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = 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_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_LT_LT] = 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), + [1547] = { + [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_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), }, - [1496] = { - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), + [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), }, - [1497] = { - [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_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = 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_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_LT_LT] = 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), + [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), }, - [1498] = { - [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_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = 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_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1499] = { - [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_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = 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_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1500] = { - [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_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = 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_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1501] = { - [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_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = 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_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1502] = { - [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_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = 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_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_LT_LT] = 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), + [1554] = { + [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), }, - [1503] = { - [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_BSLASH] = ACTIONS(2063), - [anon_sym_self] = ACTIONS(2061), - [anon_sym_parent] = ACTIONS(2061), - [anon_sym_static] = 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_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_include] = ACTIONS(2061), - [anon_sym_include_once] = ACTIONS(2061), - [anon_sym_require] = ACTIONS(2061), - [anon_sym_require_once] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1504] = { - [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_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = 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_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_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1505] = { - [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_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = 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_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1506] = { - [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_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = 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_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1507] = { - [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_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = 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_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_LT_LT] = 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), + [1560] = { + [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_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), }, - [1508] = { - [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_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = 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_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1509] = { - [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_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = 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_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1510] = { - [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_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = 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_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1511] = { - [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_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = 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_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_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1512] = { - [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_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = 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_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1513] = { - [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_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = 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_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1514] = { - [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_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = 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_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1515] = { + [1569] = { + [ts_builtin_sym_end] = ACTIONS(2379), [sym_identifier] = ACTIONS(2377), [sym_variable] = ACTIONS(2379), [sym_pipe_variable] = ACTIONS(2379), @@ -174239,12 +180552,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -174289,12 +180606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2377), [anon_sym_PLUS] = ACTIONS(2377), [anon_sym_DASH] = 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_list] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), [anon_sym_BANG] = ACTIONS(2379), [anon_sym_PLUS_PLUS] = ACTIONS(2379), [anon_sym_DASH_DASH] = ACTIONS(2379), @@ -174313,1727 +180625,2158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, - [1516] = { - [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_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = 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_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_LT_LT] = 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), + [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), + [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), + [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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1517] = { - [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_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = 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_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_LT_LT] = 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), + [1575] = { + [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), }, - [1518] = { - [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_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = 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_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_LT_LT] = 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), + [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), }, - [1519] = { - [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_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = 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_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_LT_LT] = 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), + [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), }, - [1520] = { - [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_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = 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_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_LT_LT] = 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), + [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), }, - [1521] = { - [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_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = 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_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_LT_LT] = 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), + [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), }, - [1522] = { - [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_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = 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_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1523] = { - [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_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = 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_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_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1524] = { - [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_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = 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_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1525] = { - [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_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = 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_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1526] = { - [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_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = 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_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1527] = { - [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_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = 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_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1528] = { - [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_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = 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_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1529] = { - [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_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = 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_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1530] = { - [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_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = 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_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1531] = { - [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_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = 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_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1532] = { - [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_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = 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_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1533] = { - [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_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = 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_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1534] = { - [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_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = 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_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1535] = { - [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_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = 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_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1536] = { + [1595] = { + [ts_builtin_sym_end] = ACTIONS(2447), [sym_identifier] = ACTIONS(2445), [sym_variable] = ACTIONS(2447), [sym_pipe_variable] = ACTIONS(2447), @@ -176045,12 +182788,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -176095,12 +182842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2445), [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_DASH] = 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_list] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), [anon_sym_BANG] = ACTIONS(2447), [anon_sym_PLUS_PLUS] = ACTIONS(2447), [anon_sym_DASH_DASH] = ACTIONS(2447), @@ -176119,1040 +182861,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [1537] = { - [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_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = 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_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_LT_LT] = 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), - }, - [1538] = { - [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_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = 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_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_LT_LT] = 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), - }, - [1539] = { - [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_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = 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_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1540] = { - [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_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = 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_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1541] = { - [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_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = 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_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1542] = { - [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_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = 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_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1543] = { - [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_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = 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_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1544] = { - [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_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = 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_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1545] = { - [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_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = 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_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1546] = { - [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_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = 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_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1547] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [1604] = { + [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), }, - [1548] = { - [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_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = 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_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_LT_LT] = 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), + [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), + [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), [sym_comment] = ACTIONS(3), }, - [1549] = { - [ts_builtin_sym_end] = ACTIONS(2123), + [1607] = { [sym_identifier] = ACTIONS(2121), [sym_variable] = ACTIONS(2123), [sym_pipe_variable] = ACTIONS(2123), @@ -177164,11 +183819,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -177213,12 +183874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2121), [anon_sym_PLUS] = ACTIONS(2121), [anon_sym_DASH] = 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_list] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), [anon_sym_BANG] = ACTIONS(2123), [anon_sym_PLUS_PLUS] = ACTIONS(2123), [anon_sym_DASH_DASH] = ACTIONS(2123), @@ -177237,1039 +183893,782 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2123), [sym_comment] = ACTIONS(3), }, - [1550] = { - [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_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = 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_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_LT_LT] = 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), - }, - [1551] = { - [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_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = 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_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_LT_LT] = 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), - }, - [1552] = { - [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_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = 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_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_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_LT_LT] = 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), - }, - [1553] = { - [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_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = 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_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_LT_LT] = 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), - }, - [1554] = { - [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_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = 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_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1555] = { - [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_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = 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_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1556] = { - [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_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = 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_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1557] = { - [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_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = 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_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1558] = { - [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_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = 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_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_LT_LT] = 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), + [1612] = { + [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_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), }, - [1559] = { - [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_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = 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_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1560] = { - [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_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = 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_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1561] = { - [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_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = 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_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1562] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1617] = { + [ts_builtin_sym_end] = ACTIONS(2511), [sym_identifier] = ACTIONS(2509), [sym_variable] = ACTIONS(2511), [sym_pipe_variable] = ACTIONS(2511), @@ -178281,12 +184680,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -178331,12 +184734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2509), [anon_sym_PLUS] = ACTIONS(2509), [anon_sym_DASH] = 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_list] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), [anon_sym_BANG] = ACTIONS(2511), [anon_sym_PLUS_PLUS] = ACTIONS(2511), [anon_sym_DASH_DASH] = ACTIONS(2511), @@ -178355,265 +184753,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2511), [sym_comment] = ACTIONS(3), }, - [1563] = { - [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_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = 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_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_LT_LT] = 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), + [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), }, - [1564] = { - [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_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = 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_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_LT_LT] = 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), + [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), }, - [1565] = { - [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_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = 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_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_LT_LT] = 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), + [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), }, - [1566] = { + [1623] = { + [ts_builtin_sym_end] = ACTIONS(2523), [sym_identifier] = ACTIONS(2521), [sym_variable] = ACTIONS(2523), [sym_pipe_variable] = ACTIONS(2523), @@ -178625,12 +185196,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -178675,12 +185250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2521), [anon_sym_PLUS] = ACTIONS(2521), [anon_sym_DASH] = 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_list] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), [anon_sym_BANG] = ACTIONS(2523), [anon_sym_PLUS_PLUS] = ACTIONS(2523), [anon_sym_DASH_DASH] = ACTIONS(2523), @@ -178699,7 +185269,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, - [1567] = { + [1624] = { + [ts_builtin_sym_end] = ACTIONS(2527), [sym_identifier] = ACTIONS(2525), [sym_variable] = ACTIONS(2527), [sym_pipe_variable] = ACTIONS(2527), @@ -178711,12 +185282,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -178761,12 +185336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2525), [anon_sym_PLUS] = ACTIONS(2525), [anon_sym_DASH] = 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_list] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), [anon_sym_BANG] = ACTIONS(2527), [anon_sym_PLUS_PLUS] = ACTIONS(2527), [anon_sym_DASH_DASH] = ACTIONS(2527), @@ -178785,7 +185355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, - [1568] = { + [1625] = { [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -178797,10 +185367,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -178847,12 +185422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2529), [anon_sym_PLUS] = ACTIONS(2529), [anon_sym_DASH] = 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_list] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), [anon_sym_BANG] = ACTIONS(2531), [anon_sym_PLUS_PLUS] = ACTIONS(2531), [anon_sym_DASH_DASH] = ACTIONS(2531), @@ -178871,179 +185441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1569] = { - [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_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = 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_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_LT_LT] = 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), - }, - [1570] = { - [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_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = 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_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_LT_LT] = 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), - }, - [1571] = { + [1626] = { + [ts_builtin_sym_end] = ACTIONS(2543), [sym_identifier] = ACTIONS(2541), [sym_variable] = ACTIONS(2543), [sym_pipe_variable] = ACTIONS(2543), @@ -179055,12 +185454,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -179105,12 +185508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2541), [anon_sym_PLUS] = ACTIONS(2541), [anon_sym_DASH] = 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_list] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), [anon_sym_BANG] = ACTIONS(2543), [anon_sym_PLUS_PLUS] = ACTIONS(2543), [anon_sym_DASH_DASH] = ACTIONS(2543), @@ -179129,609 +185527,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, - [1572] = { - [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_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = 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_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_LT_LT] = 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), - }, - [1573] = { - [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_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = 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_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_LT_LT] = 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), - }, - [1574] = { - [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_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = 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_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_LT_LT] = 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), - }, - [1575] = { - [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_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = 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_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_LT_LT] = 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), - }, - [1576] = { - [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_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = 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_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1577] = { - [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_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = 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_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1578] = { - [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_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = 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_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1579] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1631] = { [ts_builtin_sym_end] = ACTIONS(2547), [sym_identifier] = ACTIONS(2545), [sym_variable] = ACTIONS(2547), @@ -179744,10 +185884,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -179793,12 +185938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2545), [anon_sym_PLUS] = ACTIONS(2545), [anon_sym_DASH] = 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_list] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), [anon_sym_BANG] = ACTIONS(2547), [anon_sym_PLUS_PLUS] = ACTIONS(2547), [anon_sym_DASH_DASH] = ACTIONS(2547), @@ -179817,1642 +185957,1985 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2547), [sym_comment] = ACTIONS(3), }, - [1580] = { - [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_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = 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_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_LT_LT] = 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), - }, - [1581] = { - [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_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = 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_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_LT_LT] = 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), + [1632] = { + [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_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), }, - [1582] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1583] = { - [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_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = 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_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1584] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1585] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1586] = { - [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_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = 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_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1587] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1588] = { - [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_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = 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_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1589] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1590] = { - [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_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = 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_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1591] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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_comment] = ACTIONS(3), }, - [1592] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1593] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1594] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1595] = { - [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_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = 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_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_LT_LT] = 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), + [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), }, - [1596] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [1648] = { + [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_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), }, - [1597] = { - [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_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = 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_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1598] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1599] = { - [ts_builtin_sym_end] = ACTIONS(2443), + [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_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_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_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_comment] = ACTIONS(3), + }, + [1655] = { [sym_identifier] = ACTIONS(2441), [sym_variable] = ACTIONS(2443), [sym_pipe_variable] = ACTIONS(2443), @@ -181464,11 +187947,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -181513,12 +188002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2441), [anon_sym_PLUS] = ACTIONS(2441), [anon_sym_DASH] = 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_list] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), [anon_sym_BANG] = ACTIONS(2443), [anon_sym_PLUS_PLUS] = ACTIONS(2443), [anon_sym_DASH_DASH] = ACTIONS(2443), @@ -181537,4995 +188021,4652 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, - [1600] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1601] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1602] = { - [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_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = 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_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_LT_LT] = 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), - }, - [1603] = { - [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_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = 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_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_LT_LT] = 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), - }, - [1604] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1605] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1606] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1607] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), - }, - [1608] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [1656] = { + [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_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), }, - [1609] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1610] = { - [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_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = 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_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1611] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1612] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1613] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1614] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1615] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), + [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_comment] = ACTIONS(3), }, - [1616] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), }, - [1617] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1618] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1619] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1620] = { - [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_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = 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_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_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1621] = { - [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_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = 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_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1622] = { - [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_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = 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_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_LT_LT] = 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), + [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), }, - [1623] = { - [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_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = 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_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1624] = { - [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_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = 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_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1625] = { - [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_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = 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_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1626] = { - [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_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = 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_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1627] = { - [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_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = 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_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_LT_LT] = 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), + [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_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_comment] = ACTIONS(3), }, - [1628] = { - [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_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = 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_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1629] = { - [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_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = 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_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1630] = { - [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_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = 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_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1631] = { - [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_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = 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_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1632] = { - [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_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = 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_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1633] = { - [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_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = 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_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1634] = { - [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_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = 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_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_LT_LT] = 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), + [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), }, - [1635] = { - [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_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = 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_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1636] = { - [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_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = 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_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1637] = { - [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_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = 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_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1638] = { - [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_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = 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_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1639] = { - [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_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = 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_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1640] = { - [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_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = 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_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_LT_LT] = 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), + [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), }, - [1641] = { - [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_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = 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_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1642] = { - [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_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = 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_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1643] = { - [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_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = 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_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_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1644] = { - [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_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = 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_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1645] = { - [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_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = 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_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_LT_LT] = 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), + [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_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), }, - [1646] = { - [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_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = 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_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1647] = { - [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_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = 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_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1648] = { - [sym_identifier] = ACTIONS(1999), - [sym_variable] = ACTIONS(2001), - [sym_pipe_variable] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_newtype] = ACTIONS(1999), - [anon_sym_shape] = ACTIONS(1999), - [anon_sym_tuple] = ACTIONS(1999), - [anon_sym_clone] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_namespace] = ACTIONS(1999), - [anon_sym_BSLASH] = ACTIONS(2001), - [anon_sym_self] = ACTIONS(1999), - [anon_sym_parent] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_LT_LT_LT] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_throw] = ACTIONS(1999), - [anon_sym_echo] = ACTIONS(1999), - [anon_sym_unset] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_concurrent] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_function] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_switch] = ACTIONS(1999), - [anon_sym_foreach] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_using] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [sym_integer] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_True] = ACTIONS(1999), - [anon_sym_TRUE] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_False] = ACTIONS(1999), - [anon_sym_FALSE] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_Null] = ACTIONS(1999), - [anon_sym_NULL] = ACTIONS(1999), - [sym_string] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_array] = ACTIONS(1999), - [anon_sym_varray] = ACTIONS(1999), - [anon_sym_darray] = ACTIONS(1999), - [anon_sym_vec] = ACTIONS(1999), - [anon_sym_dict] = ACTIONS(1999), - [anon_sym_keyset] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_include_once] = ACTIONS(1999), - [anon_sym_require] = ACTIONS(1999), - [anon_sym_require_once] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_PLUS_PLUS] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_interface] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_abstract] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(2001), - [sym_final_modifier] = ACTIONS(1999), - [sym_xhp_modifier] = ACTIONS(1999), - [sym_xhp_identifier] = ACTIONS(1999), - [sym_xhp_class_identifier] = ACTIONS(2001), + [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_comment] = ACTIONS(3), }, - [1649] = { - [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_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = 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_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1650] = { - [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_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = 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_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1651] = { - [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_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = 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_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_LT_LT] = 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), + [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_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), [sym_comment] = ACTIONS(3), }, - [1652] = { - [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_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = 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_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1653] = { - [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_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = 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_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1654] = { - [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_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = 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_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1655] = { - [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_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = 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_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1656] = { - [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_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = 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_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1657] = { - [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_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = 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_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1658] = { + [1710] = { + [ts_builtin_sym_end] = ACTIONS(2147), [sym_identifier] = ACTIONS(2145), [sym_variable] = ACTIONS(2147), [sym_pipe_variable] = ACTIONS(2147), @@ -186537,12 +192678,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -186587,12 +192732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2145), [anon_sym_PLUS] = ACTIONS(2145), [anon_sym_DASH] = 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_list] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), [anon_sym_BANG] = ACTIONS(2147), [anon_sym_PLUS_PLUS] = ACTIONS(2147), [anon_sym_DASH_DASH] = ACTIONS(2147), @@ -186611,695 +192751,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [1659] = { - [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_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = 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_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_LT_LT] = 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), - }, - [1660] = { - [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_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = 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_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_LT_LT] = 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), - }, - [1661] = { - [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_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = 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_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_LT_LT] = 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), - }, - [1662] = { - [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_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = 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_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_LT_LT] = 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), - }, - [1663] = { - [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_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = 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_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1664] = { - [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_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = 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_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1665] = { - [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_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = 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_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1666] = { - [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_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = 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_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1667] = { + [1715] = { + [ts_builtin_sym_end] = ACTIONS(2127), [sym_identifier] = ACTIONS(2125), [sym_variable] = ACTIONS(2127), [sym_pipe_variable] = ACTIONS(2127), @@ -187311,12 +193108,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -187361,12 +193162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2125), [anon_sym_PLUS] = ACTIONS(2125), [anon_sym_DASH] = 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_list] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), [anon_sym_BANG] = ACTIONS(2127), [anon_sym_PLUS_PLUS] = ACTIONS(2127), [anon_sym_DASH_DASH] = ACTIONS(2127), @@ -187385,953 +193181,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2127), [sym_comment] = ACTIONS(3), }, - [1668] = { - [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_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = 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_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_LT_LT] = 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), - }, - [1669] = { - [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_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = 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_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_LT_LT] = 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), - }, - [1670] = { - [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_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = 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_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_LT_LT] = 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), - }, - [1671] = { - [sym_identifier] = ACTIONS(2007), - [sym_variable] = ACTIONS(2009), - [sym_pipe_variable] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_newtype] = ACTIONS(2007), - [anon_sym_shape] = ACTIONS(2007), - [anon_sym_tuple] = ACTIONS(2007), - [anon_sym_clone] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2007), - [anon_sym_namespace] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_self] = ACTIONS(2007), - [anon_sym_parent] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_echo] = ACTIONS(2007), - [anon_sym_unset] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_concurrent] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_foreach] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_using] = ACTIONS(2007), - [sym_float] = ACTIONS(2009), - [sym_integer] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [sym_string] = ACTIONS(2009), - [anon_sym_AT] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_array] = ACTIONS(2007), - [anon_sym_varray] = ACTIONS(2007), - [anon_sym_darray] = ACTIONS(2007), - [anon_sym_vec] = ACTIONS(2007), - [anon_sym_dict] = ACTIONS(2007), - [anon_sym_keyset] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_include_once] = ACTIONS(2007), - [anon_sym_require] = ACTIONS(2007), - [anon_sym_require_once] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_await] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2009), - [sym_final_modifier] = ACTIONS(2007), - [sym_xhp_modifier] = ACTIONS(2007), - [sym_xhp_identifier] = ACTIONS(2007), - [sym_xhp_class_identifier] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - }, - [1672] = { - [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_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = 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_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_LT_LT] = 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), - }, - [1673] = { - [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_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = 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_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_LT_LT] = 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), - }, - [1674] = { - [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_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = 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_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_LT_LT] = 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), - }, - [1675] = { - [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_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = 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_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1676] = { - [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_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = 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_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1677] = { - [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_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = 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_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_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1678] = { - [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_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = 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_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1679] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [1721] = { [ts_builtin_sym_end] = ACTIONS(2175), [sym_identifier] = ACTIONS(2173), [sym_variable] = ACTIONS(2175), @@ -188344,10 +193624,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -188393,12 +193678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2173), [anon_sym_PLUS] = ACTIONS(2173), [anon_sym_DASH] = 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_list] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), [anon_sym_BANG] = ACTIONS(2175), [anon_sym_PLUS_PLUS] = ACTIONS(2175), [anon_sym_DASH_DASH] = ACTIONS(2175), @@ -188417,610 +193697,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [1680] = { - [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_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = 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_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_LT_LT] = 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] = { - [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_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = 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_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_LT_LT] = 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), - }, - [1682] = { - [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_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = 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_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1683] = { - [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_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = 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_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1684] = { - [sym_identifier] = ACTIONS(2085), - [sym_variable] = ACTIONS(2087), - [sym_pipe_variable] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_newtype] = ACTIONS(2085), - [anon_sym_shape] = ACTIONS(2085), - [anon_sym_tuple] = ACTIONS(2085), - [anon_sym_clone] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_BSLASH] = ACTIONS(2087), - [anon_sym_self] = ACTIONS(2085), - [anon_sym_parent] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_LT_LT_LT] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_echo] = ACTIONS(2085), - [anon_sym_unset] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_concurrent] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_foreach] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [sym_integer] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_True] = ACTIONS(2085), - [anon_sym_TRUE] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_False] = ACTIONS(2085), - [anon_sym_FALSE] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [anon_sym_Null] = ACTIONS(2085), - [anon_sym_NULL] = ACTIONS(2085), - [sym_string] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_array] = ACTIONS(2085), - [anon_sym_varray] = ACTIONS(2085), - [anon_sym_darray] = ACTIONS(2085), - [anon_sym_vec] = ACTIONS(2085), - [anon_sym_dict] = ACTIONS(2085), - [anon_sym_keyset] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_include_once] = ACTIONS(2085), - [anon_sym_require] = ACTIONS(2085), - [anon_sym_require_once] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2087), - [sym_final_modifier] = ACTIONS(2085), - [sym_xhp_modifier] = ACTIONS(2085), - [sym_xhp_identifier] = ACTIONS(2085), - [sym_xhp_class_identifier] = ACTIONS(2087), + [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), [sym_comment] = ACTIONS(3), }, - [1685] = { - [sym_identifier] = ACTIONS(2081), - [sym_variable] = ACTIONS(2083), - [sym_pipe_variable] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_newtype] = ACTIONS(2081), - [anon_sym_shape] = ACTIONS(2081), - [anon_sym_tuple] = ACTIONS(2081), - [anon_sym_clone] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_BSLASH] = ACTIONS(2083), - [anon_sym_self] = ACTIONS(2081), - [anon_sym_parent] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_LT_LT_LT] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_echo] = ACTIONS(2081), - [anon_sym_unset] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_concurrent] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_foreach] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [sym_integer] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_True] = ACTIONS(2081), - [anon_sym_TRUE] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_False] = ACTIONS(2081), - [anon_sym_FALSE] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [anon_sym_Null] = ACTIONS(2081), - [anon_sym_NULL] = ACTIONS(2081), - [sym_string] = ACTIONS(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_array] = ACTIONS(2081), - [anon_sym_varray] = ACTIONS(2081), - [anon_sym_darray] = ACTIONS(2081), - [anon_sym_vec] = ACTIONS(2081), - [anon_sym_dict] = ACTIONS(2081), - [anon_sym_keyset] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_include] = ACTIONS(2081), - [anon_sym_include_once] = ACTIONS(2081), - [anon_sym_require] = ACTIONS(2081), - [anon_sym_require_once] = ACTIONS(2081), - [anon_sym_list] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2083), - [sym_final_modifier] = ACTIONS(2081), - [sym_xhp_modifier] = ACTIONS(2081), - [sym_xhp_identifier] = ACTIONS(2081), - [sym_xhp_class_identifier] = ACTIONS(2083), + [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), [sym_comment] = ACTIONS(3), }, - [1686] = { - [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_BSLASH] = ACTIONS(2079), - [anon_sym_self] = ACTIONS(2077), - [anon_sym_parent] = ACTIONS(2077), - [anon_sym_static] = 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_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_include] = ACTIONS(2077), - [anon_sym_include_once] = ACTIONS(2077), - [anon_sym_require] = ACTIONS(2077), - [anon_sym_require_once] = ACTIONS(2077), - [anon_sym_list] = ACTIONS(2077), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1687] = { - [ts_builtin_sym_end] = ACTIONS(2455), + [1727] = { [sym_identifier] = ACTIONS(2453), [sym_variable] = ACTIONS(2455), [sym_pipe_variable] = ACTIONS(2455), @@ -189032,11 +194139,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -189081,12 +194194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2453), [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_DASH] = 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_list] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), [anon_sym_BANG] = ACTIONS(2455), [anon_sym_PLUS_PLUS] = ACTIONS(2455), [anon_sym_DASH_DASH] = ACTIONS(2455), @@ -189105,523 +194213,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2455), [sym_comment] = ACTIONS(3), }, - [1688] = { - [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_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = 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_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_LT_LT] = 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), - }, - [1689] = { - [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_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = 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_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1690] = { - [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_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = 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_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1691] = { - [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_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = 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_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1692] = { - [sym_identifier] = ACTIONS(2073), - [sym_variable] = ACTIONS(2075), - [sym_pipe_variable] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_newtype] = ACTIONS(2073), - [anon_sym_shape] = ACTIONS(2073), - [anon_sym_tuple] = ACTIONS(2073), - [anon_sym_clone] = ACTIONS(2073), - [anon_sym_new] = ACTIONS(2073), - [anon_sym_print] = ACTIONS(2073), - [anon_sym_namespace] = ACTIONS(2073), - [anon_sym_BSLASH] = ACTIONS(2075), - [anon_sym_self] = ACTIONS(2073), - [anon_sym_parent] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_LT_LT_LT] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_echo] = ACTIONS(2073), - [anon_sym_unset] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_concurrent] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_function] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_switch] = ACTIONS(2073), - [anon_sym_foreach] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_using] = ACTIONS(2073), - [sym_float] = ACTIONS(2075), - [sym_integer] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_True] = ACTIONS(2073), - [anon_sym_TRUE] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_False] = ACTIONS(2073), - [anon_sym_FALSE] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [anon_sym_Null] = ACTIONS(2073), - [anon_sym_NULL] = ACTIONS(2073), - [sym_string] = ACTIONS(2075), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_TILDE] = ACTIONS(2075), - [anon_sym_array] = ACTIONS(2073), - [anon_sym_varray] = ACTIONS(2073), - [anon_sym_darray] = ACTIONS(2073), - [anon_sym_vec] = ACTIONS(2073), - [anon_sym_dict] = ACTIONS(2073), - [anon_sym_keyset] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_include] = ACTIONS(2073), - [anon_sym_include_once] = ACTIONS(2073), - [anon_sym_require] = ACTIONS(2073), - [anon_sym_require_once] = ACTIONS(2073), - [anon_sym_list] = ACTIONS(2073), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(2075), - [anon_sym_DASH_DASH] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_interface] = ACTIONS(2073), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_abstract] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2075), - [sym_final_modifier] = ACTIONS(2073), - [sym_xhp_modifier] = ACTIONS(2073), - [sym_xhp_identifier] = ACTIONS(2073), - [sym_xhp_class_identifier] = ACTIONS(2075), + [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_comment] = ACTIONS(3), }, - [1693] = { - [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_BSLASH] = ACTIONS(2071), - [anon_sym_self] = ACTIONS(2069), - [anon_sym_parent] = ACTIONS(2069), - [anon_sym_static] = 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_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_include] = ACTIONS(2069), - [anon_sym_include_once] = ACTIONS(2069), - [anon_sym_require] = ACTIONS(2069), - [anon_sym_require_once] = ACTIONS(2069), - [anon_sym_list] = ACTIONS(2069), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1694] = { + [1733] = { [ts_builtin_sym_end] = ACTIONS(2459), [sym_identifier] = ACTIONS(2457), [sym_variable] = ACTIONS(2459), @@ -189634,10 +194656,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -189683,12 +194710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2457), [anon_sym_PLUS] = ACTIONS(2457), [anon_sym_DASH] = 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_list] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), [anon_sym_BANG] = ACTIONS(2459), [anon_sym_PLUS_PLUS] = ACTIONS(2459), [anon_sym_DASH_DASH] = ACTIONS(2459), @@ -189707,953 +194729,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, - [1695] = { - [sym_identifier] = ACTIONS(2065), - [sym_variable] = ACTIONS(2067), - [sym_pipe_variable] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_newtype] = ACTIONS(2065), - [anon_sym_shape] = ACTIONS(2065), - [anon_sym_tuple] = ACTIONS(2065), - [anon_sym_clone] = ACTIONS(2065), - [anon_sym_new] = ACTIONS(2065), - [anon_sym_print] = ACTIONS(2065), - [anon_sym_namespace] = ACTIONS(2065), - [anon_sym_BSLASH] = ACTIONS(2067), - [anon_sym_self] = ACTIONS(2065), - [anon_sym_parent] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_LT_LT_LT] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_throw] = ACTIONS(2065), - [anon_sym_echo] = ACTIONS(2065), - [anon_sym_unset] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_concurrent] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_function] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_switch] = ACTIONS(2065), - [anon_sym_foreach] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [sym_float] = ACTIONS(2067), - [sym_integer] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_True] = ACTIONS(2065), - [anon_sym_TRUE] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_False] = ACTIONS(2065), - [anon_sym_FALSE] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [anon_sym_Null] = ACTIONS(2065), - [anon_sym_NULL] = ACTIONS(2065), - [sym_string] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_array] = ACTIONS(2065), - [anon_sym_varray] = ACTIONS(2065), - [anon_sym_darray] = ACTIONS(2065), - [anon_sym_vec] = ACTIONS(2065), - [anon_sym_dict] = ACTIONS(2065), - [anon_sym_keyset] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_include] = ACTIONS(2065), - [anon_sym_include_once] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(2065), - [anon_sym_require_once] = ACTIONS(2065), - [anon_sym_list] = ACTIONS(2065), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_interface] = ACTIONS(2065), - [anon_sym_class] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_abstract] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2067), - [sym_final_modifier] = ACTIONS(2065), - [sym_xhp_modifier] = ACTIONS(2065), - [sym_xhp_identifier] = ACTIONS(2065), - [sym_xhp_class_identifier] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - }, - [1696] = { - [sym_identifier] = ACTIONS(2013), - [sym_variable] = ACTIONS(2015), - [sym_pipe_variable] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_newtype] = ACTIONS(2013), - [anon_sym_shape] = ACTIONS(2013), - [anon_sym_tuple] = ACTIONS(2013), - [anon_sym_clone] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_namespace] = ACTIONS(2013), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_self] = ACTIONS(2013), - [anon_sym_parent] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_throw] = ACTIONS(2013), - [anon_sym_echo] = ACTIONS(2013), - [anon_sym_unset] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_concurrent] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_function] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_switch] = ACTIONS(2013), - [anon_sym_foreach] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_using] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [sym_integer] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_True] = ACTIONS(2013), - [anon_sym_TRUE] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_False] = ACTIONS(2013), - [anon_sym_FALSE] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [anon_sym_Null] = ACTIONS(2013), - [anon_sym_NULL] = ACTIONS(2013), - [sym_string] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_array] = ACTIONS(2013), - [anon_sym_varray] = ACTIONS(2013), - [anon_sym_darray] = ACTIONS(2013), - [anon_sym_vec] = ACTIONS(2013), - [anon_sym_dict] = ACTIONS(2013), - [anon_sym_keyset] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_include_once] = ACTIONS(2013), - [anon_sym_require] = ACTIONS(2013), - [anon_sym_require_once] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_interface] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_abstract] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2015), - [sym_final_modifier] = ACTIONS(2013), - [sym_xhp_modifier] = ACTIONS(2013), - [sym_xhp_identifier] = ACTIONS(2013), - [sym_xhp_class_identifier] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - }, - [1697] = { - [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_BSLASH] = ACTIONS(2063), - [anon_sym_self] = ACTIONS(2061), - [anon_sym_parent] = ACTIONS(2061), - [anon_sym_static] = 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_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_include] = ACTIONS(2061), - [anon_sym_include_once] = ACTIONS(2061), - [anon_sym_require] = ACTIONS(2061), - [anon_sym_require_once] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1698] = { - [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_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = 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_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1699] = { - [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_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = 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_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1700] = { - [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_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = 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_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1701] = { - [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_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = 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_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1702] = { - [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_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = 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_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_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_LT_LT] = 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), + [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), }, - [1703] = { - [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_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = 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_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_LT_LT] = 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), + [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), }, - [1704] = { - [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_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = 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_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1705] = { - [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_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = 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_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1706] = { + [1744] = { + [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_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), + }, + [1745] = { [sym_identifier] = ACTIONS(2405), [sym_variable] = ACTIONS(2407), [sym_pipe_variable] = ACTIONS(2407), @@ -190665,10 +195687,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -190715,12 +195742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2405), [anon_sym_PLUS] = ACTIONS(2405), [anon_sym_DASH] = 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_list] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), [anon_sym_BANG] = ACTIONS(2407), [anon_sym_PLUS_PLUS] = ACTIONS(2407), [anon_sym_DASH_DASH] = ACTIONS(2407), @@ -190739,524 +195761,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, - [1707] = { - [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_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = 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_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_LT_LT] = 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), - }, - [1708] = { - [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_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = 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_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_LT_LT] = 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), - }, - [1709] = { - [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_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = 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_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_LT_LT] = 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), + [1746] = { + [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), }, - [1710] = { - [sym_identifier] = ACTIONS(2003), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_newtype] = ACTIONS(2003), - [anon_sym_shape] = ACTIONS(2003), - [anon_sym_tuple] = ACTIONS(2003), - [anon_sym_clone] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_namespace] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_self] = ACTIONS(2003), - [anon_sym_parent] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_throw] = ACTIONS(2003), - [anon_sym_echo] = ACTIONS(2003), - [anon_sym_unset] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_concurrent] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_function] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_foreach] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_do] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_using] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [sym_integer] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [sym_string] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_array] = ACTIONS(2003), - [anon_sym_varray] = ACTIONS(2003), - [anon_sym_darray] = ACTIONS(2003), - [anon_sym_vec] = ACTIONS(2003), - [anon_sym_dict] = ACTIONS(2003), - [anon_sym_keyset] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_include_once] = ACTIONS(2003), - [anon_sym_require] = ACTIONS(2003), - [anon_sym_require_once] = ACTIONS(2003), - [anon_sym_list] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_interface] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2005), - [sym_final_modifier] = ACTIONS(2003), - [sym_xhp_modifier] = ACTIONS(2003), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2005), + [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), [sym_comment] = ACTIONS(3), }, - [1711] = { - [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_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = 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_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1712] = { - [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_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = 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_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_LT_LT] = 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), + [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), [sym_comment] = ACTIONS(3), }, - [1713] = { - [ts_builtin_sym_end] = ACTIONS(2403), + [1750] = { [sym_identifier] = ACTIONS(2401), [sym_variable] = ACTIONS(2403), [sym_pipe_variable] = ACTIONS(2403), @@ -191268,11 +196117,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -191317,12 +196172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2401), [anon_sym_PLUS] = ACTIONS(2401), [anon_sym_DASH] = 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_list] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), [anon_sym_BANG] = ACTIONS(2403), [anon_sym_PLUS_PLUS] = ACTIONS(2403), [anon_sym_DASH_DASH] = ACTIONS(2403), @@ -191341,1886 +196191,2145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, - [1714] = { - [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_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = 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_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_LT_LT] = 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), + [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_comment] = ACTIONS(3), }, - [1715] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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_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_comment] = ACTIONS(3), + }, + [1754] = { + [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), + }, + [1755] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2597), - [sym_variable] = ACTIONS(2600), - [anon_sym_shape] = ACTIONS(2603), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_BSLASH] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_function] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_null] = ACTIONS(2629), - [anon_sym_Null] = ACTIONS(2629), - [anon_sym_NULL] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2632), - [anon_sym_QMARK] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2638), - [anon_sym_array] = ACTIONS(2641), - [anon_sym_varray] = ACTIONS(2641), - [anon_sym_darray] = ACTIONS(2641), - [anon_sym_vec] = ACTIONS(2641), - [anon_sym_dict] = ACTIONS(2641), - [anon_sym_keyset] = ACTIONS(2641), - [anon_sym_bool] = ACTIONS(2641), - [anon_sym_float] = ACTIONS(2641), - [anon_sym_int] = ACTIONS(2641), - [anon_sym_num] = ACTIONS(2641), - [anon_sym_string] = ACTIONS(2641), - [anon_sym_arraykey] = ACTIONS(2641), - [anon_sym_void] = ACTIONS(2641), - [anon_sym_nonnull] = ACTIONS(2641), - [anon_sym_mixed] = ACTIONS(2641), - [anon_sym_dynamic] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym_nothing] = ACTIONS(2641), - [anon_sym_resource] = ACTIONS(2641), - [anon_sym_require] = ACTIONS(2644), - [anon_sym_LT_LT] = ACTIONS(2647), - [anon_sym_async] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2653), - [sym_final_modifier] = ACTIONS(2656), - [anon_sym_public] = ACTIONS(2659), - [anon_sym_protected] = ACTIONS(2659), - [anon_sym_private] = ACTIONS(2659), - [sym_xhp_identifier] = ACTIONS(2641), - [sym_xhp_class_identifier] = ACTIONS(2662), - [anon_sym_attribute] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2668), - [anon_sym_category] = ACTIONS(2671), - }, - [1716] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1756] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1727), - [sym_require_extends_clause] = STATE(1727), - [sym_require_implements_clause] = STATE(1727), - [sym_method_declaration] = STATE(1727), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1727), - [sym_context_const_declaration] = STATE(1727), - [sym_property_declaration] = STATE(1727), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1727), - [sym_xhp_children_declaration] = STATE(1727), - [sym_xhp_category_declaration] = STATE(1727), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1727), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1717] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1757] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1724), - [sym_require_extends_clause] = STATE(1724), - [sym_require_implements_clause] = STATE(1724), - [sym_method_declaration] = STATE(1724), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1724), - [sym_context_const_declaration] = STATE(1724), - [sym_property_declaration] = STATE(1724), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1724), - [sym_xhp_children_declaration] = STATE(1724), - [sym_xhp_category_declaration] = STATE(1724), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1724), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1718] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1758] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1728), - [sym_require_extends_clause] = STATE(1728), - [sym_require_implements_clause] = STATE(1728), - [sym_method_declaration] = STATE(1728), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1728), - [sym_context_const_declaration] = STATE(1728), - [sym_property_declaration] = STATE(1728), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1728), - [sym_xhp_children_declaration] = STATE(1728), - [sym_xhp_category_declaration] = STATE(1728), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1728), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1719] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1759] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1721), - [sym_require_extends_clause] = STATE(1721), - [sym_require_implements_clause] = STATE(1721), - [sym_method_declaration] = STATE(1721), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1721), - [sym_context_const_declaration] = STATE(1721), - [sym_property_declaration] = STATE(1721), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1721), - [sym_xhp_children_declaration] = STATE(1721), - [sym_xhp_category_declaration] = STATE(1721), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1721), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1720] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1760] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1721] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1722] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1723), - [sym_require_extends_clause] = STATE(1723), - [sym_require_implements_clause] = STATE(1723), - [sym_method_declaration] = STATE(1723), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1723), - [sym_context_const_declaration] = STATE(1723), - [sym_property_declaration] = STATE(1723), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1723), - [sym_xhp_children_declaration] = STATE(1723), - [sym_xhp_category_declaration] = STATE(1723), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1723), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1723] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [sym__type_constant] = STATE(2653), + [sym__function_declaration_header] = STATE(5040), + [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_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_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_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(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1724] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1725] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1765] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1726] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1766] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1725), - [sym_require_extends_clause] = STATE(1725), - [sym_require_implements_clause] = STATE(1725), - [sym_method_declaration] = STATE(1725), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1725), - [sym_context_const_declaration] = STATE(1725), - [sym_property_declaration] = STATE(1725), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1725), - [sym_xhp_children_declaration] = STATE(1725), - [sym_xhp_category_declaration] = STATE(1725), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1725), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1727] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [sym__type_constant] = STATE(2653), + [sym__function_declaration_header] = STATE(5040), + [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_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_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_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), + [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), + }, + [1767] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1728] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [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), + [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), + }, + [1768] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1715), - [sym_require_extends_clause] = STATE(1715), - [sym_require_implements_clause] = STATE(1715), - [sym_method_declaration] = STATE(1715), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1715), - [sym_context_const_declaration] = STATE(1715), - [sym_property_declaration] = STATE(1715), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1715), - [sym_xhp_children_declaration] = STATE(1715), - [sym_xhp_category_declaration] = STATE(1715), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1715), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1729] = { - [sym_qualified_identifier] = STATE(3495), - [sym_null] = STATE(3497), + [sym__type_constant] = STATE(2653), + [sym__function_declaration_header] = STATE(5040), + [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_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_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_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), + [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_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), + }, + [1769] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3546), [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3401), + [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(2831), - [sym__function_declaration_header] = STATE(4758), - [sym_trait_use_clause] = STATE(1720), - [sym_require_extends_clause] = STATE(1720), - [sym_require_implements_clause] = STATE(1720), - [sym_method_declaration] = STATE(1720), - [sym__class_const_declaration] = STATE(2806), - [sym_type_const_declaration] = STATE(1720), - [sym_context_const_declaration] = STATE(1720), - [sym_property_declaration] = STATE(1720), - [sym_property_declarator] = STATE(4761), - [sym__member_modifier] = STATE(1743), - [sym_abstract_modifier] = STATE(3369), - [sym_static_modifier] = STATE(1743), - [sym_visibility_modifier] = STATE(1743), - [sym_attribute_modifier] = STATE(1747), - [sym_async_modifier] = STATE(5652), - [sym_xhp_attribute_declaration] = STATE(1720), - [sym_xhp_children_declaration] = STATE(1720), - [sym_xhp_category_declaration] = STATE(1720), - [aux_sym_qualified_identifier_repeat1] = STATE(2720), - [aux_sym_type_specifier_repeat1] = STATE(3401), - [aux_sym_member_declarations_repeat1] = STATE(1720), - [aux_sym_method_declaration_repeat1] = STATE(1743), - [sym_identifier] = ACTIONS(2674), - [sym_variable] = ACTIONS(2676), - [anon_sym_shape] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_BSLASH] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2696), - [anon_sym_Null] = ACTIONS(2696), - [anon_sym_NULL] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_array] = ACTIONS(2702), - [anon_sym_varray] = ACTIONS(2702), - [anon_sym_darray] = ACTIONS(2702), - [anon_sym_vec] = ACTIONS(2702), - [anon_sym_dict] = ACTIONS(2702), - [anon_sym_keyset] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_float] = ACTIONS(2702), - [anon_sym_int] = ACTIONS(2702), - [anon_sym_num] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_arraykey] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_nonnull] = ACTIONS(2702), - [anon_sym_mixed] = ACTIONS(2702), - [anon_sym_dynamic] = ACTIONS(2702), - [anon_sym_noreturn] = ACTIONS(2702), - [anon_sym_nothing] = ACTIONS(2702), - [anon_sym_resource] = ACTIONS(2702), - [anon_sym_require] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2710), - [sym_final_modifier] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [sym_xhp_identifier] = ACTIONS(2702), - [sym_xhp_class_identifier] = ACTIONS(2716), - [anon_sym_attribute] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2720), - [anon_sym_category] = ACTIONS(2722), - }, - [1730] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1731), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_COMMA] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_COLON] = ACTIONS(2752), - [anon_sym_EQ_GT] = ACTIONS(2750), - [sym_string] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_RBRACK] = ACTIONS(2750), - [anon_sym_PIPE_GT] = ACTIONS(2750), - [anon_sym_QMARK_QMARK] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_EQ_EQ] = ACTIONS(2752), - [anon_sym_BANG_EQ] = ACTIONS(2752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ_GT] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_PERCENT] = ACTIONS(2752), - [anon_sym_STAR_STAR] = ACTIONS(2752), - [anon_sym_QMARK_COLON] = ACTIONS(2750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2750), - [anon_sym_DOT_EQ] = ACTIONS(2750), - [anon_sym_PIPE_EQ] = ACTIONS(2750), - [anon_sym_CARET_EQ] = ACTIONS(2750), - [anon_sym_AMP_EQ] = ACTIONS(2750), - [anon_sym_LT_LT_EQ] = ACTIONS(2750), - [anon_sym_GT_GT_EQ] = ACTIONS(2750), - [anon_sym_PLUS_EQ] = ACTIONS(2750), - [anon_sym_DASH_EQ] = ACTIONS(2750), - [anon_sym_STAR_EQ] = ACTIONS(2750), - [anon_sym_SLASH_EQ] = ACTIONS(2750), - [anon_sym_PERCENT_EQ] = ACTIONS(2750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_is] = ACTIONS(2750), - [anon_sym_as3] = ACTIONS(2750), - [anon_sym_QMARKas] = ACTIONS(2750), - [anon_sym_QMARK_DASH_GT] = ACTIONS(2750), - [anon_sym_DASH_GT] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_ATrequired] = ACTIONS(2750), - [anon_sym_ATlateinit] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - }, - [1731] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1735), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2758), - [anon_sym_EQ_GT] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_RBRACK] = ACTIONS(2756), - [anon_sym_PIPE_GT] = ACTIONS(2756), - [anon_sym_QMARK_QMARK] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ_GT] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_STAR_STAR] = ACTIONS(2758), - [anon_sym_QMARK_COLON] = ACTIONS(2756), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2756), - [anon_sym_DOT_EQ] = ACTIONS(2756), - [anon_sym_PIPE_EQ] = ACTIONS(2756), - [anon_sym_CARET_EQ] = ACTIONS(2756), - [anon_sym_AMP_EQ] = ACTIONS(2756), - [anon_sym_LT_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_GT_EQ] = ACTIONS(2756), - [anon_sym_PLUS_EQ] = ACTIONS(2756), - [anon_sym_DASH_EQ] = ACTIONS(2756), - [anon_sym_STAR_EQ] = ACTIONS(2756), - [anon_sym_SLASH_EQ] = ACTIONS(2756), - [anon_sym_PERCENT_EQ] = ACTIONS(2756), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_as3] = ACTIONS(2756), - [anon_sym_QMARKas] = ACTIONS(2756), - [anon_sym_QMARK_DASH_GT] = ACTIONS(2756), - [anon_sym_DASH_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_ATrequired] = ACTIONS(2756), - [anon_sym_ATlateinit] = ACTIONS(2756), - [sym_comment] = ACTIONS(3), - }, - [1732] = { - [sym_variable] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_COMMA] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_use] = ACTIONS(2760), - [anon_sym_COLON] = ACTIONS(2760), - [anon_sym_EQ_GT] = ACTIONS(2760), - [anon_sym_QMARK] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_where] = ACTIONS(2760), - [anon_sym_EQ] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_RBRACK] = ACTIONS(2760), - [anon_sym_PIPE_GT] = ACTIONS(2760), - [anon_sym_QMARK_QMARK] = ACTIONS(2762), - [anon_sym_PIPE_PIPE] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_EQ_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2760), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2760), - [anon_sym_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_EQ] = ACTIONS(2760), - [anon_sym_LT_EQ_GT] = ACTIONS(2760), - [anon_sym_LT_LT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(2762), - [anon_sym_DOT] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2762), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_STAR_STAR] = ACTIONS(2762), - [anon_sym_QMARK_COLON] = ACTIONS(2760), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2760), - [anon_sym_DOT_EQ] = ACTIONS(2760), - [anon_sym_PIPE_EQ] = ACTIONS(2760), - [anon_sym_CARET_EQ] = ACTIONS(2760), - [anon_sym_AMP_EQ] = ACTIONS(2760), - [anon_sym_LT_LT_EQ] = ACTIONS(2760), - [anon_sym_GT_GT_EQ] = ACTIONS(2760), - [anon_sym_PLUS_EQ] = ACTIONS(2760), - [anon_sym_DASH_EQ] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2760), - [anon_sym_SLASH_EQ] = ACTIONS(2760), - [anon_sym_PERCENT_EQ] = ACTIONS(2760), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_is] = ACTIONS(2760), - [anon_sym_as3] = ACTIONS(2760), - [anon_sym_QMARKas] = ACTIONS(2760), - [anon_sym_EQ_EQ_GT] = ACTIONS(2760), - [anon_sym_extends] = ACTIONS(2760), - [anon_sym_implements] = ACTIONS(2760), - [anon_sym_ATrequired] = ACTIONS(2760), - [anon_sym_ATlateinit] = ACTIONS(2760), - [sym_comment] = ACTIONS(3), - }, - [1733] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1735), - [anon_sym_BSLASH] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_COMMA] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_COLON] = ACTIONS(2752), - [anon_sym_EQ_GT] = ACTIONS(2750), - [anon_sym_QMARK] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_RBRACK] = ACTIONS(2750), - [anon_sym_PIPE_GT] = ACTIONS(2750), - [anon_sym_QMARK_QMARK] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_EQ_EQ] = ACTIONS(2752), - [anon_sym_BANG_EQ] = ACTIONS(2752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ_GT] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_PERCENT] = ACTIONS(2752), - [anon_sym_STAR_STAR] = ACTIONS(2752), - [anon_sym_QMARK_COLON] = ACTIONS(2750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2750), - [anon_sym_DOT_EQ] = ACTIONS(2750), - [anon_sym_PIPE_EQ] = ACTIONS(2750), - [anon_sym_CARET_EQ] = ACTIONS(2750), - [anon_sym_AMP_EQ] = ACTIONS(2750), - [anon_sym_LT_LT_EQ] = ACTIONS(2750), - [anon_sym_GT_GT_EQ] = ACTIONS(2750), - [anon_sym_PLUS_EQ] = ACTIONS(2750), - [anon_sym_DASH_EQ] = ACTIONS(2750), - [anon_sym_STAR_EQ] = ACTIONS(2750), - [anon_sym_SLASH_EQ] = ACTIONS(2750), - [anon_sym_PERCENT_EQ] = ACTIONS(2750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_is] = ACTIONS(2750), - [anon_sym_as3] = ACTIONS(2750), - [anon_sym_QMARKas] = ACTIONS(2750), - [anon_sym_QMARK_DASH_GT] = ACTIONS(2750), - [anon_sym_DASH_GT] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_ATrequired] = ACTIONS(2750), - [anon_sym_ATlateinit] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - }, - [1734] = { - [sym_variable] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_RPAREN] = ACTIONS(2764), - [anon_sym_use] = ACTIONS(2764), - [anon_sym_COLON] = ACTIONS(2764), - [anon_sym_EQ_GT] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_where] = ACTIONS(2764), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_RBRACK] = ACTIONS(2764), - [anon_sym_PIPE_GT] = ACTIONS(2764), - [anon_sym_QMARK_QMARK] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ_GT] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_STAR_STAR] = ACTIONS(2766), - [anon_sym_QMARK_COLON] = ACTIONS(2764), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2764), - [anon_sym_DOT_EQ] = ACTIONS(2764), - [anon_sym_PIPE_EQ] = ACTIONS(2764), - [anon_sym_CARET_EQ] = ACTIONS(2764), - [anon_sym_AMP_EQ] = ACTIONS(2764), - [anon_sym_LT_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_GT_EQ] = ACTIONS(2764), - [anon_sym_PLUS_EQ] = ACTIONS(2764), - [anon_sym_DASH_EQ] = ACTIONS(2764), - [anon_sym_STAR_EQ] = ACTIONS(2764), - [anon_sym_SLASH_EQ] = ACTIONS(2764), - [anon_sym_PERCENT_EQ] = ACTIONS(2764), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_as3] = ACTIONS(2764), - [anon_sym_QMARKas] = ACTIONS(2764), - [anon_sym_EQ_EQ_GT] = ACTIONS(2764), - [anon_sym_extends] = ACTIONS(2764), - [anon_sym_implements] = ACTIONS(2764), - [anon_sym_ATrequired] = ACTIONS(2764), - [anon_sym_ATlateinit] = ACTIONS(2764), - [sym_comment] = ACTIONS(3), - }, - [1735] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1735), - [anon_sym_BSLASH] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_COMMA] = ACTIONS(2771), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_COLON] = ACTIONS(2773), - [anon_sym_EQ_GT] = ACTIONS(2771), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_GT] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_EQ] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2771), - [anon_sym_RBRACK] = ACTIONS(2771), - [anon_sym_PIPE_GT] = ACTIONS(2771), - [anon_sym_QMARK_QMARK] = ACTIONS(2773), - [anon_sym_PIPE_PIPE] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(2773), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_EQ_EQ] = ACTIONS(2773), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), - [anon_sym_LT_EQ] = ACTIONS(2773), - [anon_sym_GT_EQ] = ACTIONS(2771), - [anon_sym_LT_EQ_GT] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2773), - [anon_sym_GT_GT] = ACTIONS(2773), - [anon_sym_DOT] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_SLASH] = ACTIONS(2773), - [anon_sym_PERCENT] = ACTIONS(2773), - [anon_sym_STAR_STAR] = ACTIONS(2773), - [anon_sym_QMARK_COLON] = ACTIONS(2771), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2771), - [anon_sym_DOT_EQ] = ACTIONS(2771), - [anon_sym_PIPE_EQ] = ACTIONS(2771), - [anon_sym_CARET_EQ] = ACTIONS(2771), - [anon_sym_AMP_EQ] = ACTIONS(2771), - [anon_sym_LT_LT_EQ] = ACTIONS(2771), - [anon_sym_GT_GT_EQ] = ACTIONS(2771), - [anon_sym_PLUS_EQ] = ACTIONS(2771), - [anon_sym_DASH_EQ] = ACTIONS(2771), - [anon_sym_STAR_EQ] = ACTIONS(2771), - [anon_sym_SLASH_EQ] = ACTIONS(2771), - [anon_sym_PERCENT_EQ] = ACTIONS(2771), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_is] = ACTIONS(2771), - [anon_sym_as3] = ACTIONS(2771), - [anon_sym_QMARKas] = ACTIONS(2771), - [anon_sym_QMARK_DASH_GT] = ACTIONS(2771), - [anon_sym_DASH_GT] = ACTIONS(2771), - [anon_sym_POUND] = ACTIONS(2771), - [anon_sym_ATrequired] = ACTIONS(2771), - [anon_sym_ATlateinit] = ACTIONS(2771), - [sym_comment] = ACTIONS(3), - }, - [1736] = { - [sym_variable] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_RPAREN] = ACTIONS(2775), - [anon_sym_use] = ACTIONS(2775), - [anon_sym_COLON] = ACTIONS(2775), - [anon_sym_EQ_GT] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(2777), - [anon_sym_GT] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_where] = ACTIONS(2775), - [anon_sym_EQ] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2775), - [anon_sym_RBRACK] = ACTIONS(2775), - [anon_sym_PIPE_GT] = ACTIONS(2775), - [anon_sym_QMARK_QMARK] = ACTIONS(2777), - [anon_sym_PIPE_PIPE] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2777), - [anon_sym_CARET] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_EQ_EQ] = ACTIONS(2777), - [anon_sym_BANG_EQ] = ACTIONS(2777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ] = ACTIONS(2777), - [anon_sym_GT_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ_GT] = ACTIONS(2775), - [anon_sym_LT_LT] = ACTIONS(2777), - [anon_sym_GT_GT] = ACTIONS(2777), - [anon_sym_DOT] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_SLASH] = ACTIONS(2777), - [anon_sym_PERCENT] = ACTIONS(2777), - [anon_sym_STAR_STAR] = ACTIONS(2777), - [anon_sym_QMARK_COLON] = ACTIONS(2775), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2775), - [anon_sym_DOT_EQ] = ACTIONS(2775), - [anon_sym_PIPE_EQ] = ACTIONS(2775), - [anon_sym_CARET_EQ] = ACTIONS(2775), - [anon_sym_AMP_EQ] = ACTIONS(2775), - [anon_sym_LT_LT_EQ] = ACTIONS(2775), - [anon_sym_GT_GT_EQ] = ACTIONS(2775), - [anon_sym_PLUS_EQ] = ACTIONS(2775), - [anon_sym_DASH_EQ] = ACTIONS(2775), - [anon_sym_STAR_EQ] = ACTIONS(2775), - [anon_sym_SLASH_EQ] = ACTIONS(2775), - [anon_sym_PERCENT_EQ] = ACTIONS(2775), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_as3] = ACTIONS(2775), - [anon_sym_QMARKas] = ACTIONS(2775), - [anon_sym_EQ_EQ_GT] = ACTIONS(2775), - [anon_sym_extends] = ACTIONS(2775), - [anon_sym_implements] = ACTIONS(2775), - [anon_sym_ATrequired] = ACTIONS(2775), - [anon_sym_ATlateinit] = ACTIONS(2775), - [sym_comment] = ACTIONS(3), - }, - [1737] = { - [sym_variable] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_use] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_EQ_GT] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_where] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_RBRACK] = ACTIONS(2779), - [anon_sym_PIPE_GT] = ACTIONS(2779), - [anon_sym_QMARK_QMARK] = ACTIONS(2781), - [anon_sym_PIPE_PIPE] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_EQ_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2781), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ_GT] = ACTIONS(2779), - [anon_sym_LT_LT] = ACTIONS(2781), - [anon_sym_GT_GT] = ACTIONS(2781), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_STAR_STAR] = ACTIONS(2781), - [anon_sym_QMARK_COLON] = ACTIONS(2779), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2779), - [anon_sym_DOT_EQ] = ACTIONS(2779), - [anon_sym_PIPE_EQ] = ACTIONS(2779), - [anon_sym_CARET_EQ] = ACTIONS(2779), - [anon_sym_AMP_EQ] = ACTIONS(2779), - [anon_sym_LT_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_GT_EQ] = ACTIONS(2779), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_as3] = ACTIONS(2779), - [anon_sym_QMARKas] = ACTIONS(2779), - [anon_sym_EQ_EQ_GT] = ACTIONS(2779), - [anon_sym_extends] = ACTIONS(2779), - [anon_sym_implements] = ACTIONS(2779), - [anon_sym_ATrequired] = ACTIONS(2779), - [anon_sym_ATlateinit] = ACTIONS(2779), + [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(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_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), + }, + [1770] = { + [aux_sym_qualified_identifier_repeat1] = STATE(1772), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_LT_LT] = ACTIONS(2808), + [anon_sym_COLON] = ACTIONS(2808), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2808), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_EQ_GT] = ACTIONS(2806), + [sym_string] = ACTIONS(2810), + [aux_sym_expression_tree_token1] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2808), + [anon_sym_GT] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_EQ] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_RBRACK] = ACTIONS(2806), + [anon_sym_PIPE_GT] = ACTIONS(2806), + [anon_sym_QMARK_QMARK] = ACTIONS(2808), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2808), + [anon_sym_CARET] = ACTIONS(2808), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_EQ_EQ] = ACTIONS(2808), + [anon_sym_BANG_EQ] = ACTIONS(2808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ] = ACTIONS(2808), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ_GT] = ACTIONS(2806), + [anon_sym_DOT] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2808), + [anon_sym_SLASH] = ACTIONS(2808), + [anon_sym_PERCENT] = ACTIONS(2808), + [anon_sym_STAR_STAR] = ACTIONS(2808), + [anon_sym_QMARK_COLON] = ACTIONS(2806), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2806), + [anon_sym_DOT_EQ] = ACTIONS(2806), + [anon_sym_PIPE_EQ] = ACTIONS(2806), + [anon_sym_CARET_EQ] = ACTIONS(2806), + [anon_sym_AMP_EQ] = ACTIONS(2806), + [anon_sym_LT_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_GT_EQ] = ACTIONS(2806), + [anon_sym_PLUS_EQ] = ACTIONS(2806), + [anon_sym_DASH_EQ] = ACTIONS(2806), + [anon_sym_STAR_EQ] = ACTIONS(2806), + [anon_sym_SLASH_EQ] = ACTIONS(2806), + [anon_sym_PERCENT_EQ] = ACTIONS(2806), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_as3] = ACTIONS(2806), + [anon_sym_QMARKas] = ACTIONS(2806), + [anon_sym_QMARK_DASH_GT] = ACTIONS(2806), + [anon_sym_DASH_GT] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_ATrequired] = ACTIONS(2806), + [anon_sym_ATlateinit] = ACTIONS(2806), + [sym_comment] = ACTIONS(3), + }, + [1771] = { + [sym_variable] = ACTIONS(2814), + [anon_sym_LT_LT] = ACTIONS(2816), + [anon_sym_COLON] = ACTIONS(2814), + [anon_sym_COMMA] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2816), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_use] = ACTIONS(2814), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_QMARK] = ACTIONS(2816), + [anon_sym_LT] = ACTIONS(2816), + [anon_sym_GT] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_where] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_PIPE_GT] = ACTIONS(2814), + [anon_sym_QMARK_QMARK] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2816), + [anon_sym_CARET] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_EQ_EQ] = ACTIONS(2816), + [anon_sym_BANG_EQ] = ACTIONS(2816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2814), + [anon_sym_LT_EQ] = ACTIONS(2816), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_LT_EQ_GT] = ACTIONS(2814), + [anon_sym_DOT] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_PERCENT] = ACTIONS(2816), + [anon_sym_STAR_STAR] = ACTIONS(2816), + [anon_sym_QMARK_COLON] = ACTIONS(2814), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2814), + [anon_sym_DOT_EQ] = ACTIONS(2814), + [anon_sym_PIPE_EQ] = ACTIONS(2814), + [anon_sym_CARET_EQ] = ACTIONS(2814), + [anon_sym_AMP_EQ] = ACTIONS(2814), + [anon_sym_LT_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_GT_EQ] = ACTIONS(2814), + [anon_sym_PLUS_EQ] = ACTIONS(2814), + [anon_sym_DASH_EQ] = ACTIONS(2814), + [anon_sym_STAR_EQ] = ACTIONS(2814), + [anon_sym_SLASH_EQ] = ACTIONS(2814), + [anon_sym_PERCENT_EQ] = ACTIONS(2814), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_is] = ACTIONS(2814), + [anon_sym_as3] = ACTIONS(2814), + [anon_sym_QMARKas] = ACTIONS(2814), + [anon_sym_EQ_EQ_GT] = ACTIONS(2814), + [anon_sym_extends] = ACTIONS(2814), + [anon_sym_implements] = ACTIONS(2814), + [anon_sym_ATrequired] = ACTIONS(2814), + [anon_sym_ATlateinit] = ACTIONS(2814), + [sym_comment] = ACTIONS(3), + }, + [1772] = { + [aux_sym_qualified_identifier_repeat1] = STATE(1776), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_COLON] = ACTIONS(2820), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_RPAREN] = 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_EQ] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_RBRACK] = ACTIONS(2818), + [anon_sym_PIPE_GT] = ACTIONS(2818), + [anon_sym_QMARK_QMARK] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_CARET] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2820), + [anon_sym_BANG_EQ] = ACTIONS(2820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ_GT] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_PERCENT] = ACTIONS(2820), + [anon_sym_STAR_STAR] = ACTIONS(2820), + [anon_sym_QMARK_COLON] = ACTIONS(2818), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2818), + [anon_sym_DOT_EQ] = ACTIONS(2818), + [anon_sym_PIPE_EQ] = ACTIONS(2818), + [anon_sym_CARET_EQ] = ACTIONS(2818), + [anon_sym_AMP_EQ] = ACTIONS(2818), + [anon_sym_LT_LT_EQ] = ACTIONS(2818), + [anon_sym_GT_GT_EQ] = ACTIONS(2818), + [anon_sym_PLUS_EQ] = ACTIONS(2818), + [anon_sym_DASH_EQ] = ACTIONS(2818), + [anon_sym_STAR_EQ] = ACTIONS(2818), + [anon_sym_SLASH_EQ] = ACTIONS(2818), + [anon_sym_PERCENT_EQ] = ACTIONS(2818), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [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_ATrequired] = ACTIONS(2818), + [anon_sym_ATlateinit] = ACTIONS(2818), + [sym_comment] = ACTIONS(3), + }, + [1773] = { + [sym_variable] = ACTIONS(2822), + [anon_sym_LT_LT] = ACTIONS(2824), + [anon_sym_COLON] = ACTIONS(2822), + [anon_sym_COMMA] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_use] = ACTIONS(2822), + [anon_sym_EQ_GT] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_GT] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_where] = ACTIONS(2822), + [anon_sym_EQ] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_RBRACK] = ACTIONS(2822), + [anon_sym_PIPE_GT] = ACTIONS(2822), + [anon_sym_QMARK_QMARK] = ACTIONS(2824), + [anon_sym_PIPE_PIPE] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_CARET] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_EQ_EQ] = ACTIONS(2824), + [anon_sym_BANG_EQ] = ACTIONS(2824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2824), + [anon_sym_GT_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ_GT] = ACTIONS(2822), + [anon_sym_DOT] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_PERCENT] = ACTIONS(2824), + [anon_sym_STAR_STAR] = ACTIONS(2824), + [anon_sym_QMARK_COLON] = ACTIONS(2822), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2822), + [anon_sym_DOT_EQ] = ACTIONS(2822), + [anon_sym_PIPE_EQ] = ACTIONS(2822), + [anon_sym_CARET_EQ] = ACTIONS(2822), + [anon_sym_AMP_EQ] = ACTIONS(2822), + [anon_sym_LT_LT_EQ] = ACTIONS(2822), + [anon_sym_GT_GT_EQ] = ACTIONS(2822), + [anon_sym_PLUS_EQ] = ACTIONS(2822), + [anon_sym_DASH_EQ] = ACTIONS(2822), + [anon_sym_STAR_EQ] = ACTIONS(2822), + [anon_sym_SLASH_EQ] = ACTIONS(2822), + [anon_sym_PERCENT_EQ] = ACTIONS(2822), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_is] = ACTIONS(2822), + [anon_sym_as3] = ACTIONS(2822), + [anon_sym_QMARKas] = ACTIONS(2822), + [anon_sym_EQ_EQ_GT] = ACTIONS(2822), + [anon_sym_extends] = ACTIONS(2822), + [anon_sym_implements] = ACTIONS(2822), + [anon_sym_ATrequired] = ACTIONS(2822), + [anon_sym_ATlateinit] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + }, + [1774] = { + [sym_variable] = ACTIONS(2826), + [anon_sym_LT_LT] = ACTIONS(2828), + [anon_sym_COLON] = ACTIONS(2826), + [anon_sym_COMMA] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [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), + [anon_sym_PIPE_GT] = ACTIONS(2826), + [anon_sym_QMARK_QMARK] = ACTIONS(2828), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_CARET] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_EQ_EQ] = ACTIONS(2828), + [anon_sym_BANG_EQ] = ACTIONS(2828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(2828), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_LT_EQ_GT] = ACTIONS(2826), + [anon_sym_DOT] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_STAR_STAR] = ACTIONS(2828), + [anon_sym_QMARK_COLON] = ACTIONS(2826), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2826), + [anon_sym_DOT_EQ] = ACTIONS(2826), + [anon_sym_PIPE_EQ] = ACTIONS(2826), + [anon_sym_CARET_EQ] = ACTIONS(2826), + [anon_sym_AMP_EQ] = ACTIONS(2826), + [anon_sym_LT_LT_EQ] = ACTIONS(2826), + [anon_sym_GT_GT_EQ] = ACTIONS(2826), + [anon_sym_PLUS_EQ] = ACTIONS(2826), + [anon_sym_DASH_EQ] = ACTIONS(2826), + [anon_sym_STAR_EQ] = ACTIONS(2826), + [anon_sym_SLASH_EQ] = ACTIONS(2826), + [anon_sym_PERCENT_EQ] = ACTIONS(2826), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [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_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), + [anon_sym_LT_LT] = ACTIONS(2808), + [anon_sym_COLON] = ACTIONS(2808), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2808), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_EQ_GT] = ACTIONS(2806), + [anon_sym_QMARK] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2808), + [anon_sym_GT] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_EQ] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_RBRACK] = ACTIONS(2806), + [anon_sym_PIPE_GT] = ACTIONS(2806), + [anon_sym_QMARK_QMARK] = ACTIONS(2808), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2808), + [anon_sym_CARET] = ACTIONS(2808), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_EQ_EQ] = ACTIONS(2808), + [anon_sym_BANG_EQ] = ACTIONS(2808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ] = ACTIONS(2808), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ_GT] = ACTIONS(2806), + [anon_sym_DOT] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2808), + [anon_sym_SLASH] = ACTIONS(2808), + [anon_sym_PERCENT] = ACTIONS(2808), + [anon_sym_STAR_STAR] = ACTIONS(2808), + [anon_sym_QMARK_COLON] = ACTIONS(2806), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2806), + [anon_sym_DOT_EQ] = ACTIONS(2806), + [anon_sym_PIPE_EQ] = ACTIONS(2806), + [anon_sym_CARET_EQ] = ACTIONS(2806), + [anon_sym_AMP_EQ] = ACTIONS(2806), + [anon_sym_LT_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_GT_EQ] = ACTIONS(2806), + [anon_sym_PLUS_EQ] = ACTIONS(2806), + [anon_sym_DASH_EQ] = ACTIONS(2806), + [anon_sym_STAR_EQ] = ACTIONS(2806), + [anon_sym_SLASH_EQ] = ACTIONS(2806), + [anon_sym_PERCENT_EQ] = ACTIONS(2806), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_as3] = ACTIONS(2806), + [anon_sym_QMARKas] = ACTIONS(2806), + [anon_sym_QMARK_DASH_GT] = ACTIONS(2806), + [anon_sym_DASH_GT] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_ATrequired] = ACTIONS(2806), + [anon_sym_ATlateinit] = ACTIONS(2806), [sym_comment] = ACTIONS(3), }, }; @@ -193229,8 +198338,10 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 21, + ACTIONS(2839), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -193244,20 +198355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2771), 42, + ACTIONS(2837), 42, anon_sym_BSLASH, anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -193297,16 +198406,381 @@ static const uint16_t ts_small_parse_table[] = { [71] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2789), 21, + 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, + [150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + STATE(1772), 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_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, + [224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 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(2047), 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, + [294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 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(2051), 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, + [364] = 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(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, + ACTIONS(3), 1, + sym_comment, + STATE(1814), 1, + sym_arguments, + STATE(5012), 1, + sym_type_arguments, + ACTIONS(945), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -193320,17 +198794,163 @@ 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(947), 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, + [560] = 6, + 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, 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(2785), 38, + ACTIONS(2859), 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, + [635] = 11, + 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, + 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, @@ -193362,15 +198982,113 @@ 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, - [150] = 3, + [720] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 21, - anon_sym_else, + 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, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -193384,27 +199102,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2001), 41, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2806), 36, + anon_sym_COLON_COLON, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_elseif, - anon_sym_COLON, + anon_sym_as2, 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, @@ -193428,22 +199139,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_ATrequired, - anon_sym_ATlateinit, - [220] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - STATE(1731), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, + ACTIONS(2855), 1, + anon_sym_COLON_COLON, + ACTIONS(2888), 1, + anon_sym_LT, + STATE(1867), 1, + sym_type_arguments, + ACTIONS(2886), 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, @@ -193455,18 +199170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2750), 39, - anon_sym_COLON_COLON, + ACTIONS(2868), 38, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -193502,13 +199214,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [294] = 3, + [995] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 21, - anon_sym_else, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -193520,25 +199246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2005), 41, + ACTIONS(2870), 34, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_elseif, - anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -193567,81 +199286,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [364] = 30, + [1076] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2676), 1, + ACTIONS(2655), 1, sym_variable, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2684), 1, + ACTIONS(2665), 1, anon_sym_static, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2692), 1, + ACTIONS(2675), 1, anon_sym_function, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2708), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2710), 1, + ACTIONS(2689), 1, anon_sym_abstract, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(2793), 1, + ACTIONS(2891), 1, anon_sym_const, - ACTIONS(2795), 1, + ACTIONS(2893), 1, sym_final_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(4961), 1, - sym_property_declarator, - STATE(4962), 1, + STATE(4516), 1, sym__function_declaration_header, - STATE(5652), 1, + STATE(4518), 1, + sym_property_declarator, + STATE(5957), 1, sym_async_modifier, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(2714), 3, + ACTIONS(2693), 3, anon_sym_public, anon_sym_protected, anon_sym_private, - STATE(2877), 5, + STATE(1783), 5, sym__member_modifier, sym_abstract_modifier, sym_static_modifier, sym_visibility_modifier, aux_sym_method_declaration_repeat1, - STATE(5468), 5, + STATE(5305), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -193662,25 +199379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [487] = 9, + [1199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, @@ -193692,17 +199403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 34, + ACTIONS(2845), 38, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -193734,18 +199443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [568] = 6, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_COLON_COLON, - ACTIONS(2812), 1, - anon_sym_LT, + ACTIONS(33), 1, + anon_sym_BSLASH, STATE(1772), 1, - sym_type_arguments, - ACTIONS(2810), 20, - anon_sym_COLON, + aux_sym_qualified_identifier_repeat1, + ACTIONS(945), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -193757,17 +199470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2808), 38, + ACTIONS(947), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -193803,15 +199515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [643] = 5, + [1345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2789), 21, - anon_sym_COLON, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -193825,22 +199542,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2785), 38, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2806), 37, + sym_variable, + anon_sym_COLON_COLON, anon_sym_COMMA, + 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, @@ -193869,123 +199584,30 @@ 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, - [716] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2676), 1, - sym_variable, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2684), 1, - anon_sym_static, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - anon_sym_function, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2708), 1, - anon_sym_async, - ACTIONS(2710), 1, - anon_sym_abstract, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(2817), 1, - anon_sym_const, - ACTIONS(2819), 1, - sym_final_modifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(4960), 1, - sym__function_declaration_header, - STATE(4961), 1, - sym_property_declarator, - STATE(5652), 1, - sym_async_modifier, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(2714), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(1750), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - STATE(5468), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 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, - [839] = 11, + anon_sym_POUND, + [1422] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2821), 1, - anon_sym_COLON_COLON, - ACTIONS(2823), 1, + ACTIONS(2875), 1, anon_sym_GT, - STATE(2078), 1, + ACTIONS(2897), 1, + anon_sym_COLON_COLON, + ACTIONS(2899), 1, + anon_sym_COMMA, + STATE(1899), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_COLON, + ACTIONS(2866), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, @@ -193997,14 +199619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, + ACTIONS(2870), 33, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -194038,18 +199658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [924] = 6, + [1506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_COLON_COLON, - ACTIONS(2830), 1, - anon_sym_LT, - STATE(1798), 1, - sym_type_arguments, - ACTIONS(2828), 20, + ACTIONS(2902), 1, + anon_sym_BSLASH, + STATE(1796), 1, + aux_sym_qualified_identifier_repeat1, + 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, @@ -194061,17 +199682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 38, + ACTIONS(2837), 37, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -194103,111 +199723,17 @@ 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, - [999] = 30, + [1578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2676), 1, - sym_variable, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2684), 1, - anon_sym_static, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - anon_sym_function, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2708), 1, - anon_sym_async, - ACTIONS(2710), 1, - anon_sym_abstract, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(2795), 1, - sym_final_modifier, - ACTIONS(2833), 1, - anon_sym_const, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(5051), 1, - sym__function_declaration_header, - STATE(5052), 1, - sym_property_declarator, - STATE(5652), 1, - sym_async_modifier, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(2714), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(2877), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - STATE(5291), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 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, - [1122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - STATE(1731), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(935), 20, + ACTIONS(2855), 1, + anon_sym_COLON_COLON, + ACTIONS(2905), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194221,20 +199747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(931), 39, + ACTIONS(2907), 38, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -194268,16 +199791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1195] = 5, + [1648] = 5, ACTIONS(3), 1, sym_comment, - STATE(1795), 1, - sym_arguments, - STATE(4437), 1, + ACTIONS(2861), 1, + anon_sym_LT, + STATE(1839), 1, sym_type_arguments, - ACTIONS(935), 20, + ACTIONS(2857), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -194289,20 +199813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(931), 39, + ACTIONS(2859), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -194336,28 +199858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1268] = 11, + [1720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2835), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1991), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 18, + 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, @@ -194368,14 +199880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, + ACTIONS(2845), 38, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -194409,16 +199920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [1352] = 6, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - ACTIONS(2840), 1, - sym_string, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2843), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194432,22 +199945,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2750), 36, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2845), 39, + 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, @@ -194471,19 +199983,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_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [1426] = 4, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2789), 21, + ACTIONS(2911), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194497,17 +200010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2785), 38, + ACTIONS(2909), 39, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -194543,10 +200055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1496] = 3, + [1928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 20, + ACTIONS(2913), 1, + anon_sym_BSLASH, + STATE(1808), 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, @@ -194560,21 +200079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 40, + ACTIONS(2806), 37, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -194604,15 +200120,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, - [1564] = 3, + [2000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 21, - anon_sym_COLON, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194626,18 +200141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2842), 39, - anon_sym_COLON_COLON, + ACTIONS(2651), 40, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -194673,15 +200187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1632] = 5, + [2068] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(1123), 1, + anon_sym_BSLASH, + ACTIONS(2810), 1, + sym_string, ACTIONS(2812), 1, - anon_sym_LT, - STATE(1772), 1, - sym_type_arguments, - ACTIONS(2810), 19, + 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, @@ -194693,20 +200214,81 @@ 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, + anon_sym_as3, + ACTIONS(2806), 35, + 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, + 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, 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(2808), 39, + ACTIONS(2917), 38, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -194740,15 +200322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1704] = 5, + [2214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(2913), 1, anon_sym_BSLASH, - STATE(1759), 1, + STATE(1796), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2773), 21, + ACTIONS(2808), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194762,18 +200346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2771), 37, + ACTIONS(2806), 37, anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -194807,13 +200389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [1776] = 4, + [2286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_COLON_COLON, - ACTIONS(2851), 21, + ACTIONS(2921), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194827,17 +200409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2849), 38, + ACTIONS(2919), 39, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -194873,11 +200454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1846] = 3, + [2354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 21, + ACTIONS(2913), 1, + anon_sym_BSLASH, + STATE(1796), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2820), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -194891,18 +200478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2853), 39, + ACTIONS(2818), 37, anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -194934,18 +200519,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, - [1914] = 5, + [2426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2888), 1, anon_sym_LT, - STATE(1798), 1, + STATE(1867), 1, sym_type_arguments, - ACTIONS(2828), 19, + ACTIONS(2886), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -194958,20 +200543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 39, + ACTIONS(2868), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195005,15 +200588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1986] = 5, + [2498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(977), 1, anon_sym_BSLASH, - STATE(1766), 1, + STATE(1833), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, - anon_sym_COLON, + ACTIONS(2820), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195027,23 +200611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2750), 37, + ACTIONS(2818), 37, + sym_variable, anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COMMA, + 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, @@ -195070,17 +200651,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2058] = 4, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [2569] = 11, ACTIONS(3), 1, sym_comment, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2789), 20, - anon_sym_QMARK, + 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(2923), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -195091,23 +200688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2785), 39, - anon_sym_RBRACE, + ACTIONS(2870), 32, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -195134,20 +200724,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, - [2128] = 6, + [2652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, - anon_sym_BSLASH, - ACTIONS(2754), 1, - sym_string, - STATE(1785), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 20, + ACTIONS(2925), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195161,22 +200745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2750), 37, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2927), 39, + anon_sym_COLON, anon_sym_COMMA, + 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, @@ -195205,16 +200788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [2202] = 5, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [2719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym_BSLASH, - STATE(1759), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2758), 21, - anon_sym_COLON, + ACTIONS(2929), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195228,18 +200809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2756), 37, - anon_sym_COLON_COLON, + ACTIONS(2931), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -195271,15 +200850,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, - [2274] = 4, + [2786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_COLON_COLON, - ACTIONS(2861), 21, - anon_sym_COLON, + ACTIONS(2933), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195293,17 +200873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 38, + ACTIONS(2935), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -195339,18 +200918,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2344] = 5, + [2853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym_BSLASH, - STATE(1759), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, + 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_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -195361,18 +200949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2750), 37, - anon_sym_COLON_COLON, + ACTIONS(2870), 33, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -195404,12 +200988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2416] = 3, + [2932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 20, + ACTIONS(2940), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195423,20 +201007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2863), 39, + ACTIONS(2942), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195470,18 +201052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2483] = 6, + [2999] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2869), 1, - anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_GT, - ACTIONS(2872), 19, - anon_sym_QMARK, + 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, @@ -195492,21 +201083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2867), 37, - anon_sym_RBRACE, + ACTIONS(2870), 33, + anon_sym_COMMA, 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, @@ -195533,14 +201120,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, - [2556] = 3, + [3078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 20, + ACTIONS(2843), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195554,20 +201141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2877), 39, + ACTIONS(2845), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195601,10 +201186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2623] = 3, + [3145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 20, + ACTIONS(945), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195618,20 +201205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 39, + ACTIONS(947), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195665,10 +201250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2690] = 3, + [3212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 20, + ACTIONS(2944), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195682,20 +201269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2881), 39, + ACTIONS(2946), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -195729,10 +201314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2757] = 3, + [3279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 20, + ACTIONS(977), 1, + anon_sym_BSLASH, + STATE(1833), 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, @@ -195746,23 +201337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2885), 39, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2806), 37, + sym_variable, + anon_sym_COLON_COLON, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - 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, @@ -195791,18 +201379,13 @@ 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, - [2824] = 6, + anon_sym_POUND, + [3350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - ACTIONS(2754), 1, - sym_string, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, + ACTIONS(2948), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195816,21 +201399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2750), 35, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2950), 39, + 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, @@ -195854,17 +201437,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [2897] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [3417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 21, - anon_sym_COLON, + ACTIONS(2952), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195878,19 +201463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2771), 38, - anon_sym_BSLASH, - anon_sym_COLON_COLON, + ACTIONS(2954), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -195922,16 +201504,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, - [2964] = 5, + [3484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - STATE(1791), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2758), 21, + ACTIONS(2956), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -195945,22 +201527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2756), 36, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2958), 39, + 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, @@ -195984,20 +201565,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [3035] = 5, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [3551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - STATE(1791), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, + ACTIONS(2960), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196011,22 +201591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2750), 36, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2962), 39, + 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, @@ -196050,16 +201629,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [3106] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [3618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196073,20 +201663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2889), 39, + ACTIONS(2870), 34, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196116,14 +201703,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, - [3173] = 3, + [3691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 20, + ACTIONS(2964), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196137,20 +201722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2893), 39, + ACTIONS(2966), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196184,14 +201767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3240] = 5, + [3758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, - anon_sym_BSLASH, - STATE(1807), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 20, + ACTIONS(945), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196205,22 +201786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2750), 37, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(947), 39, + anon_sym_COLON, anon_sym_COMMA, + 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, @@ -196249,26 +201829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [3311] = 9, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [3825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2897), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_COLON, + 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, anon_sym_EQ, @@ -196279,14 +201850,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, + ACTIONS(2822), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -196320,28 +201891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [3390] = 11, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [3892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2968), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(2823), 1, anon_sym_GT, - ACTIONS(2835), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1991), 1, - sym_type_arguments, - ACTIONS(2900), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 18, - anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -196352,18 +201914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 32, + ACTIONS(2970), 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, @@ -196390,12 +201955,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, - [3473] = 3, + [3959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 20, + ACTIONS(2972), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196409,20 +201978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2902), 39, + ACTIONS(2974), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196456,14 +202023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3540] = 5, + [4026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, - anon_sym_BSLASH, - STATE(1807), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2758), 20, + ACTIONS(2976), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196477,22 +202042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2756), 37, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2978), 39, + anon_sym_COLON, anon_sym_COMMA, + 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, @@ -196521,11 +202085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [3611] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [4093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 20, + ACTIONS(2980), 1, + anon_sym_BSLASH, + STATE(1833), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2839), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196539,23 +202110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2906), 39, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2837), 37, + sym_variable, + anon_sym_COLON_COLON, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - 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, @@ -196584,12 +202152,13 @@ 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, - [3678] = 3, + anon_sym_POUND, + [4164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 20, + ACTIONS(2983), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196603,20 +202172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2910), 39, + ACTIONS(2985), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196650,10 +202217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3745] = 3, + [4231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 20, + ACTIONS(2987), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196667,20 +202236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2914), 39, + ACTIONS(2989), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196714,10 +202281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3812] = 3, + [4298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 20, + ACTIONS(2991), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196731,20 +202300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2918), 39, + ACTIONS(2993), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196778,10 +202345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3879] = 3, + [4365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 20, + ACTIONS(2995), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196795,20 +202364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2922), 39, + ACTIONS(2997), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196842,14 +202409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3946] = 5, + [4432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, - anon_sym_BSLASH, - STATE(1791), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2773), 21, + ACTIONS(2839), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196863,22 +202429,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2771), 36, + ACTIONS(2837), 38, + anon_sym_BSLASH, anon_sym_COLON_COLON, - anon_sym_LBRACE, 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, @@ -196902,16 +202468,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, - [4017] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [4499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 20, + ACTIONS(2999), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -196925,20 +202492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2929), 39, + ACTIONS(3001), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -196972,10 +202537,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4084] = 3, + [4566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 20, + 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, @@ -196989,23 +202560,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2933), 39, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2818), 36, + anon_sym_COLON_COLON, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -197029,17 +202597,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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [4151] = 3, + anon_sym_POUND, + [4637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 20, + 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, @@ -197053,23 +202626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2937), 39, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2806), 36, + anon_sym_COLON_COLON, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -197093,17 +202663,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_ATrequired, - anon_sym_ATlateinit, - [4218] = 3, + anon_sym_POUND, + [4708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 20, + ACTIONS(2843), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197117,20 +202688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2941), 39, + ACTIONS(2845), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197164,10 +202733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4285] = 3, + [4775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 20, + ACTIONS(3003), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197181,20 +202752,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2945), 39, + ACTIONS(3005), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197228,10 +202797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4352] = 3, + [4842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 20, + ACTIONS(2832), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197245,20 +202816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2949), 39, + ACTIONS(2830), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197292,12 +202861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4419] = 3, + [4909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 20, - anon_sym_QMARK, + ACTIONS(3007), 1, + anon_sym_COLON_COLON, + ACTIONS(3009), 1, anon_sym_LT, + STATE(1946), 1, + sym_type_arguments, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -197309,20 +202886,79 @@ 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(2859), 36, + 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, + [4982] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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(2953), 39, + ACTIONS(2826), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197356,10 +202992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4486] = 3, + [5049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 20, + ACTIONS(3012), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197373,20 +203011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2957), 39, + ACTIONS(3014), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197420,10 +203056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4553] = 3, + [5116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 20, + ACTIONS(3016), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197437,20 +203075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2961), 39, + ACTIONS(3018), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197484,10 +203120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4620] = 3, + [5183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 20, + ACTIONS(3020), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197501,20 +203139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2965), 39, + ACTIONS(3022), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197548,10 +203184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4687] = 3, + [5250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 20, + ACTIONS(3024), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197565,20 +203203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2969), 39, + ACTIONS(3026), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197612,10 +203248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4754] = 3, + [5317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 20, + ACTIONS(3028), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197629,20 +203267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2973), 39, + ACTIONS(3030), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197676,13 +203312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4821] = 3, + [5384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 20, + ACTIONS(2909), 1, + anon_sym_COLON_COLON, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3035), 1, + anon_sym_GT, + ACTIONS(2968), 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, @@ -197693,20 +203336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2977), 39, + ACTIONS(2970), 37, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197740,10 +203379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4888] = 3, + [5457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 20, + ACTIONS(945), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197757,20 +203398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2760), 39, + ACTIONS(947), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -197804,24 +203443,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4955] = 9, + [5524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2816), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2900), 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_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(2814), 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, - ACTIONS(2799), 19, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [5591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -197833,19 +203526,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, - anon_sym_SEMI, + ACTIONS(3040), 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, @@ -197872,16 +203567,20 @@ 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, - [5034] = 5, + [5658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, + ACTIONS(3042), 1, anon_sym_BSLASH, - STATE(1807), 1, + STATE(1856), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2773), 20, + ACTIONS(2839), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197895,21 +203594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2771), 37, - sym_variable, + anon_sym_as3, + ACTIONS(2837), 36, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LBRACE, 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, @@ -197934,16 +203631,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, - [5105] = 3, + [5729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 20, + ACTIONS(3045), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -197957,20 +203656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2984), 39, + ACTIONS(3047), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198004,10 +203701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5172] = 3, + [5796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 20, + ACTIONS(3049), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198021,20 +203720,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2988), 39, + ACTIONS(3051), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198068,10 +203765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5239] = 3, + [5863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 20, + ACTIONS(3053), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198085,20 +203784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2992), 39, + ACTIONS(3055), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198132,10 +203829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5306] = 3, + [5930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 20, + ACTIONS(3057), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198149,20 +203848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2996), 39, + ACTIONS(3059), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198196,10 +203893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5373] = 3, + [5997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 20, + ACTIONS(3061), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198213,20 +203912,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2785), 39, + ACTIONS(3063), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198260,10 +203957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5440] = 3, + [6064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 20, + ACTIONS(3065), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198277,20 +203976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(931), 39, + ACTIONS(3067), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198324,10 +204021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5507] = 3, + [6131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 20, + ACTIONS(3069), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198341,20 +204040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2764), 39, + ACTIONS(3071), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198388,12 +204085,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5574] = 3, + [6198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 20, - anon_sym_QMARK, + ACTIONS(3007), 1, + anon_sym_COLON_COLON, + ACTIONS(3073), 1, anon_sym_LT, + STATE(1986), 1, + sym_type_arguments, + ACTIONS(2886), 20, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198405,20 +204110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2785), 39, + ACTIONS(2868), 36, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198448,14 +204150,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, - [5641] = 3, + [6271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 20, + ACTIONS(945), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198469,20 +204171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3000), 39, + ACTIONS(947), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198516,18 +204216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5708] = 6, + [6338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_COLON_COLON, - ACTIONS(3006), 1, - anon_sym_LT, - STATE(1916), 1, - sym_type_arguments, - ACTIONS(2828), 20, - anon_sym_COLON, + ACTIONS(3076), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198539,17 +204235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 36, + ACTIONS(3078), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -198581,12 +204276,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, - [5781] = 3, + [6405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 20, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198600,20 +204299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3009), 39, + ACTIONS(2859), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198647,10 +204344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5848] = 3, + [6472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 20, + ACTIONS(3080), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198664,20 +204363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3013), 39, + ACTIONS(3082), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198711,10 +204408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5915] = 3, + [6539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 20, + ACTIONS(3084), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198728,20 +204427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3017), 39, + ACTIONS(3086), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198775,10 +204472,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5982] = 3, + [6606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 20, + ACTIONS(3088), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198792,20 +204491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3021), 39, + ACTIONS(3090), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198839,18 +204536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6049] = 6, + [6673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_COLON_COLON, - ACTIONS(3025), 1, - anon_sym_LT, - STATE(1865), 1, - sym_type_arguments, - ACTIONS(2810), 20, - anon_sym_COLON, + ACTIONS(3092), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198862,17 +204555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2808), 36, + ACTIONS(3094), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -198904,12 +204596,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, - [6122] = 3, + [6740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 20, + ACTIONS(3096), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198923,20 +204619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3028), 39, + ACTIONS(3098), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -198970,18 +204664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6189] = 6, + [6807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 21, - anon_sym_COLON, + ACTIONS(3100), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198995,17 +204683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 34, + ACTIONS(3102), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -199037,10 +204724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [6262] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [6874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 20, + ACTIONS(3104), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -199054,20 +204747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(931), 39, + ACTIONS(3106), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199101,10 +204792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6329] = 3, + [6941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 20, + ACTIONS(2911), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -199118,20 +204812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2779), 39, + ACTIONS(2909), 37, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199161,16 +204853,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, - [6396] = 3, + [7007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 20, - anon_sym_QMARK, + 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(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199182,20 +204880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2775), 39, + ACTIONS(2870), 35, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199225,14 +204921,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, - [6463] = 3, + [7079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 20, + ACTIONS(3007), 1, + anon_sym_COLON_COLON, + ACTIONS(2905), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -199246,20 +204943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2867), 39, + ACTIONS(2907), 36, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199289,14 +204983,20 @@ 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, - [6530] = 3, + [7147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -199310,20 +205010,80 @@ 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), 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, + [7217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3035), 1, + anon_sym_GT, + ACTIONS(2909), 2, + anon_sym_COLON_COLON, + anon_sym_COMMA, + ACTIONS(2968), 20, anon_sym_LT_LT, + anon_sym_COLON, 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(931), 39, + ACTIONS(2970), 35, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199355,76 +205115,14 @@ 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, - [6597] = 3, + [7287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 20, - 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, + ACTIONS(3112), 1, + anon_sym_LBRACE, + ACTIONS(3108), 20, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3032), 39, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [6664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 20, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -199438,20 +205136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(931), 39, + ACTIONS(3110), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199481,80 +205177,31 @@ 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, - [6731] = 3, + [7355] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 20, - anon_sym_QMARK, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(3114), 1, + anon_sym_COLON_COLON, + ACTIONS(3116), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3036), 39, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, + STATE(2357), 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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [6798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 20, + 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, @@ -199566,23 +205213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3040), 39, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2870), 30, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -199609,14 +205249,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, - [6865] = 3, + [7435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 20, + ACTIONS(3007), 1, + anon_sym_COLON_COLON, + ACTIONS(2915), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -199630,20 +205271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3044), 39, + ACTIONS(2917), 36, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199673,33 +205311,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, anon_sym_ATrequired, anon_sym_ATlateinit, - [6932] = 11, + [7503] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(2899), 1, anon_sym_RPAREN, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3050), 1, + ACTIONS(3116), 1, anon_sym_LT, - STATE(2551), 1, + ACTIONS(3119), 1, + anon_sym_COLON_COLON, + STATE(2376), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2808), 3, + ACTIONS(2868), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -199712,14 +205350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -199748,14 +205384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7014] = 5, + [7585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(3009), 1, anon_sym_LT, - STATE(1865), 1, + STATE(1946), 1, sym_type_arguments, - ACTIONS(2810), 19, + ACTIONS(2857), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -199768,20 +205406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2808), 37, + ACTIONS(2859), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -199813,15 +205449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [7084] = 4, + [7655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - anon_sym_COLON_COLON, - ACTIONS(2861), 21, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(3073), 1, anon_sym_LT, + STATE(1986), 1, + sym_type_arguments, + ACTIONS(2886), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199833,17 +205471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 36, + ACTIONS(2868), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -199877,15 +205514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [7152] = 5, + [7725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, - anon_sym_LT, - STATE(1916), 1, - sym_type_arguments, - ACTIONS(2828), 19, + ACTIONS(2839), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199897,23 +205533,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 37, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2837), 38, + sym_variable, + anon_sym_BSLASH, + anon_sym_COLON_COLON, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - 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, @@ -199940,18 +205574,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [7222] = 4, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [7791] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(2868), 1, + anon_sym_COMMA, + ACTIONS(2875), 1, + anon_sym_GT, + ACTIONS(3121), 1, anon_sym_COLON_COLON, - ACTIONS(2851), 21, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(3123), 1, + anon_sym_LBRACE, + ACTIONS(3125), 1, anon_sym_LT, - anon_sym_GT, + 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_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -199962,22 +205611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2849), 36, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_as3, + ACTIONS(2870), 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, @@ -200001,33 +205645,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_ATrequired, - anon_sym_ATlateinit, - [7290] = 11, + [7873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(3053), 1, - anon_sym_COLON_COLON, - ACTIONS(3055), 1, - anon_sym_LBRACE, - ACTIONS(3057), 1, - anon_sym_LT, - ACTIONS(3062), 1, - anon_sym_POUND, - STATE(2544), 1, - sym_type_arguments, - ACTIONS(3060), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2839), 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, @@ -200038,15 +205667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2837), 37, + anon_sym_BSLASH, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -200077,19 +205708,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [7372] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [7939] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2804), 2, + 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(2799), 21, - anon_sym_COLON, + ACTIONS(2866), 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, @@ -200100,17 +205741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 34, + ACTIONS(2870), 33, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -200142,18 +205780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7442] = 5, + [8017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_GT, - ACTIONS(2853), 2, - anon_sym_COLON_COLON, - anon_sym_COMMA, - ACTIONS(2872), 20, - anon_sym_COLON, + 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, @@ -200164,14 +205799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2867), 35, + ACTIONS(3134), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -200205,12 +205840,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, - [7512] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 20, + ACTIONS(3136), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200224,23 +205861,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2771), 38, - sym_variable, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(3138), 37, + anon_sym_COLON, anon_sym_COMMA, + 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, @@ -200267,14 +205902,17 @@ 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, - [7578] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 21, - anon_sym_COLON, + 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, @@ -200288,18 +205926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2853), 37, - anon_sym_COLON_COLON, + ACTIONS(2870), 35, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -200331,26 +205967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [7644] = 9, + [8214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2897), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 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, @@ -200361,14 +205986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, + ACTIONS(3142), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -200402,28 +206027,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7722] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8279] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(3050), 1, + ACTIONS(2875), 1, + anon_sym_GT, + ACTIONS(2899), 1, + anon_sym_COMMA, + ACTIONS(2937), 1, anon_sym_LT, - ACTIONS(3064), 1, - anon_sym_COLON_COLON, - STATE(2546), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2808), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(2799), 19, + ACTIONS(2866), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -200434,18 +206054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 30, - anon_sym_COMMA, + ACTIONS(2870), 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, anon_sym_AMP_AMP, @@ -200472,18 +206093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7802] = 6, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 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, @@ -200495,20 +206114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 35, + ACTIONS(3146), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -200538,10 +206155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7874] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 21, + ACTIONS(3148), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200555,23 +206176,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2771), 37, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(3150), 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, @@ -200595,16 +206214,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, - [7940] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 20, + ACTIONS(3152), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200618,20 +206238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3066), 37, + ACTIONS(3154), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -200663,12 +206281,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8005] = 3, + [8547] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 20, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -200680,20 +206318,74 @@ 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, + 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, + 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(3070), 37, + ACTIONS(3110), 35, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -200725,24 +206417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8070] = 9, + [8701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2897), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2900), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 18, + ACTIONS(3166), 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, @@ -200753,18 +206436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 32, + ACTIONS(3168), 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, @@ -200793,10 +206479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8147] = 3, + [8766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 20, + ACTIONS(3069), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200810,20 +206498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3074), 37, + ACTIONS(3071), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -200855,10 +206541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8212] = 3, + [8831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 20, + ACTIONS(3170), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200872,20 +206560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2933), 37, + ACTIONS(3172), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -200917,10 +206603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8277] = 3, + [8896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 20, + ACTIONS(3174), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200934,20 +206622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3078), 37, + ACTIONS(3176), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -200979,10 +206665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8342] = 3, + [8961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 20, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -200996,20 +206691,76 @@ 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), 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, + [9032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 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(3082), 37, + ACTIONS(3180), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201041,10 +206792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8407] = 3, + [9097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 20, + ACTIONS(3182), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201058,20 +206811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3086), 37, + ACTIONS(3184), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201103,10 +206854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8472] = 3, + [9162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 20, + ACTIONS(3186), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201120,20 +206873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3090), 37, + ACTIONS(3188), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201165,30 +206916,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8537] = 12, + [9227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3190), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3094), 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(3192), 37, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(3096), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(5045), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 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, + [9292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3194), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -201200,16 +206997,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3196), 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, @@ -201236,10 +207038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [8620] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [9357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 20, + ACTIONS(3198), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201253,20 +207059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3098), 37, + ACTIONS(3200), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201298,10 +207102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8685] = 3, + [9422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 20, + ACTIONS(3202), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201315,20 +207121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3102), 37, + ACTIONS(3204), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201360,10 +207164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8750] = 3, + [9487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 20, + ACTIONS(3206), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201377,20 +207183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3106), 37, + ACTIONS(3208), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201422,10 +207226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8815] = 3, + [9552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 20, + ACTIONS(3210), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201439,20 +207245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3110), 37, + ACTIONS(3212), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201484,10 +207288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8880] = 3, + [9617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 20, + ACTIONS(3214), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201501,20 +207307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3114), 37, + ACTIONS(3216), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201546,24 +207350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8945] = 9, + [9682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACE, - ACTIONS(3057), 1, - anon_sym_LT, - ACTIONS(3062), 1, - anon_sym_POUND, - ACTIONS(3118), 1, - anon_sym_COLON_COLON, - STATE(2649), 1, - sym_type_arguments, - ACTIONS(3060), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2944), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -201575,19 +207369,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2946), 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, @@ -201611,13 +207407,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, - [9022] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [9747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 20, + ACTIONS(3012), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201631,20 +207431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 37, + ACTIONS(3014), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201676,10 +207474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9087] = 3, + [9812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 20, + ACTIONS(2972), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201693,20 +207493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3120), 37, + ACTIONS(2974), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201738,10 +207536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9152] = 3, + [9877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 20, + ACTIONS(2976), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201755,20 +207555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3124), 37, + ACTIONS(2978), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201800,10 +207598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9217] = 3, + [9942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 20, + ACTIONS(3218), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201817,20 +207617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3128), 37, + ACTIONS(3220), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201862,10 +207660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9282] = 3, + [10007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 20, + ACTIONS(3061), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -201879,20 +207679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3132), 37, + ACTIONS(3063), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -201924,137 +207722,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9347] = 3, + [10072] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 20, - anon_sym_QMARK, + 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, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3136), 37, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3156), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3222), 1, anon_sym_RPAREN, - anon_sym_COLON, - 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, - [9412] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 2, + 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(2799), 20, - 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, + ACTIONS(2866), 19, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 35, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [9479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3142), 20, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -202066,23 +207759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3140), 37, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -202109,74 +207793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [9544] = 3, + [10155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 20, - 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, + ACTIONS(3224), 20, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3144), 37, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [9609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 20, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202190,20 +207812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3148), 37, + ACTIONS(3226), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202235,10 +207855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9674] = 3, + [10220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 20, + ACTIONS(3228), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202252,20 +207874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3152), 37, + ACTIONS(3230), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202297,10 +207917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9739] = 3, + [10285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 20, + ACTIONS(3232), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202314,20 +207936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2937), 37, + ACTIONS(3234), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202359,10 +207979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9804] = 3, + [10350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 20, + ACTIONS(3236), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202376,20 +207998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3156), 37, + ACTIONS(3238), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202421,10 +208041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9869] = 3, + [10415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 20, + ACTIONS(3240), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202438,20 +208060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3160), 37, + ACTIONS(3242), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202483,13 +208103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9934] = 3, + [10480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 20, - anon_sym_QMARK, - anon_sym_LT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -202500,23 +208133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3164), 37, - anon_sym_RBRACE, + ACTIONS(2870), 32, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -202545,30 +208171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9999] = 12, + [10557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3168), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(5072), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3244), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -202580,16 +208190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3246), 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, @@ -202616,10 +208231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [10082] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [10622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202633,20 +208252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3000), 37, + ACTIONS(2870), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202678,10 +208295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10147] = 3, + [10687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 20, + ACTIONS(3248), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202695,20 +208314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2984), 37, + ACTIONS(3250), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202740,10 +208357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10212] = 3, + [10752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 20, + ACTIONS(3080), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202757,20 +208376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2965), 37, + ACTIONS(3082), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202802,12 +208419,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10277] = 3, + [10817] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 20, - anon_sym_QMARK, + 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(3252), 1, + 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_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -202819,20 +208456,71 @@ 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, + 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, + [10900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3254), 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(2949), 37, + ACTIONS(3256), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202864,30 +208552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10342] = 12, + [10965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(4858), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3065), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -202899,16 +208571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3067), 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, @@ -202935,10 +208612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [10425] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [11030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 20, + ACTIONS(3258), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -202952,20 +208633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3172), 37, + ACTIONS(3260), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -202997,10 +208676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10490] = 3, + [11095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 20, + ACTIONS(3262), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203014,20 +208695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3176), 37, + ACTIONS(3264), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203059,10 +208738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10555] = 3, + [11160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 20, + ACTIONS(3266), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203076,20 +208757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3180), 37, + ACTIONS(3268), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203121,10 +208800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10620] = 3, + [11225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 20, + ACTIONS(3092), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203138,20 +208819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3184), 37, + ACTIONS(3094), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203183,10 +208862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10685] = 3, + [11290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 20, + ACTIONS(3270), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203200,20 +208881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3188), 37, + ACTIONS(3272), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203245,30 +208924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10750] = 12, + [11355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3192), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(5105), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2987), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -203280,16 +208943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2989), 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, @@ -203316,10 +208984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [10833] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [11420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 20, + ACTIONS(3274), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203333,20 +209005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3194), 37, + ACTIONS(3276), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203378,10 +209048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10898] = 3, + [11485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 20, + ACTIONS(3278), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203395,20 +209067,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3198), 37, + ACTIONS(3280), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203440,12 +209110,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10963] = 3, + [11550] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 20, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -203457,20 +209147,71 @@ 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, + 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, + [11633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 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(3202), 37, + ACTIONS(3286), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203502,10 +209243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11028] = 3, + [11698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 20, + ACTIONS(3288), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203519,20 +209262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3206), 37, + ACTIONS(3290), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203564,10 +209305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11093] = 3, + [11763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 20, + ACTIONS(2999), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203581,20 +209324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3210), 37, + ACTIONS(3001), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203626,19 +209367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11158] = 7, + [11828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2897), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2799), 18, + ACTIONS(3292), 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, @@ -203649,14 +209386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 35, + ACTIONS(3294), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -203692,10 +209429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11231] = 3, + [11893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 20, + ACTIONS(3296), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203709,20 +209448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3214), 37, + ACTIONS(3298), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203754,10 +209491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11296] = 3, + [11958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3220), 20, + ACTIONS(3300), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203771,20 +209510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3218), 37, + ACTIONS(3302), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203816,10 +209553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11361] = 3, + [12023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 20, + ACTIONS(3304), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203833,20 +209572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3222), 37, + ACTIONS(3306), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203878,10 +209615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11426] = 3, + [12088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 20, + ACTIONS(3100), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203895,20 +209634,80 @@ 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(3102), 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, + [12153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3308), 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(3226), 37, + ACTIONS(3310), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -203940,10 +209739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11491] = 3, + [12218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 20, + ACTIONS(3084), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -203957,20 +209758,80 @@ 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(3086), 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, + [12283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 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(2885), 37, + ACTIONS(2950), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204002,10 +209863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11556] = 3, + [12348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 20, + ACTIONS(3049), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204019,20 +209882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2881), 37, + ACTIONS(3051), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204064,10 +209925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11621] = 3, + [12413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 20, + ACTIONS(3088), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204081,20 +209944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2877), 37, + ACTIONS(3090), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204126,12 +209987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11686] = 3, + [12478] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 20, - anon_sym_QMARK, + ACTIONS(3123), 1, + anon_sym_LBRACE, + ACTIONS(3125), 1, anon_sym_LT, + ACTIONS(3130), 1, + anon_sym_POUND, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + STATE(2554), 1, + sym_type_arguments, + 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_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204143,23 +210018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3230), 37, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_as3, + ACTIONS(2870), 30, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -204183,15 +210052,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, - [11751] = 3, + [12555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 20, + ACTIONS(3314), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204205,20 +210074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3234), 37, + ACTIONS(3316), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204250,10 +210117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11816] = 3, + [12620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 20, + ACTIONS(3076), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204267,20 +210136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2906), 37, + ACTIONS(3078), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204312,12 +210179,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11881] = 3, + [12685] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 20, - anon_sym_QMARK, + 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(3318), 1, + anon_sym_RPAREN, + STATE(1880), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204329,23 +210216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2910), 37, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -204372,12 +210250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [11946] = 3, + [12768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 20, + ACTIONS(3320), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204391,20 +210269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3238), 37, + ACTIONS(3322), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204436,10 +210312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12011] = 3, + [12833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 20, + ACTIONS(3324), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204453,20 +210331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3242), 37, + ACTIONS(3326), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204498,10 +210374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12076] = 3, + [12898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 20, + ACTIONS(3328), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204515,20 +210393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2996), 37, + ACTIONS(3330), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204560,10 +210436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12141] = 3, + [12963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 20, + ACTIONS(3104), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204577,20 +210455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2992), 37, + ACTIONS(3106), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204622,10 +210498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12206] = 3, + [13028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 20, + ACTIONS(3332), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204639,20 +210517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2977), 37, + ACTIONS(3334), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204684,10 +210560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12271] = 3, + [13093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 20, + ACTIONS(3336), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204701,20 +210579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2929), 37, + ACTIONS(3338), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204746,10 +210622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12336] = 3, + [13158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 20, + ACTIONS(3016), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204763,20 +210641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2922), 37, + ACTIONS(3018), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204808,10 +210684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12401] = 3, + [13223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 20, + ACTIONS(3020), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204825,20 +210703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2953), 37, + ACTIONS(3022), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204870,10 +210746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12466] = 3, + [13288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 20, + ACTIONS(3024), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204887,20 +210765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2957), 37, + ACTIONS(3026), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204932,10 +210808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12531] = 3, + [13353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 20, + ACTIONS(3028), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -204949,20 +210827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2863), 37, + ACTIONS(3030), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -204994,12 +210870,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12596] = 3, + [13418] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 20, - anon_sym_QMARK, + 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, @@ -205011,23 +210907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3246), 37, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205054,12 +210941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [12661] = 3, + [13501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 20, + ACTIONS(2991), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205073,20 +210960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3250), 37, + ACTIONS(2993), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205118,10 +211003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12726] = 3, + [13566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 20, + ACTIONS(3342), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205135,20 +211022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3254), 37, + ACTIONS(3344), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205180,12 +211065,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12791] = 3, + [13631] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 20, - anon_sym_QMARK, + 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, @@ -205197,23 +211102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2973), 37, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205240,12 +211136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [12856] = 3, + [13714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 20, + ACTIONS(3348), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205259,20 +211155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3258), 37, + ACTIONS(3350), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205304,10 +211198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12921] = 3, + [13779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 20, + ACTIONS(3352), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205321,20 +211217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3262), 37, + ACTIONS(3354), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205366,10 +211260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12986] = 3, + [13844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 20, + ACTIONS(3356), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205383,20 +211279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2969), 37, + ACTIONS(3358), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205428,10 +211322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13051] = 3, + [13909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 20, + ACTIONS(3360), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205445,20 +211341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3266), 37, + ACTIONS(3362), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205490,30 +211384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13116] = 12, + [13974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(4601), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3364), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -205525,16 +211403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3366), 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, @@ -205561,10 +211444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [13199] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [14039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 20, + ACTIONS(3368), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205578,20 +211465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3272), 37, + ACTIONS(3370), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205623,10 +211508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13264] = 3, + [14104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 20, + ACTIONS(3372), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205640,20 +211527,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 37, + ACTIONS(3374), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205685,30 +211570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13329] = 12, + [14169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(4958), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3376), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -205720,16 +211589,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3378), 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, @@ -205756,10 +211630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [13412] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [14234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 20, + ACTIONS(2940), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205773,20 +211651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3278), 37, + ACTIONS(2942), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205818,10 +211694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13477] = 3, + [14299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 20, + ACTIONS(3108), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205835,20 +211713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2889), 37, + ACTIONS(3110), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205880,10 +211756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13542] = 3, + [14364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 20, + ACTIONS(2964), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205897,20 +211775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3282), 37, + ACTIONS(2966), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -205942,10 +211818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13607] = 3, + [14429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 20, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -205959,20 +211837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3286), 37, + ACTIONS(2859), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206004,10 +211880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13672] = 3, + [14494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 20, + ACTIONS(3380), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -206021,20 +211899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2945), 37, + ACTIONS(3382), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206066,10 +211942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13737] = 3, + [14559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 20, + ACTIONS(3038), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -206083,20 +211961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3028), 37, + ACTIONS(3040), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206128,10 +212004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13802] = 3, + [14624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 20, + ACTIONS(3045), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -206145,20 +212023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3290), 37, + ACTIONS(3047), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206190,30 +212066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13867] = 12, + [14689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3294), 1, - anon_sym_RPAREN, - STATE(1898), 1, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + STATE(1880), 1, sym_type_arguments, - STATE(4994), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -206225,15 +212093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 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, @@ -206258,13 +212127,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, - [13950] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [14762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3298), 20, + ACTIONS(3384), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -206278,20 +212151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3296), 37, + ACTIONS(3386), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206323,10 +212194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14015] = 3, + [14827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 20, + ACTIONS(2929), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -206340,20 +212213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3300), 37, + ACTIONS(2931), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206385,10 +212256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14080] = 3, + [14892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 20, + ACTIONS(2952), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -206402,20 +212275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3021), 37, + ACTIONS(2954), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -206447,48 +212318,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14145] = 3, + [14957] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_STAR_STAR, - ACTIONS(3304), 37, + ACTIONS(3390), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_LBRACK, 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_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, - anon_sym_QMARK_COLON, + 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_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -206502,26 +212493,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + [15191] = 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, + 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, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14210] = 6, + 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(3386), 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, + [15307] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2900), 2, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3482), 1, + anon_sym_RPAREN, + ACTIONS(3484), 1, + anon_sym_EQ_GT, + STATE(1880), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -206533,18 +212615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -206572,50 +212649,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14281] = 3, + [15387] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_STAR_STAR, - ACTIONS(3009), 37, + ACTIONS(3386), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -206629,55 +212736,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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14346] = 3, + [15503] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_STAR_STAR, - ACTIONS(3036), 37, + ACTIONS(3382), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -206691,54 +212823,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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14411] = 3, + [15619] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 20, - anon_sym_QMARK, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_STAR_STAR, - ACTIONS(3044), 37, + ACTIONS(3486), 21, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -206753,55 +212906,78 @@ 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, - [14476] = 3, + [15727] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3488), 1, + anon_sym_EQ, + 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, - anon_sym_STAR_STAR, - ACTIONS(3040), 37, + ACTIONS(3486), 20, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -206815,54 +212991,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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14541] = 3, + [15839] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 20, - anon_sym_QMARK, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3446), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3308), 37, + ACTIONS(3490), 21, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -206877,27 +213074,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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14606] = 7, + [15947] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(3118), 1, - anon_sym_COLON_COLON, - STATE(1898), 1, + 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(2789), 21, + 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_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -206909,18 +213109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2785), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -206945,35 +213140,119 @@ 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, - [14679] = 12, + [16027] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + 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, anon_sym_LPAREN, - ACTIONS(3318), 1, + 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(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, + 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, + [16143] = 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(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3506), 1, + anon_sym_RPAREN, + ACTIONS(3508), 1, + anon_sym_EQ_GT, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3316), 18, + 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, @@ -206986,19 +213265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 27, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -207020,70 +213294,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [14761] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [16223] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - STATE(1795), 1, + 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(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3331), 23, + ACTIONS(3286), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207097,80 +213386,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [14857] = 29, + [16339] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3078), 6, + ACTIONS(3510), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207184,80 +213473,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [14973] = 29, + [16455] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 6, + ACTIONS(3280), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207271,27 +213560,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15089] = 11, + [16571] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3413), 1, + ACTIONS(3512), 1, anon_sym_RPAREN, - ACTIONS(3415), 1, + ACTIONS(3514), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -207304,14 +213595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -207340,80 +213629,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [15169] = 29, + [16651] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3078), 6, + ACTIONS(3338), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207427,63 +213716,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15285] = 12, + [16767] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3417), 1, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - STATE(1795), 1, + 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(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3316), 18, - anon_sym_QMARK, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + 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(3312), 27, + ACTIONS(3516), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207497,188 +213803,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15367] = 3, + [16883] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 16, - sym_variable, - sym_pipe_variable, - anon_sym_BSLASH, - anon_sym_LT_LT_LT, - anon_sym_COMMA, + ACTIONS(3392), 1, anon_sym_LPAREN, - 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(3420), 40, - sym_identifier, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_self, - anon_sym_parent, - anon_sym_static, - 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_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_list, - anon_sym_LT_LT, - anon_sym_await, - anon_sym_async, - anon_sym_yield, - sym_xhp_identifier, - [15431] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3424), 1, - anon_sym_RPAREN, - ACTIONS(3426), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3394), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [15511] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3417), 1, - anon_sym_LT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3316), 18, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3400), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 30, + ACTIONS(3486), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207692,20 +213890,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + [16999] = 13, + 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, - [15589] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2900), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3426), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3488), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -207717,19 +213932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 33, + ACTIONS(3486), 27, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, - 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, @@ -207751,87 +213961,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, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [15657] = 29, + [17083] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3102), 6, + ACTIONS(3154), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -207845,103 +214048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15773] = 29, + [17199] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2708), 1, - anon_sym_async, - ACTIONS(3428), 1, - sym_variable, - ACTIONS(3430), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3432), 1, - sym_inout_modifier, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(2859), 1, - sym_visibility_modifier, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(4006), 1, - sym_async_modifier, - STATE(4212), 1, - sym_parameters, - STATE(6034), 1, - sym_variadic_modifier, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4502), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [15889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, - anon_sym_QMARK, + 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, anon_sym_PLUS, anon_sym_DASH, @@ -207953,20 +214081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2750), 33, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3523), 30, + 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, @@ -207988,87 +214113,155 @@ 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, - [15957] = 29, + [17277] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3518), 1, anon_sym_LT, - ACTIONS(3351), 1, + 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, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3124), 6, + ACTIONS(3134), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -208082,80 +214275,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16073] = 29, + [17479] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3488), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3090), 6, + ACTIONS(3486), 21, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -208169,80 +214358,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16189] = 29, + [17587] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3176), 6, + ACTIONS(3528), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -208256,27 +214445,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16305] = 11, + [17703] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, ACTIONS(3436), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + anon_sym_is, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3530), 1, + anon_sym_LT, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3434), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3438), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3488), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -208289,16 +214483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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, @@ -208320,36 +214515,48 @@ 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, - [16385] = 11, + [17785] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3440), 1, - anon_sym_RPAREN, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_QMARK, + 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(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), 8, + anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -208357,24 +214564,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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3486), 25, + 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, @@ -208389,61 +214590,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, - [16465] = 9, + [17877] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3446), 1, anon_sym_LT, - STATE(1795), 1, + ACTIONS(3458), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3460), 1, + anon_sym_AMP_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3316), 19, - anon_sym_QMARK, + 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_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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + 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, - anon_sym_STAR_STAR, - ACTIONS(3312), 30, + ACTIONS(3488), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3486), 21, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -208458,51 +214670,70 @@ 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, - [16541] = 6, + [17979] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - STATE(1735), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(3444), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - ACTIONS(2758), 20, - anon_sym_QMARK, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3446), 1, anon_sym_LT, + ACTIONS(3460), 1, + anon_sym_AMP_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(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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2756), 32, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3486), 22, + 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, @@ -208517,65 +214748,73 @@ 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, - [16611] = 10, + [18077] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3451), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3446), 1, anon_sym_LT, - STATE(1795), 1, + ACTIONS(3458), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3460), 1, + anon_sym_AMP_AMP, + 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(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3449), 18, - anon_sym_QMARK, + 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_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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + 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(3447), 30, + ACTIONS(3488), 4, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + ACTIONS(3486), 21, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, 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, @@ -208590,51 +214829,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + [18181] = 19, + 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, + anon_sym_LT, + 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, - [16689] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, - ACTIONS(3298), 19, - anon_sym_QMARK, - anon_sym_LT, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3296), 35, + ACTIONS(3486), 23, + 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, @@ -208649,82 +214906,71 @@ 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, - [16757] = 25, + [18277] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3462), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3460), 21, + 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, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -208739,71 +214985,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16865] = 25, + [18377] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - STATE(1795), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3488), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 21, + ACTIONS(3486), 21, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, @@ -208822,20 +215068,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16973] = 8, + [18485] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3417), 1, + 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(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3533), 1, + anon_sym_RPAREN, + ACTIONS(3535), 1, + anon_sym_EQ_GT, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3316), 19, + 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, @@ -208848,20 +215103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3312), 32, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, + ACTIONS(2870), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -208888,80 +215137,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [17047] = 29, + [18565] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3488), 1, + anon_sym_EQ, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3106), 6, + ACTIONS(3486), 20, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + anon_sym_PIPE_GT, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -208975,58 +215222,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17163] = 10, + [18677] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + 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(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3464), 1, - anon_sym_LT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3333), 18, + 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(3541), 1, + anon_sym_function, + 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(3996), 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, + [18793] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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(3331), 30, + ACTIONS(3154), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -209038,22 +215394,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17241] = 6, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [18909] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2899), 1, + anon_sym_RPAREN, + ACTIONS(3116), 1, anon_sym_LT, - STATE(1898), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(2900), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -209066,18 +215429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -209105,165 +215463,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [17311] = 29, + [18985] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3124), 6, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3411), 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, - [17427] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3377), 2, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 21, + ACTIONS(3486), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -209277,27 +215550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17535] = 11, + [19101] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3467), 1, + ACTIONS(3543), 1, anon_sym_RPAREN, - ACTIONS(3469), 1, + ACTIONS(3545), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -209310,14 +215585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -209346,27 +215619,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [17615] = 11, + [19181] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + 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, - ACTIONS(3471), 1, - anon_sym_RPAREN, - ACTIONS(3473), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -209379,16 +215661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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, @@ -209410,31 +215690,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_is, - anon_sym_as3, - anon_sym_QMARKas, - [17695] = 8, + [19265] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3050), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3446), 1, anon_sym_LT, - STATE(2912), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2808), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(2799), 19, - anon_sym_QMARK, - anon_sym_GT, + 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, + anon_sym_QMARK, + anon_sym_GT, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -209443,18 +215735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 30, + ACTIONS(3486), 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, @@ -209476,85 +215763,65 @@ 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, - [17769] = 29, + [19353] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3530), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3102), 6, + 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_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 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, @@ -209568,30 +215835,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17885] = 12, + [19439] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3464), 1, + ACTIONS(3549), 1, anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3333), 18, + ACTIONS(3547), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -209604,16 +215868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 27, + ACTIONS(3510), 30, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, @@ -209638,81 +215900,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17967] = 30, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [19517] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3475), 1, - anon_sym_EQ_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3148), 5, + ACTIONS(3150), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -209726,40 +215990,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18085] = 14, + [19633] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3464), 1, + 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(1795), 1, - sym_arguments, - STATE(5283), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 12, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(3552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, @@ -209768,15 +216024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3331), 27, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - 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(2870), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -209798,20 +216053,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18171] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [19711] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3318), 1, + 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(3321), 1, - anon_sym_LBRACK, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3554), 1, + anon_sym_RPAREN, + ACTIONS(3556), 1, + anon_sym_EQ_GT, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3316), 19, + 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, @@ -209824,20 +216093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3312), 32, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + ACTIONS(2870), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -209864,80 +216127,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [18245] = 29, + [19791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3549), 1, anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3547), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 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(3399), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3510), 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, - ACTIONS(3401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 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, + [19873] = 6, + 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, - ACTIONS(3379), 3, + 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(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3477), 6, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + ACTIONS(2818), 32, + anon_sym_COLON_COLON, + 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, @@ -209951,65 +216253,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18361] = 15, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 10, + ACTIONS(3488), 6, 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(3331), 27, + ACTIONS(3486), 23, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, 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, @@ -210024,16 +216338,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18449] = 5, + [20039] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(2875), 1, anon_sym_GT, - ACTIONS(3216), 19, - anon_sym_QMARK, + ACTIONS(2937), 1, anon_sym_LT, + ACTIONS(3312), 1, + anon_sym_COLON_COLON, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(3128), 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_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -210044,21 +216368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3214), 35, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2870), 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, @@ -210082,85 +216402,77 @@ 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, - [18517] = 29, + [20115] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3262), 6, + ACTIONS(3488), 4, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + ACTIONS(3486), 21, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -210174,27 +216486,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18633] = 11, + [20219] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3530), 1, anon_sym_LT, - ACTIONS(3485), 1, - anon_sym_RPAREN, - ACTIONS(3487), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3434), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3488), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -210207,16 +216519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3486), 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, @@ -210238,32 +216551,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, - [18713] = 11, + [20297] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3489), 1, + ACTIONS(3561), 1, anon_sym_RPAREN, - ACTIONS(3491), 1, + ACTIONS(3563), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -210276,14 +216589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -210312,80 +216623,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [18793] = 29, + [20377] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3493), 6, + ACTIONS(3382), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -210399,80 +216710,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18909] = 29, + [20493] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3412), 1, + anon_sym_AMP_AMP, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 6, + ACTIONS(3488), 6, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(3486), 22, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 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, @@ -210486,63 +216788,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19025] = 13, + [20591] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3410), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3412), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_CARET, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3464), 1, - anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3349), 3, + 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(3333), 15, + ACTIONS(3488), 5, 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3331), 27, + ACTIONS(3486), 21, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, 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, @@ -210557,57 +216868,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19109] = 11, + [20693] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3495), 1, - anon_sym_RPAREN, - ACTIONS(3497), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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(3492), 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, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3490), 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, + 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, + [20801] = 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, + 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, - anon_sym_QMARK_COLON, + 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(3280), 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, @@ -210621,52 +217038,47 @@ 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, - [19189] = 17, + [20917] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3407), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 8, + ACTIONS(3488), 8, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, @@ -210675,11 +217087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3331), 25, + ACTIONS(3486), 25, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -210701,25 +217113,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19281] = 10, + [21009] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3499), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3518), 1, anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3449), 18, + ACTIONS(3438), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3488), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -210732,17 +217151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3447), 30, + ACTIONS(3486), 27, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -210766,28 +217183,27 @@ 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, - [19359] = 10, + [21091] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3502), 1, + ACTIONS(3518), 1, anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3333), 18, + ACTIONS(3488), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -210800,17 +217216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 30, + ACTIONS(3486), 30, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -210837,167 +217251,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [19437] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_RPAREN, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(979), 1, - sym_inout_modifier, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(3505), 1, - sym_variable, - ACTIONS(3507), 1, - anon_sym_function, - ACTIONS(3509), 1, - anon_sym_LT_LT, - STATE(2599), 1, - sym_attribute_modifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2829), 1, - sym_visibility_modifier, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(4488), 1, - sym_parameter, - STATE(5244), 1, - sym_variadic_modifier, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3774), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [19553] = 29, + [21169] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3106), 6, + ACTIONS(3486), 21, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -211011,80 +217334,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19669] = 29, + [21277] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 6, + ACTIONS(3134), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -211098,117 +217421,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19785] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2708), 1, - anon_sym_async, - ACTIONS(3428), 1, - sym_variable, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3432), 1, - sym_inout_modifier, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(2859), 1, - sym_visibility_modifier, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(4018), 1, - sym_async_modifier, - STATE(4087), 1, - sym_parameters, - STATE(5650), 1, - sym__single_parameter_parameters, - STATE(6034), 1, - sym_variadic_modifier, - STATE(6191), 1, - sym__single_parameter, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4502), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [19901] = 12, + [21393] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3502), 1, + 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(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3565), 1, + anon_sym_RPAREN, + ACTIONS(3567), 1, + anon_sym_EQ_GT, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3333), 18, + 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, @@ -211221,19 +217456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 27, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -211245,90 +217475,64 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19983] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + [21473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3296), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3090), 6, + anon_sym_STAR_STAR, + ACTIONS(3298), 35, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3371), 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, @@ -211342,38 +217546,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20099] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [21541] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3502), 1, - anon_sym_LT, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3379), 3, + ACTIONS(3400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 12, + ACTIONS(3488), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_EQ, @@ -211384,13 +217598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3331), 27, + ACTIONS(3486), 27, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -211414,80 +217626,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20185] = 29, + [21629] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3176), 6, + ACTIONS(3306), 5, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -211501,67 +217714,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20301] = 17, + [21747] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3396), 1, + anon_sym_LT, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3412), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_CARET, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3345), 2, + 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(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 8, + ACTIONS(3488), 5, 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(3331), 25, + ACTIONS(3486), 22, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, 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, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -211576,80 +217793,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20393] = 29, + [21847] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3577), 1, anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3547), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3246), 6, + anon_sym_STAR_STAR, + ACTIONS(3510), 30, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3411), 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, @@ -211663,72 +217857,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20509] = 22, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [21923] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + ACTIONS(3577), 1, + anon_sym_LT, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3547), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 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(3510), 27, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -211743,70 +217930,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20611] = 20, + [22005] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, + 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(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3580), 1, + anon_sym_RPAREN, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 6, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 22, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -211821,73 +217994,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20709] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [22085] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + ACTIONS(3577), 1, + anon_sym_LT, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3547), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 4, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - ACTIONS(3331), 21, + ACTIONS(3510), 30, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, 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, @@ -211902,25 +218064,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20813] = 10, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [22163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + ACTIONS(3584), 1, + anon_sym_LT, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3316), 18, + ACTIONS(3521), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -211933,16 +218100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 30, + ACTIONS(3523), 30, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, @@ -211970,70 +218135,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [20891] = 19, + [22241] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, + ACTIONS(3394), 1, + anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3407), 1, + 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, - STATE(1795), 1, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3331), 23, + ACTIONS(3286), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK_COLON, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212047,80 +218222,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20987] = 29, + [22357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3112), 1, + anon_sym_LBRACE, + ACTIONS(3163), 1, + anon_sym_GT, + ACTIONS(3108), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3511), 6, + anon_sym_STAR_STAR, + ACTIONS(3110), 34, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3411), 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, @@ -212134,78 +218281,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21103] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [22427] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3333), 1, - anon_sym_EQ, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3357), 1, + 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(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 20, + ACTIONS(3528), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212219,80 +218373,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21215] = 29, + [22543] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3477), 6, + ACTIONS(3390), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212306,80 +218460,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21331] = 29, + [22659] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + 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(3351), 1, + 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + 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, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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, + anon_sym_is, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3511), 6, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3371), 13, + 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, @@ -212393,72 +218593,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21447] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [22819] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3375), 1, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3389), 1, + 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(3393), 1, + ACTIONS(3462), 1, + anon_sym_PIPE, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3407), 1, + ACTIONS(3466), 1, + anon_sym_AMP, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 5, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3331), 22, + ACTIONS(3510), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212472,76 +218685,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21547] = 25, + [22935] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, + ACTIONS(3394), 1, + anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3385), 1, + 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(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 21, + ACTIONS(3150), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212555,24 +218772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21655] = 9, + [23051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3318), 1, - anon_sym_LT, - ACTIONS(3321), 1, - anon_sym_LBRACK, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3316), 19, + ACTIONS(1123), 1, + anon_sym_BSLASH, + 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, @@ -212584,20 +218795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3312), 30, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_as3, + ACTIONS(2806), 33, + anon_sym_COLON_COLON, + 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, @@ -212619,81 +218828,87 @@ 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, - [21731] = 27, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [23119] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3333), 1, - anon_sym_EQ, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3385), 1, + 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(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 20, + ACTIONS(3338), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212707,81 +218922,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21843] = 30, + [23235] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + 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(3351), 1, + 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3148), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(3371), 13, + 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, @@ -212795,72 +218986,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21961] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [23315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3577), 1, anon_sym_LT, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3365), 1, - anon_sym_CARET, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3547), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 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, + anon_sym_STAR_STAR, + ACTIONS(3510), 32, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, 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, @@ -212875,25 +219052,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22063] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [23389] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2837), 1, - anon_sym_RPAREN, - ACTIONS(3050), 1, + 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, + 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, anon_sym_LT, - STATE(2912), 1, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2923), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2808), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -212906,15 +219169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -212942,80 +219206,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22139] = 29, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [23575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3116), 1, anon_sym_LT, - ACTIONS(3381), 1, + STATE(2786), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 6, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_STAR_STAR, + ACTIONS(2870), 30, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3411), 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, @@ -213029,70 +219269,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22255] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + [23649] = 5, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 6, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 22, - anon_sym_RBRACE, - anon_sym_SEMI, + 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_RPAREN, + anon_sym_SEMI, + 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, @@ -213107,110 +219330,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22353] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [23717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3601), 16, + sym_variable, + sym_pipe_variable, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_LT_LT_LT, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_AT, + anon_sym_TILDE, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + 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, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3331), 21, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [22461] = 11, + anon_sym_list, + anon_sym_await, + anon_sym_async, + anon_sym_yield, + sym_xhp_identifier, + [23781] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3515), 1, + ACTIONS(3603), 1, anon_sym_RPAREN, - ACTIONS(3517), 1, + ACTIONS(3605), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -213223,14 +219433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -213259,64 +219467,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22541] = 13, + [23861] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + 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(3327), 1, - anon_sym_is, - ACTIONS(3407), 1, + 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(3502), 1, - anon_sym_LT, - STATE(1795), 1, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 15, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3400), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3331), 27, + ACTIONS(3426), 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_COLON, 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213330,27 +219554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22625] = 11, + [23977] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3519), 1, + ACTIONS(3607), 1, anon_sym_RPAREN, - ACTIONS(3521), 1, + ACTIONS(3609), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -213363,14 +219589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -213399,96 +219623,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22705] = 9, + [24057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2823), 1, + ACTIONS(2875), 1, anon_sym_GT, - ACTIONS(2897), 1, + ACTIONS(2937), 1, anon_sym_LT, - ACTIONS(3118), 1, - anon_sym_COLON_COLON, - STATE(2912), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(3060), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - 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, + ACTIONS(2866), 18, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2797), 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, - [22781] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3523), 1, - anon_sym_RPAREN, - ACTIONS(3525), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, anon_sym_QMARK, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -213499,16 +219648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 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, @@ -213535,26 +219688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22861] = 10, + [24129] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3549), 1, anon_sym_LT, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2799), 19, + ACTIONS(3434), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3547), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -213567,16 +219719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3510), 30, + 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, @@ -213598,32 +219752,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, - [22939] = 11, + [24205] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3549), 1, anon_sym_LT, - ACTIONS(3529), 1, - anon_sym_RPAREN, - ACTIONS(3531), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3547), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -213636,16 +219783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3510), 32, + 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, @@ -213672,27 +219821,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [23019] = 11, + [24279] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3533), 1, + ACTIONS(3611), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, + ACTIONS(3613), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -213705,14 +219856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -213741,76 +219890,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [23099] = 25, + [24359] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3357), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3639), 1, anon_sym_AMP, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, + anon_sym_QMARK_COLON, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3621), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3462), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3339), 3, + ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3460), 21, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3338), 5, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213824,80 +219976,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23207] = 29, + [24474] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3619), 1, + anon_sym_LT, + ACTIONS(3625), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3627), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3621), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3493), 6, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3516), 5, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3371), 13, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213911,43 +220062,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23323] = 15, + [24589] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3375), 1, + 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(3407), 1, - anon_sym_STAR_STAR, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3655), 1, + anon_sym_RPAREN, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3403), 2, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 10, anon_sym_QMARK, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -213956,13 +220095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - ACTIONS(3331), 27, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -213984,19 +220124,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23411] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [24666] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2897), 1, + 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(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, anon_sym_LT, - STATE(2912), 1, + ACTIONS(3673), 1, + anon_sym_RPAREN, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2799), 18, + 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, @@ -214007,22 +220242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 34, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -214049,27 +220276,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [23483] = 11, + [24846] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3537), 1, + ACTIONS(3675), 1, anon_sym_RPAREN, - ACTIONS(3539), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -214082,14 +220309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -214118,73 +220343,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [23563] = 23, + [24923] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3649), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3677), 1, anon_sym_LT, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3521), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 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(3343), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3523), 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, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25000] = 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(3680), 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, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 4, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - ACTIONS(3331), 21, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -214199,80 +220472,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23667] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [25077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_BSLASH, + STATE(2101), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2837), 11, + sym_variable, + 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, + [25144] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3246), 6, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3490), 20, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3371), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214286,71 +220619,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23783] = 21, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25251] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + 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(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3365), 1, - anon_sym_CARET, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3685), 1, + anon_sym_RPAREN, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 22, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, @@ -214365,28 +220683,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23883] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [25328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3541), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3158), 1, anon_sym_RPAREN, - ACTIONS(3543), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + STATE(5071), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -214398,14 +220720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -214434,80 +220754,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [23963] = 29, + [25403] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3625), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3627), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3649), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3621), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3405), 3, + ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3262), 6, - anon_sym_RBRACE, + ACTIONS(3134), 5, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3411), 13, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214521,60 +220840,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [24079] = 13, + [25518] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3545), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3550), 1, + 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(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 15, + ACTIONS(3488), 2, 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, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3331), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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(3486), 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, @@ -214591,99 +220922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [24162] = 17, + [25625] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, + ACTIONS(3649), 1, anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3687), 1, anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3488), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3333), 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(3331), 24, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - 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, - [24253] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3562), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -214696,16 +220955,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3486), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -214727,28 +220984,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, - [24330] = 9, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(5045), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2923), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -214762,15 +221011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -214798,92 +221048,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [24405] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25767] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3564), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3392), 1, anon_sym_LPAREN, + ACTIONS(3404), 1, 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, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3687), 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, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [24482] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3566), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3488), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -214896,16 +221088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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, @@ -214927,77 +221117,151 @@ 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, - [24559] = 25, + 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(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - ACTIONS(3574), 1, - anon_sym_PIPE, - ACTIONS(3576), 1, - anon_sym_CARET, - ACTIONS(3578), 1, - anon_sym_AMP, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3554), 2, + ACTIONS(3615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3621), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3558), 2, + ACTIONS(3645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3580), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3331), 20, - anon_sym_SEMI, + 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, + anon_sym_CARET, + 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_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, @@ -215014,75 +221278,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [24666] = 27, + [26052] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3333), 1, - anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3331), 19, - anon_sym_SEMI, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3382), 5, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_PIPE_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215096,19 +221364,104 @@ 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, - [24777] = 5, + [26167] = 28, ACTIONS(3), 1, sym_comment, - STATE(2253), 1, - sym_arguments, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(935), 21, + ACTIONS(983), 1, + anon_sym_RPAREN, + ACTIONS(989), 1, anon_sym_QMARK, - anon_sym_LT, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3035), 1, anon_sym_GT, + ACTIONS(2909), 2, + anon_sym_COLON_COLON, + anon_sym_COMMA, + ACTIONS(2968), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -215119,15 +221472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(931), 32, + ACTIONS(2970), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -215160,23 +221511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [24844] = 9, + [26347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2909), 3, + sym_variable, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3192), 1, - anon_sym_RPAREN, - STATE(5105), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + anon_sym_DOT_DOT_DOT, + ACTIONS(2968), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -215190,15 +221534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2970), 32, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -215226,145 +221570,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [24919] = 9, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [26412] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3588), 1, - anon_sym_LT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3316), 19, + ACTIONS(989), 1, 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, + 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, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3312), 29, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [24994] = 29, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, - anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, - anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, - anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3246), 5, - anon_sym_SEMI, + 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_AMP, + ACTIONS(3486), 20, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215378,31 +221734,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [25109] = 12, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [26626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3588), 1, - anon_sym_LT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3316), 18, + ACTIONS(3032), 1, + anon_sym_RPAREN, + ACTIONS(2909), 4, + sym_variable, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(2968), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -215414,16 +221762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2970), 30, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -215445,58 +221791,86 @@ 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, - [25190] = 11, + 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, + [26693] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(3597), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3599), 1, - anon_sym_LT, - STATE(1948), 1, - sym_arguments, - STATE(2795), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3617), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -215510,22 +221884,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, - [25269] = 6, + [26808] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3118), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3060), 2, + 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(2799), 21, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -215539,18 +221916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -215575,82 +221947,71 @@ 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, - [25338] = 29, + [26883] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, - anon_sym_PIPE, - ACTIONS(3576), 1, - anon_sym_CARET, - ACTIONS(3578), 1, - anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, - anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3331), 5, - anon_sym_SEMI, + ACTIONS(3647), 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, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 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, @@ -215664,80 +222025,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [25453] = 30, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [26980] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, - anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, - anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - ACTIONS(3601), 1, - anon_sym_EQ_GT, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3148), 4, - anon_sym_SEMI, + ACTIONS(3647), 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), 20, anon_sym_COMMA, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 13, + 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, @@ -215751,26 +222105,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [25570] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [27083] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3603), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3340), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + STATE(5239), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -215782,14 +222139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -215818,139 +222173,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [25647] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_RPAREN, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(979), 1, - sym_inout_modifier, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(3505), 1, - sym_variable, - ACTIONS(3509), 1, - anon_sym_LT_LT, - STATE(2599), 1, - sym_attribute_modifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2829), 1, - sym_visibility_modifier, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(4488), 1, - sym_parameter, - STATE(5244), 1, - sym_variadic_modifier, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4415), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [25760] = 10, + [27158] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3545), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3550), 1, + ACTIONS(3649), 1, anon_sym_STAR_STAR, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3333), 18, - anon_sym_QMARK, + 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(3488), 6, + 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, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3331), 29, - anon_sym_SEMI, + ACTIONS(3486), 22, 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, @@ -215965,67 +222247,152 @@ 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, anon_sym_ATrequired, anon_sym_ATlateinit, - [25837] = 15, + [27253] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3619), 1, anon_sym_LT, - STATE(1795), 1, + ACTIONS(3633), 1, + anon_sym_AMP_AMP, + ACTIONS(3637), 1, + anon_sym_CARET, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3333), 10, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3488), 5, 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(3331), 26, - anon_sym_SEMI, + ACTIONS(3486), 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, + 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, + [27352] = 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(3488), 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(3486), 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, @@ -216042,26 +222409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [25924] = 10, + [27459] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3605), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3318), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + STATE(5010), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -216073,14 +222441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -216109,67 +222475,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [26001] = 19, + [27534] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - STATE(1795), 1, + 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(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3333), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3331), 22, - anon_sym_SEMI, + 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_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, @@ -216185,26 +222559,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [26096] = 10, + [27645] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3607), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -216216,14 +222591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -216252,71 +222625,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [26173] = 23, + [27720] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3570), 1, + 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(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3576), 1, + ACTIONS(3635), 1, + anon_sym_PIPE, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, + anon_sym_QMARK_COLON, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3333), 4, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - ACTIONS(3331), 20, - anon_sym_SEMI, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3486), 5, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -216330,85 +222711,37 @@ 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, - [26276] = 10, + [27835] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3550), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3649), 1, anon_sym_STAR_STAR, - ACTIONS(3609), 1, + ACTIONS(3687), 1, anon_sym_LT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3449), 18, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(3438), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3447), 29, - anon_sym_SEMI, - anon_sym_COMMA, - 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, - [26353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(935), 21, + ACTIONS(3488), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -216420,19 +222753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(931), 32, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3486), 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, @@ -216454,117 +222779,45 @@ 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, - [26420] = 29, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [27918] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - ACTIONS(3574), 1, - anon_sym_PIPE, - ACTIONS(3576), 1, - anon_sym_CARET, - ACTIONS(3578), 1, - anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, - anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3090), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 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, - [26535] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3588), 1, - anon_sym_LT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3316), 19, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3488), 10, anon_sym_QMARK, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -216573,16 +222826,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3312), 31, - anon_sym_SEMI, + ACTIONS(3486), 26, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -216605,23 +222851,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, - [26608] = 5, + [28005] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_GT, - ACTIONS(3216), 19, - anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(3694), 1, + anon_sym_LPAREN, + ACTIONS(3696), 1, anon_sym_LT, + STATE(2727), 1, + sym_arguments, + STATE(2802), 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, @@ -216632,22 +222888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3214), 34, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, + ACTIONS(2870), 27, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -216674,17 +222921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [26675] = 5, + [28084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_GT, - ACTIONS(2853), 2, + ACTIONS(3698), 1, anon_sym_COLON_COLON, - anon_sym_COMMA, - ACTIONS(2872), 20, - anon_sym_QMARK, + ACTIONS(3700), 1, anon_sym_LT, + STATE(2364), 1, + sym_type_arguments, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -216695,15 +222945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2867), 32, + ACTIONS(2859), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -216736,67 +222984,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [26742] = 20, + [28153] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, + ACTIONS(3649), 1, anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3687), 1, anon_sym_LT, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + 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), 12, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + 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, - ACTIONS(3582), 2, + anon_sym_LT_EQ, + 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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, + [28238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_COLON_COLON, + ACTIONS(3703), 1, + anon_sym_LT, + STATE(2408), 1, + sym_type_arguments, + ACTIONS(2886), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3333), 6, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 21, - anon_sym_SEMI, - 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, + anon_sym_as3, + ACTIONS(2868), 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, @@ -216811,27 +223111,34 @@ 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, - [26839] = 10, + 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, + [28307] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3612), 1, + ACTIONS(3706), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -216844,14 +223151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -216880,17 +223185,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [26916] = 6, + [28384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3616), 1, - anon_sym_LT, - STATE(2341), 1, - sym_type_arguments, - ACTIONS(2810), 20, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -216902,18 +223217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2808), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -216938,32 +223248,30 @@ 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, - [26985] = 11, + [28459] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(3599), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_LPAREN, - STATE(2596), 1, - sym_arguments, - STATE(2767), 1, + ACTIONS(3708), 1, + anon_sym_RPAREN, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -216976,14 +223284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -217011,79 +223318,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27064] = 29, + [28536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + STATE(2511), 1, + sym_arguments, + STATE(5266), 1, + sym_type_arguments, + ACTIONS(945), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3568), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - ACTIONS(3574), 1, anon_sym_PIPE, - ACTIONS(3576), 1, anon_sym_CARET, - ACTIONS(3578), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, - anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3106), 5, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(947), 32, + anon_sym_LPAREN, + anon_sym_as2, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 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, @@ -217097,27 +223373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [27179] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3621), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 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(2799), 19, - anon_sym_QMARK, + [28603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, anon_sym_GT, + ACTIONS(3296), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -217128,16 +223402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3298), 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, @@ -217164,26 +223442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27256] = 10, + [28670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3588), 1, - anon_sym_LT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3316), 18, + ACTIONS(1123), 1, + anon_sym_BSLASH, + STATE(1840), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(945), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -217195,16 +223465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 29, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(947), 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, @@ -217226,19 +223497,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_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [27333] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [28737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3118), 1, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(2789), 21, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -217252,15 +223527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2785), 32, + ACTIONS(2845), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -217293,79 +223566,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [27400] = 29, + [28804] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3710), 1, + anon_sym_EQ_GT, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3176), 5, - anon_sym_SEMI, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3306), 4, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3595), 13, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217379,25 +223653,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [27515] = 9, + [28921] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3294), 1, - anon_sym_RPAREN, - STATE(4994), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + 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(2799), 20, + 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, @@ -217409,15 +223688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -217445,25 +223721,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27590] = 9, + [29000] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(4958), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, + 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(3434), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3547), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -217475,16 +223752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3510), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217506,30 +223782,37 @@ 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, - [27665] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [29075] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + 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, anon_sym_LT, - ACTIONS(3623), 1, - anon_sym_RPAREN, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3434), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3438), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3547), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -217542,16 +223825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3510), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217573,30 +223854,29 @@ 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, - [27742] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [29156] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3714), 1, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_RPAREN, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, anon_sym_PLUS, @@ -217609,16 +223889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3510), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217640,60 +223918,256 @@ 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, - [27819] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [29233] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + 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, anon_sym_LT, + ACTIONS(3625), 1, + anon_sym_EQ, ACTIONS(3627), 1, - anon_sym_RPAREN, - STATE(1898), 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(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_QMARK, + 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(3528), 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, + [29348] = 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(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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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_LPAREN, + ACTIONS(3404), 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, + 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, - anon_sym_QMARK_COLON, + 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_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217707,30 +224181,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + [29578] = 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(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, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [27896] = 10, + 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(3510), 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, + [29693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3714), 1, anon_sym_LT, - ACTIONS(3629), 1, - anon_sym_RPAREN, - STATE(1898), 1, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3547), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -217743,16 +224295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3510), 31, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217779,19 +224330,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27973] = 5, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [29766] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_RPAREN, - ACTIONS(2853), 4, - sym_variable, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2872), 20, - anon_sym_QMARK, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2872), 1, anon_sym_LT, + ACTIONS(3717), 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, @@ -217803,14 +224365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2867), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -217839,32 +224399,27 @@ 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, - [28040] = 12, + [29843] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3545), 1, + 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(3550), 1, - anon_sym_STAR_STAR, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, + ACTIONS(3719), 1, + anon_sym_RPAREN, + STATE(1880), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3333), 18, + 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, @@ -217877,16 +224432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + 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, @@ -217908,81 +224461,84 @@ 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, - [28121] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [29920] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3078), 5, - anon_sym_SEMI, + 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(3595), 13, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217996,25 +224552,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [28236] = 10, + [30035] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3631), 1, + ACTIONS(3721), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -218027,14 +224585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -218063,25 +224619,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28313] = 10, + [30112] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2791), 1, + ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3633), 1, + ACTIONS(3723), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -218094,14 +224652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -218130,110 +224686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28390] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(979), 1, - sym_inout_modifier, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(3505), 1, - sym_variable, - ACTIONS(3509), 1, - anon_sym_LT_LT, - ACTIONS(3635), 1, - anon_sym_RPAREN, - STATE(2599), 1, - sym_attribute_modifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2829), 1, - sym_visibility_modifier, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(5489), 1, - sym_parameter, - STATE(5803), 1, - sym_variadic_modifier, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4415), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [28503] = 9, + [30189] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3725), 1, anon_sym_RPAREN, - STATE(4601), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + STATE(1880), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -218245,14 +224719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -218281,16 +224753,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28578] = 5, + [30266] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, - anon_sym_COMMA, - ACTIONS(3457), 1, - anon_sym_GT, - ACTIONS(3298), 19, - anon_sym_QMARK, + 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, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -218301,22 +224786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3296), 34, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -218343,79 +224820,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28645] = 29, + [30343] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3511), 5, - anon_sym_SEMI, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3280), 5, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3595), 13, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218429,79 +224906,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [28760] = 29, + [30458] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3477), 5, - anon_sym_SEMI, + ACTIONS(3647), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3286), 5, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3595), 13, + ACTIONS(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218515,79 +224992,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [28875] = 29, + [30573] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + 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(3568), 1, + ACTIONS(3729), 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, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - ACTIONS(3574), 1, anon_sym_PIPE, - ACTIONS(3576), 1, anon_sym_CARET, - ACTIONS(3578), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, - anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 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(2870), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + [30650] = 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(3731), 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, - ACTIONS(3580), 2, + 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, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3493), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 13, + 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, @@ -218601,23 +225121,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [28990] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [30727] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3170), 1, + ACTIONS(3222), 1, anon_sym_RPAREN, - STATE(4858), 1, + STATE(5192), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -218631,14 +225158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -218667,13 +225192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [29065] = 4, + [30802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 2, + 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(2799), 20, + ACTIONS(2866), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -218687,17 +225218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 33, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_as3, + ACTIONS(2870), 30, anon_sym_LPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -218723,21 +225252,30 @@ 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, - [29130] = 6, + [30871] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3637), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2872), 1, anon_sym_LT, - STATE(2327), 1, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(1880), 1, sym_type_arguments, - ACTIONS(2828), 20, + 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, @@ -218750,18 +225288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2826), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -218786,146 +225319,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, - [29199] = 29, + [30948] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3262), 5, - anon_sym_SEMI, + ACTIONS(3645), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3735), 2, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(3737), 2, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3595), 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, - [29314] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3640), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3623), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218939,31 +225408,102 @@ 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, - [29391] = 10, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2787), 1, - anon_sym_LBRACE, - ACTIONS(2791), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3482), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(3484), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -218975,14 +225515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -219011,79 +225549,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [29468] = 29, + [31234] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_PIPE_GT, + ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3649), 1, + anon_sym_STAR_STAR, + ACTIONS(3651), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3621), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3102), 5, - anon_sym_SEMI, + ACTIONS(3645), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3749), 2, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(3751), 2, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3595), 13, + 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(3653), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -219097,14 +225635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [29583] = 4, + [31350] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 3, - sym_variable, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - ACTIONS(2872), 20, + ACTIONS(2895), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -219118,17 +225665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2867), 32, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -219156,71 +225699,192 @@ 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, - [29648] = 22, + [31422] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + 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, + 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, - ACTIONS(3321), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, - anon_sym_LT, - ACTIONS(3570), 1, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, anon_sym_AMP_AMP, - ACTIONS(3576), 1, - anon_sym_CARET, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + [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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3506), 1, + anon_sym_RPAREN, + ACTIONS(3508), 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(3580), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3333), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 20, - anon_sym_SEMI, - anon_sym_COMMA, - 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(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, @@ -219235,81 +225899,169 @@ 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, - [29749] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [31664] = 27, + 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, + 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, + [31774] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1480), 1, + anon_sym_RBRACE, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3454), 1, + anon_sym_PIPE_GT, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3753), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5145), 1, + aux_sym_array_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3448), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3312), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 13, + 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, @@ -219323,23 +226075,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [29864] = 9, + [31894] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3168), 1, + ACTIONS(3512), 1, anon_sym_RPAREN, - STATE(5072), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(3514), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -219353,14 +226105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -219389,68 +226139,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [29939] = 21, + [31966] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1471), 1, + anon_sym_RBRACK, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3572), 1, + 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(3576), 1, + ACTIONS(3462), 1, + anon_sym_PIPE, + ACTIONS(3464), 1, anon_sym_CARET, - STATE(1795), 1, + 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(5283), 1, + STATE(5132), 1, + aux_sym_array_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3448), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, + 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(3556), 3, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, + 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_DOT, - ACTIONS(3333), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 21, - anon_sym_SEMI, - anon_sym_COMMA, - 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(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, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -219465,74 +226288,130 @@ 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, - [30038] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [32162] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + 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(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + 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(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_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, + [32260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_BSLASH, + STATE(2182), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2839), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3568), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - ACTIONS(3574), 1, anon_sym_PIPE, - ACTIONS(3576), 1, anon_sym_CARET, - ACTIONS(3578), 1, anon_sym_AMP, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3462), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3580), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3460), 20, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2837), 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, + 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, @@ -219547,73 +226426,69 @@ 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, - [30145] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [32326] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(979), 1, - sym_inout_modifier, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(3505), 1, - sym_variable, - ACTIONS(3509), 1, - anon_sym_LT_LT, - ACTIONS(3644), 1, - anon_sym_RPAREN, - STATE(2599), 1, - sym_attribute_modifier, - STATE(2720), 1, + 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(2829), 1, - sym_visibility_modifier, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3441), 1, sym_null, - STATE(5489), 1, - sym_parameter, - STATE(5803), 1, - sym_variadic_modifier, - STATE(3383), 2, + STATE(4926), 1, + sym_const_declarator, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4415), 5, + STATE(3462), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + 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, @@ -219633,73 +226508,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [30258] = 25, + [32424] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, - ACTIONS(3568), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, - anon_sym_AMP_AMP, - ACTIONS(3574), 1, anon_sym_PIPE, - ACTIONS(3576), 1, anon_sym_CARET, - ACTIONS(3578), 1, anon_sym_AMP, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 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, + 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(3329), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3333), 2, + [32496] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3760), 1, + anon_sym_BSLASH, + STATE(2215), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3554), 2, + 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, - ACTIONS(3558), 2, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3560), 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, + 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, - ACTIONS(3580), 2, + 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, - ACTIONS(3582), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3331), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + 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, @@ -219714,81 +226692,86 @@ 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, - [30365] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [32634] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1478), 1, + anon_sym_RBRACE, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3454), 1, + anon_sym_PIPE_GT, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3768), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5080), 1, + aux_sym_array_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3448), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3124), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3595), 13, + 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, @@ -219802,62 +226785,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [30480] = 14, + [32754] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1489), 1, + anon_sym_RBRACK, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3545), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3550), 1, + 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, - STATE(1795), 1, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3770), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5041), 1, + aux_sym_array_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3333), 12, - anon_sym_QMARK, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3331), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -219871,23 +226873,23 @@ 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, - [30565] = 8, + [32874] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3294), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3554), 1, anon_sym_RPAREN, - STATE(4994), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(3556), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -219901,14 +226903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -219937,24 +226937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [30637] = 9, + [32946] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(5045), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, @@ -219966,14 +226966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220002,10 +227000,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [30711] = 3, + [33016] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 21, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3565), 1, + anon_sym_RPAREN, + ACTIONS(3567), 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, @@ -220019,19 +227118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2842), 33, - anon_sym_COLON_COLON, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220056,28 +227149,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [30773] = 9, + [33208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3703), 1, anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3168), 1, - anon_sym_RPAREN, - STATE(1898), 1, + STATE(2408), 1, sym_type_arguments, - STATE(5072), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2886), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -220090,15 +227174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2868), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220123,24 +227208,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, - [30847] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [33274] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3495), 1, + ACTIONS(3561), 1, anon_sym_RPAREN, - ACTIONS(3497), 1, + ACTIONS(3563), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220154,14 +227243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220190,21 +227277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [30919] = 8, + [33346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3698), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3485), 1, - anon_sym_RPAREN, - ACTIONS(3487), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2915), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220218,15 +227298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2917), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220251,26 +227332,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, - [30991] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [33410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3168), 1, - anon_sym_RPAREN, - STATE(5072), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(3125), 1, + anon_sym_LT, + STATE(2718), 1, + sym_type_arguments, + ACTIONS(3128), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -220282,15 +227362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -220315,27 +227396,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, - [31063] = 9, + [33478] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3170), 1, + ACTIONS(3282), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(4858), 1, + STATE(5127), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -220347,14 +227429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220383,23 +227463,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31137] = 8, + [33550] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3537), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3318), 1, anon_sym_RPAREN, - ACTIONS(3539), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + 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(2799), 20, + 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, @@ -220411,14 +227494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220447,79 +227528,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31209] = 30, + [33624] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3454), 1, + anon_sym_PIPE_GT, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3448), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3646), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(3648), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3595), 13, + 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, @@ -220533,21 +227614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [31325] = 8, + [33740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3312), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3523), 1, - anon_sym_RPAREN, - ACTIONS(3525), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220561,15 +227635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 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, @@ -220594,84 +227669,57 @@ 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, - [31397] = 32, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [33804] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_RBRACK, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(3650), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4901), 1, - aux_sym_array_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -220685,23 +227733,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [31517] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [33876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3700), 1, anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RPAREN, - STATE(1898), 1, + STATE(2364), 1, sym_type_arguments, - STATE(4601), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -220714,15 +227760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2859), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220747,23 +227794,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, - [31591] = 7, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [33942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3698), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2799), 20, + ACTIONS(2905), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220777,15 +227820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2907), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220810,24 +227854,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, - [31661] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RPAREN, - STATE(4601), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + [34006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220841,15 +227878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2919), 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, @@ -220874,24 +227913,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, - [31733] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [34068] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3094), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3170), 1, + ACTIONS(3318), 1, anon_sym_RPAREN, - STATE(4858), 1, + STATE(5010), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220905,14 +227948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220941,12 +227982,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31805] = 4, + [34140] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2851), 21, + 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, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -220960,18 +228012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2849), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220996,28 +228043,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, - [31869] = 8, + [34212] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3471), 1, - anon_sym_RPAREN, - ACTIONS(3473), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + 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(2799), 20, + 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, @@ -221029,15 +228079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221065,169 +228112,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31941] = 32, + [34288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - anon_sym_RBRACK, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3282), 1, + anon_sym_RPAREN, + STATE(1984), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(3652), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4450), 1, - aux_sym_array_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 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, - [32061] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1478), 1, - anon_sym_RBRACK, - ACTIONS(3314), 1, + anon_sym_STAR_STAR, + ACTIONS(2870), 28, anon_sym_LPAREN, - ACTIONS(3321), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(3654), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4703), 1, - aux_sym_array_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -221241,14 +228172,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [32181] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [34362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, - anon_sym_BSLASH, - STATE(2143), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2773), 21, + 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, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -221262,16 +228201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2771), 31, - anon_sym_COLON_COLON, + ACTIONS(2870), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -221302,16 +228238,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [32247] = 5, + [34428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2663), 1, anon_sym_BSLASH, - STATE(2143), 1, + 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, - ACTIONS(2752), 21, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -221323,19 +228346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2750), 31, - anon_sym_COLON_COLON, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221360,15 +228377,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, - [32313] = 4, + [34600] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2789), 21, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -221382,18 +228410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2785), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221418,31 +228441,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [32377] = 10, + [34672] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3599), 1, - anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_LPAREN, - STATE(2596), 1, - sym_arguments, - STATE(5381), 1, - sym_type_arguments, - ACTIONS(2804), 2, + 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(2799), 19, + 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, @@ -221454,14 +228474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221489,79 +228508,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [32453] = 30, + [34744] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1527), 1, + anon_sym_RBRACK, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - STATE(1795), 1, + ACTIONS(3776), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5057), 1, + aux_sym_array_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3661), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -221575,101 +228596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [32569] = 27, + [34864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(979), 1, - sym_inout_modifier, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(3760), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(3505), 1, - sym_variable, - ACTIONS(3509), 1, - anon_sym_LT_LT, - STATE(2599), 1, - sym_attribute_modifier, - STATE(2720), 1, + STATE(2182), 1, aux_sym_qualified_identifier_repeat1, - STATE(2829), 1, - sym_visibility_modifier, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(5489), 1, - sym_parameter, - STATE(5803), 1, - sym_variadic_modifier, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4415), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [32679] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_LT, - STATE(2649), 1, - sym_type_arguments, - ACTIONS(3060), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -221681,15 +228619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2818), 31, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -221720,21 +228657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [32747] = 8, + [34930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3467), 1, - anon_sym_RPAREN, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -221748,15 +228678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 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, @@ -221781,18 +228712,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, - [32819] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [34994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 1, - anon_sym_LT, - STATE(2327), 1, - sym_type_arguments, - ACTIONS(2828), 20, + ACTIONS(2911), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -221804,15 +228736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2826), 32, + ACTIONS(2909), 33, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -221845,21 +228776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [32885] = 8, + [35056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3489), 1, - anon_sym_RPAREN, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3760), 1, + anon_sym_BSLASH, + STATE(2182), 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, @@ -221873,15 +228799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 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, @@ -221906,84 +228834,143 @@ 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, - [32957] = 32, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1518), 1, + anon_sym_RBRACE, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(3663), 1, - anon_sym_RBRACE, - ACTIONS(3665), 1, + ACTIONS(3778), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4427), 1, + STATE(4658), 1, aux_sym_array_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -221997,15 +228984,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [33077] = 5, + [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, + 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(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(3616), 1, - anon_sym_LT, - STATE(2341), 1, - sym_type_arguments, - ACTIONS(2810), 20, + 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, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -222017,18 +229214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2808), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -222053,86 +229245,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [33143] = 32, + [35608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, - anon_sym_RBRACK, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4396), 1, - aux_sym_array_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -222146,14 +229307,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [33263] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [35680] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_BSLASH, - STATE(2143), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2758), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -222167,19 +229342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2756), 31, - anon_sym_COLON_COLON, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -222204,24 +229373,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, - [33329] = 8, + [35752] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3533), 1, + ACTIONS(3603), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, + ACTIONS(3605), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -222235,14 +229406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222271,79 +229440,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33401] = 30, + [35824] = 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(4796), 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(3461), 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, + [35922] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1525), 1, + anon_sym_RBRACK, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3550), 1, - anon_sym_STAR_STAR, - ACTIONS(3552), 1, + ACTIONS(3442), 1, + anon_sym_EQ_GT, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3568), 1, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3454), 1, + anon_sym_PIPE_GT, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3570), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3572), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3574), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3576), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3578), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3584), 1, - anon_sym_QMARK, - ACTIONS(3586), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3591), 1, - anon_sym_EQ, - ACTIONS(3593), 1, - anon_sym_PIPE_GT, - STATE(1795), 1, + ACTIONS(3782), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(4545), 1, + aux_sym_array_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3554), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3558), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3560), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 2, + ACTIONS(3448), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3582), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3669), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(3671), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3556), 3, + 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(3595), 13, + 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, @@ -222357,16 +229605,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [33517] = 3, + [36042] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 21, + 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, 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, @@ -222374,19 +229636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2853), 33, - anon_sym_COLON_COLON, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -222411,29 +229667,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [33579] = 9, + [36116] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3294), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3595), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(4994), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(3597), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -222445,14 +229700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222481,23 +229734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33653] = 9, + [36188] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3094), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3192), 1, + ACTIONS(3158), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1984), 1, sym_type_arguments, - STATE(5105), 1, + STATE(5071), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -222510,14 +229765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222546,23 +229799,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33727] = 8, + [36262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3515), 1, + 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(4552), 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(3460), 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, + [36360] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, anon_sym_RPAREN, - ACTIONS(3517), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(1984), 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(2799), 20, + 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, @@ -222574,14 +229907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222610,21 +229941,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33799] = 8, + [36434] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3519), 1, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, anon_sym_RPAREN, - ACTIONS(3521), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -222638,14 +229971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222674,17 +230005,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33871] = 5, + [36506] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_COLON_COLON, - ACTIONS(3060), 2, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3222), 1, + anon_sym_RPAREN, + STATE(1984), 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(2799), 21, + 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, @@ -222696,18 +230036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -222732,24 +230067,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, - [33937] = 8, + [36580] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, + ACTIONS(2895), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3440), 1, + ACTIONS(3580), 1, anon_sym_RPAREN, - ACTIONS(3442), 1, + ACTIONS(3582), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -222763,14 +230100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222799,14 +230134,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [34009] = 4, + [36652] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_COLON_COLON, - ACTIONS(2861), 21, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -222818,18 +230165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2859), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -222854,26 +230196,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, - [34073] = 8, + [36726] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3413), 1, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3158), 1, anon_sym_RPAREN, - ACTIONS(3415), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(5071), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -222887,14 +230229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222923,54 +230263,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [34145] = 10, + [36798] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3597), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3599), 1, - anon_sym_LT, - STATE(1948), 1, - sym_arguments, - STATE(5322), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(1814), 1, + sym_arguments, + STATE(5152), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -222984,86 +230349,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, - [34221] = 32, + [36915] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(3673), 1, - anon_sym_RBRACE, - ACTIONS(3675), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3792), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4787), 1, - aux_sym_array_repeat1, - STATE(5283), 1, + STATE(4742), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -223077,14 +230435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [34341] = 5, + [37032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_BSLASH, - STATE(2156), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2752), 21, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, + 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_LT, anon_sym_GT, @@ -223098,19 +230463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2750), 31, - anon_sym_COLON_COLON, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -223135,24 +230494,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, - [34407] = 8, + [37101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(4958), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(4615), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -223166,14 +230520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -223202,52 +230555,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [34479] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3436), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + [37166] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_as2, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, + STATE(2511), 1, + sym_arguments, + STATE(5752), 1, + sym_type_arguments, + STATE(5969), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -223261,33 +230644,27 @@ 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, - [34551] = 9, + [37285] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3677), 1, - anon_sym_COMMA, - ACTIONS(3679), 1, + ACTIONS(3565), 1, anon_sym_RPAREN, - ACTIONS(3682), 1, - anon_sym_EQ, - ACTIONS(2804), 2, + ACTIONS(3567), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -223295,14 +230672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -223331,21 +230706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [34625] = 8, + [37354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3192), 1, - anon_sym_RPAREN, - STATE(5105), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2948), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -223359,15 +230725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -223392,24 +230759,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, - [34697] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3529), 1, - anon_sym_RPAREN, - ACTIONS(3531), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + [37415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -223423,15 +230783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2830), 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, @@ -223456,55 +230819,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, - [34769] = 8, + [37476] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3682), 1, - anon_sym_EQ, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3679), 2, - anon_sym_COMMA, + ACTIONS(1535), 1, anon_sym_RPAREN, - ACTIONS(2799), 19, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -223518,58 +230908,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, - [34841] = 9, + [37593] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - STATE(4958), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -223583,17 +230994,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, - [34915] = 4, + [37710] = 7, ACTIONS(3), 1, sym_comment, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2789), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3852), 1, + anon_sym_RBRACE, + 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, @@ -223607,18 +231022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2785), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -223643,26 +231053,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_QMARK_DASH_GT, - anon_sym_DASH_GT, - [34979] = 8, + [37779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3424), 1, - anon_sym_RPAREN, - ACTIONS(3426), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2816), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -223676,15 +231075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2814), 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, @@ -223709,55 +231111,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, - [35051] = 8, + [37840] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3541), 1, - anon_sym_RPAREN, - ACTIONS(3543), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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(3854), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -223771,26 +231198,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, - [35123] = 8, + [37953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(5045), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2952), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -223804,15 +231217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2954), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -223837,47 +231251,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, - [35195] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [38014] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 21, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - ACTIONS(2760), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -223891,86 +231342,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, - [35256] = 31, + [38131] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(1533), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4784), 1, + STATE(5177), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -223984,24 +231428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [35373] = 9, + [38248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3597), 1, - anon_sym_LPAREN, - ACTIONS(3599), 1, - anon_sym_LT, - STATE(1948), 1, - sym_arguments, - STATE(5322), 1, - sym_type_arguments, - ACTIONS(2804), 2, + 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(2799), 19, + 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, @@ -224013,14 +231456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -224048,19 +231490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [35446] = 7, + [38317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3642), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -224074,14 +231513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -224110,79 +231548,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [35515] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [38382] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3846), 1, + anon_sym_as3, + ACTIONS(3848), 1, + anon_sym_QMARKas, + 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(3832), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3488), 15, + 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(3486), 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, + [38465] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3580), 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4808), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -224196,18 +231677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [35632] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [38536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2799), 20, + ACTIONS(2816), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -224221,15 +231701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 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, @@ -224257,10 +231740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [35699] = 3, + [38597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 21, + ACTIONS(3003), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -224274,15 +231759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3021), 32, + ACTIONS(3005), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -224315,10 +231798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [35760] = 3, + [38658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 21, + ACTIONS(2925), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -224332,15 +231817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3028), 32, + ACTIONS(2927), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -224373,79 +231856,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [35821] = 31, + [38719] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3687), 1, + ACTIONS(3859), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4701), 1, + STATE(5093), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224459,50 +231942,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [35938] = 7, + [38836] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2799), 19, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3861), 1, + anon_sym_SEMI, + STATE(1814), 1, + sym_arguments, + STATE(4881), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -224516,24 +232028,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, - [36007] = 7, + [38953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_RPAREN, - ACTIONS(3497), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2649), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -224547,15 +232047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2651), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -224580,54 +232081,172 @@ 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, - [36076] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3495), 1, - anon_sym_RPAREN, - ACTIONS(3497), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + [39014] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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(3863), 1, + anon_sym_as2, + STATE(2511), 1, + sym_arguments, + STATE(5752), 1, + sym_type_arguments, + STATE(5783), 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_DOT, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, + [39133] = 32, + 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(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, + sym_arguments, + STATE(5752), 1, + sym_type_arguments, + STATE(6022), 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, - anon_sym_QMARK_COLON, + 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(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224641,84 +232260,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, - [36147] = 31, + [39252] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3689), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3867), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5010), 1, + STATE(5104), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224732,79 +232346,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36264] = 31, + [39369] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3691), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3869), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5079), 1, + STATE(5068), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + 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, + [39486] = 7, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -224818,79 +232489,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36381] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [39555] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3846), 1, + anon_sym_as3, + ACTIONS(3848), 1, + anon_sym_QMARKas, + ACTIONS(3856), 1, anon_sym_LT, - ACTIONS(3351), 1, + 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_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3832), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3488), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4572), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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_await, + [39640] = 16, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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), 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, @@ -224904,10 +232634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36498] = 3, + anon_sym_await, + [39727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 21, + ACTIONS(3038), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -224921,15 +232654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2973), 32, + ACTIONS(3040), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -224962,14 +232693,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [36559] = 5, + [39788] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - STATE(1079), 1, - sym_compound_statement, - ACTIONS(2593), 20, + 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, + 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(3486), 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, + [39903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -224983,16 +232797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2985), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -225017,85 +232831,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [36624] = 32, + [39964] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3697), 1, - anon_sym_as2, - ACTIONS(3699), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3707), 1, - anon_sym_EQ, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - STATE(2253), 1, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - STATE(5900), 1, - sym_await_modifier, - ACTIONS(3703), 2, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3804), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3486), 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, @@ -225109,79 +232918,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36743] = 31, + anon_sym_await, + [40075] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1655), 1, + ACTIONS(1713), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4941), 1, + STATE(4508), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225195,79 +233005,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36860] = 31, + [40192] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3871), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4580), 1, + STATE(4893), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225281,13 +233091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36977] = 4, + [40309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3060), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 21, + ACTIONS(2828), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -225301,15 +233110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2826), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -225340,46 +233147,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [37040] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [40370] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym_compound_statement, - ACTIONS(2593), 20, + 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, anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -225393,57 +233235,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, - [37105] = 7, + [40487] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(5045), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 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, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -225457,84 +233321,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, - [37174] = 31, + [40604] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3751), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3753), 1, + ACTIONS(3875), 1, anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4477), 1, + STATE(5121), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225548,79 +233407,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37291] = 31, + [40721] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3877), 1, anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5041), 1, + STATE(5187), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225634,19 +233493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37408] = 7, + [40838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3168), 1, + ACTIONS(3346), 1, anon_sym_RPAREN, - STATE(5072), 1, + STATE(5140), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -225660,14 +233521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -225696,10 +233555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [37477] = 3, + [40907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 21, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -225713,18 +233583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3040), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -225749,169 +233614,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, - [37538] = 7, + [40976] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3757), 1, - anon_sym_RBRACE, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(2797), 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(3478), 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(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, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [37607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 21, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3044), 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(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3472), 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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [37668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 21, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3036), 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225925,86 +233703,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, - [37729] = 31, + [41093] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1801), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3759), 1, - anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5126), 1, + STATE(5042), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226018,44 +233789,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37846] = 3, + [41210] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 21, + ACTIONS(1803), 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, anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(4566), 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, - ACTIONS(3009), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -226069,86 +233875,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, - [37907] = 31, + [41327] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3881), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5033), 1, + STATE(5065), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226162,79 +233961,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38024] = 31, + [41444] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3883), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4578), 1, + STATE(5176), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226248,22 +234047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38141] = 8, + [41561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3424), 1, - anon_sym_RPAREN, - ACTIONS(3426), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1589), 1, + sym_compound_statement, + 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, @@ -226275,14 +234070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -226311,79 +234105,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [38212] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [41626] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3761), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5027), 1, + STATE(5063), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + 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, + [41743] = 32, + 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(3842), 1, + anon_sym_await, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, + anon_sym_as3, + ACTIONS(3848), 1, + anon_sym_QMARKas, + ACTIONS(3885), 1, + anon_sym_as2, + STATE(2511), 1, + sym_arguments, + STATE(5752), 1, + sym_type_arguments, + STATE(5915), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226397,77 +234280,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38329] = 29, + [41862] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3887), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5035), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226481,19 +234366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38442] = 7, + [41979] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3424), 1, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3222), 1, anon_sym_RPAREN, - ACTIONS(3426), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(5192), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -226507,14 +234394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -226543,79 +234428,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [38511] = 31, + [42048] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1595), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3765), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4380), 1, + STATE(5045), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226629,79 +234514,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38628] = 31, + [42165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3603), 1, + anon_sym_RPAREN, + ACTIONS(3605), 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, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4596), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -226715,21 +234572,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38745] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [42236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3769), 1, - anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3316), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + 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, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -226741,17 +234605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3312), 28, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(2870), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -226775,13 +234636,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, - [38816] = 3, + [42305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 21, + ACTIONS(2940), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -226795,15 +234658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2933), 32, + ACTIONS(2942), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -226836,80 +234697,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [38877] = 32, + [42366] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3772), 1, - anon_sym_as2, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3889), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(5062), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - STATE(5848), 1, - sym_await_modifier, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226923,10 +234783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38996] = 3, + [42483] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 21, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -226940,18 +234811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2969), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -226976,169 +234842,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_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [39057] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_QMARK, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3707), 1, - anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, - anon_sym_PIPE, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3723), 1, - anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, anon_sym_is, - ACTIONS(3747), 1, anon_sym_as3, - ACTIONS(3749), 1, anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3312), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3739), 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, - [39172] = 31, + [42552] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(1791), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5020), 1, + STATE(5060), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -227152,10 +234931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39289] = 3, + [42669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 21, + ACTIONS(2964), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -227169,15 +234950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2779), 32, + ACTIONS(2966), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -227210,14 +234989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [39350] = 5, + [42730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_LBRACE, - STATE(746), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(2929), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -227231,16 +235008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2931), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -227265,113 +235042,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [39415] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4821), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [39532] = 8, + [42791] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3537), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3603), 1, anon_sym_RPAREN, - ACTIONS(3539), 1, + ACTIONS(3605), 1, anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -227383,14 +235075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -227419,79 +235109,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [39603] = 31, + [42860] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1753), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3776), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4936), 1, + STATE(5205), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -227505,79 +235195,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39720] = 31, + [42977] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3778), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(5012), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + 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(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -227591,79 +235275,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39837] = 31, + anon_sym_await, + [43084] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3780), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3891), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5067), 1, + STATE(5216), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + 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, + [43201] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3675), 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(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -227677,79 +235419,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39954] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [43270] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1785), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3782), 1, - anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5016), 1, + STATE(5052), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -227763,79 +235510,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40071] = 31, + [43387] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3784), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4665), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + 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(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3488), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + 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, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -227849,79 +235586,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40188] = 31, + anon_sym_await, + [43486] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3786), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3846), 1, anon_sym_as3, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3488), 6, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(3486), 20, + 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, anon_sym_PIPE_EQ, @@ -227935,80 +235661,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40305] = 32, + anon_sym_await, + [43581] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3707), 1, - anon_sym_EQ, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, - anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3788), 1, - anon_sym_as2, - STATE(2253), 1, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - STATE(5795), 1, - sym_await_modifier, - ACTIONS(3703), 2, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3804), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3488), 4, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + 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, @@ -228022,20 +235740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40424] = 7, + anon_sym_await, + [43684] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_RPAREN, - ACTIONS(3050), 1, + ACTIONS(2872), 1, anon_sym_LT, - STATE(2912), 1, + ACTIONS(3611), 1, + anon_sym_RPAREN, + ACTIONS(3613), 1, + anon_sym_EQ_GT, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2808), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2799), 19, + 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, @@ -228048,14 +235770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -228084,26 +235804,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [40493] = 10, + [43755] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3735), 1, + ACTIONS(3818), 1, + anon_sym_AMP_AMP, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3769), 1, - anon_sym_LT, - STATE(2253), 1, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, + anon_sym_as3, + ACTIONS(3848), 1, + anon_sym_QMARKas, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3741), 2, + 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(3316), 19, + 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), 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, + 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, + [43852] = 7, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -228115,16 +235908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as3, - ACTIONS(3312), 26, - anon_sym_as2, - anon_sym_EQ_GT, + 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, @@ -228146,82 +235937,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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [40568] = 31, + [43921] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1729), 1, anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5093), 1, + STATE(5222), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -228235,79 +236028,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40685] = 31, + [44038] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1783), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4448), 1, - aux_sym_list_expression_repeat1, - STATE(5283), 1, + STATE(5044), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -228321,80 +236114,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40802] = 32, + [44155] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3707), 1, - anon_sym_EQ, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, - anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, - anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3794), 1, - anon_sym_as2, - STATE(2253), 1, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - STATE(5952), 1, - sym_await_modifier, - ACTIONS(3703), 2, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3804), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + 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, @@ -228408,79 +236191,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40921] = 31, + anon_sym_await, + [44256] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + 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(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, - ACTIONS(3353), 1, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3796), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4378), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3486), 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, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 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_await, + [44347] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3607), 1, + anon_sym_RPAREN, + ACTIONS(3609), 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(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -228494,79 +236323,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41038] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [44418] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3846), 1, + anon_sym_as3, + ACTIONS(3848), 1, + anon_sym_QMARKas, + ACTIONS(3856), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_SEMI, - STATE(1795), 1, + STATE(2511), 1, sym_arguments, - STATE(4556), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3488), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3486), 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, @@ -228580,31 +236395,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41155] = 13, + anon_sym_await, + [44499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3769), 1, + ACTIONS(3116), 1, anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3316), 18, + ACTIONS(2868), 2, + sym_variable, + 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, @@ -228617,15 +236421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3312), 24, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2870), 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, @@ -228647,20 +236452,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [41236] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [44566] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3621), 1, + ACTIONS(3607), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3609), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -228674,14 +236485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -228710,79 +236519,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [41305] = 31, + [44635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5113), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -228796,79 +236577,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41422] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [44706] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3802), 1, + ACTIONS(3893), 1, anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5104), 1, + STATE(5013), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -228882,79 +236668,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41539] = 31, + [44823] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1779), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3804), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3806), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4729), 1, - aux_sym_list_expression_repeat1, - STATE(5283), 1, + STATE(5002), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -228968,79 +236754,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41656] = 31, + [44940] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1593), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5112), 1, + STATE(4514), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229054,22 +236840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41773] = 8, + [45057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_RPAREN, - ACTIONS(3535), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(805), 1, + anon_sym_LBRACE, + STATE(1023), 1, + sym_compound_statement, + 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, @@ -229081,14 +236863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229117,12 +236898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [41844] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [45122] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 21, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -229134,19 +236933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2941), 32, - anon_sym_LPAREN, + ACTIONS(3486), 26, anon_sym_as2, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -229168,107 +236962,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, - [41905] = 31, + [45197] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(5071), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [42022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 1, - anon_sym_LBRACE, - STATE(1238), 1, - sym_compound_statement, - ACTIONS(2593), 20, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -229282,15 +236993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229319,24 +237027,23 @@ 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, - [42087] = 8, + [45266] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3489), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3673), 1, anon_sym_RPAREN, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -229348,14 +237055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229384,78 +237089,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [42158] = 30, + [45335] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(1777), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4983), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3477), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229469,136 +237175,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [42273] = 31, + [45452] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3808), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3895), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4552), 1, + STATE(4882), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [42390] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_RPAREN, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229612,84 +237261,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, - [42459] = 31, + [45569] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3897), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4379), 1, + STATE(5234), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229703,78 +237347,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [42576] = 30, + [45686] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3899), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4525), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3511), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229788,24 +237433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [42691] = 9, + [45803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3769), 1, - anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3316), 20, + ACTIONS(2824), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -229817,17 +237452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3312), 26, + 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, @@ -229849,82 +237484,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, anon_sym_is, anon_sym_QMARKas, - [42764] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [45864] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1795), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3810), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5076), 1, + STATE(4708), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229938,19 +237577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [42881] = 7, + [45981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3467), 1, - anon_sym_RPAREN, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2832), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -229964,15 +237596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2830), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -229997,82 +237630,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, - [42950] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [46042] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3707), 1, - anon_sym_EQ, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3812), 1, - anon_sym_EQ_GT, - STATE(2253), 1, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3148), 2, - anon_sym_as2, - anon_sym_await, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + 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, @@ -230086,22 +237715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [43067] = 8, + anon_sym_await, + [46149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3467), 1, - anon_sym_RPAREN, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3016), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -230113,15 +237735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -230146,99 +237769,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, - [43138] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [46210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4815), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(2995), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [43255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2947), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -230252,15 +237793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2945), 32, + ACTIONS(2997), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -230293,50 +237832,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [43316] = 7, + [46271] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3523), 1, - anon_sym_RPAREN, - ACTIONS(3525), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3134), 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, @@ -230350,19 +237917,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, - [43385] = 5, + [46386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3685), 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, @@ -230376,15 +237945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -230413,24 +237979,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, - [43450] = 8, + [46455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3523), 1, - anon_sym_RPAREN, - ACTIONS(3525), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -230442,15 +237998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 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, @@ -230475,168 +238032,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, - [43521] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [46516] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3814), 1, - anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4678), 1, + STATE(4956), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [43638] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4909), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230650,223 +238123,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [43755] = 31, + [46633] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, + ACTIONS(1649), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5064), 1, + STATE(4975), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [43872] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_QMARK, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3707), 1, - anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, - anon_sym_PIPE, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3723), 1, - anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3816), 1, - anon_sym_as2, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - STATE(5737), 1, - sym_await_modifier, - ACTIONS(3703), 2, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3739), 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, - [43991] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3529), 1, - anon_sym_RPAREN, - ACTIONS(3531), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230880,101 +238209,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, - [44060] = 31, + [46750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(5085), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3020), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [44177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2951), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -230988,15 +238228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2949), 32, + ACTIONS(3022), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231029,10 +238267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [44238] = 3, + [46811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 21, + ACTIONS(3024), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -231046,15 +238286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2965), 32, + ACTIONS(3026), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231087,21 +238325,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [44299] = 7, + [46872] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3627), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3595), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3597), 1, + anon_sym_EQ_GT, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -231113,14 +238354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -231149,10 +238388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [44368] = 3, + [46943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 21, + ACTIONS(3028), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -231166,15 +238407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2984), 32, + ACTIONS(3030), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231207,10 +238446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [44429] = 3, + [47004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 21, + ACTIONS(2987), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -231224,15 +238465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3000), 32, + ACTIONS(2989), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231265,96 +238504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [44490] = 31, + [47065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4654), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(945), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [44607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -231368,15 +238523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2937), 32, + ACTIONS(947), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231409,21 +238562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [44668] = 8, + [47126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3901), 1, + anon_sym_COLON_COLON, + ACTIONS(3903), 1, anon_sym_LT, - ACTIONS(3529), 1, - anon_sym_RPAREN, - ACTIONS(3531), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + STATE(2650), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2886), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -231436,15 +238586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -231469,168 +238620,83 @@ 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, - [44739] = 31, + [47193] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4845), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + 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(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [44856] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3818), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3906), 1, + anon_sym_as2, + STATE(2511), 1, sym_arguments, - STATE(5101), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + STATE(6075), 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231644,79 +238710,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [44973] = 31, + [47312] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3908), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5108), 1, + STATE(4912), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231730,10 +238796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45090] = 3, + [47429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 21, + 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, @@ -231747,18 +238820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2595), 32, + ACTIONS(3110), 30, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -231783,84 +238853,139 @@ 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, - [45151] = 31, + [47494] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1759), 1, anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4830), 1, + STATE(5100), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + 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, + [47611] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + 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(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -231874,79 +238999,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45268] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [47680] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3910), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4889), 1, + STATE(5210), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231960,19 +239090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45385] = 7, + [47797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3192), 1, - anon_sym_RPAREN, - STATE(5105), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -231986,14 +239113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -232022,112 +239148,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [45454] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3625), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + [47862] = 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(2797), 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(3478), 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(3790), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_SEMI, + STATE(1814), 1, + sym_arguments, + STATE(4966), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, + sym_type_arguments, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [45523] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3629), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -232141,84 +239236,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, - [45592] = 31, + [47979] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1751), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3820), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4683), 1, + STATE(4925), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232232,14 +239322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45709] = 5, + [48096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(1679), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(2999), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -232253,16 +239341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(3001), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -232287,49 +239375,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, - [45774] = 3, + [48157] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 21, + ACTIONS(1745), 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, anon_sym_QMARK, + ACTIONS(3446), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(4968), 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, - ACTIONS(2867), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -232343,19 +239466,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, - [45835] = 3, + [48274] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 21, - anon_sym_QMARK, + 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, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -232367,18 +239495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(931), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -232403,17 +239526,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [45896] = 3, + [48345] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 21, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -232425,18 +239558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2775), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -232461,49 +239589,168 @@ 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, - [45957] = 3, + [48416] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 21, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3914), 1, + anon_sym_SEMI, + STATE(1814), 1, + sym_arguments, + STATE(5028), 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, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(931), 32, + 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, + [48533] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + 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(4972), 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, - anon_sym_QMARK_COLON, + 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, @@ -232517,17 +239764,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_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [46018] = 3, + [48650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 21, + ACTIONS(2944), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -232541,15 +239783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(931), 32, + ACTIONS(2946), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -232582,19 +239822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [46079] = 7, + [48711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3612), 1, + ACTIONS(3591), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3593), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -232608,14 +239850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -232644,10 +239884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [46148] = 3, + [48780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 21, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -232661,15 +239903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2785), 32, + ACTIONS(2845), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -232702,12 +239942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [46209] = 3, + [48841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 21, - anon_sym_QMARK, + ACTIONS(3901), 1, + anon_sym_COLON_COLON, + ACTIONS(3916), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -232719,15 +239966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2996), 32, + ACTIONS(2859), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -232758,82 +240003,44 @@ 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, - [46270] = 32, + [48908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3049), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3701), 1, anon_sym_LT, - ACTIONS(3707), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 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(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3822), 1, + ACTIONS(3051), 32, + anon_sym_LPAREN, anon_sym_as2, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - STATE(5985), 1, - sym_await_modifier, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3727), 2, + 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(3729), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3739), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232847,10 +240054,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46389] = 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, + [48969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 21, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -232864,18 +240089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2992), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -232900,84 +240120,52 @@ 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, - [46450] = 31, + [49038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4539), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_STAR_STAR, + ACTIONS(3110), 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, @@ -232991,12 +240179,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46567] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [49105] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 21, - anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3919), 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(3521), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -233008,19 +240217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2977), 32, - anon_sym_LPAREN, + ACTIONS(3523), 26, anon_sym_as2, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233042,26 +240246,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, - [46628] = 7, + [49180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3633), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(863), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -233075,14 +240272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -233111,79 +240307,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [46697] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [49245] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(1709), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4988), 1, + STATE(5166), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233197,17 +240395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46814] = 6, + [49362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_COLON_COLON, - ACTIONS(3828), 1, - anon_sym_LT, - STATE(2592), 1, - sym_type_arguments, - ACTIONS(2810), 20, + ACTIONS(3012), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -233219,15 +240414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2808), 30, + ACTIONS(3014), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -233258,78 +240451,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [46881] = 30, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [49423] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, + ACTIONS(3842), 1, + anon_sym_await, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3922), 1, + anon_sym_as2, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3703), 2, + STATE(5856), 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(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3102), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233343,100 +240540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46996] = 31, + [49542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4872), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3092), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [47113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(4838), 1, - sym_compound_statement, - ACTIONS(2593), 20, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -233450,16 +240559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + 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, @@ -233484,84 +240593,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, - [47178] = 31, + [49603] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3831), 1, + ACTIONS(3924), 1, anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4853), 1, + STATE(5191), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233575,10 +240684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [47295] = 3, + [49720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 21, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(847), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -233592,18 +240707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2957), 32, + ACTIONS(2651), 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, @@ -233628,84 +240739,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, - [47356] = 31, + [49785] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3833), 1, + ACTIONS(3926), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4679), 1, + STATE(4805), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233719,80 +240830,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [47473] = 32, + [49902] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3707), 1, + 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, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3835), 1, - anon_sym_as2, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - STATE(5725), 1, - sym_await_modifier, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3733), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + 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, @@ -233806,10 +240888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [47592] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [49973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 21, + ACTIONS(2824), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -233823,18 +240912,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(931), 32, + ACTIONS(2822), 33, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -233859,24 +240948,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [47653] = 7, + [50034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3631), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(4726), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -233890,14 +240974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -233926,50 +241009,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [47722] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3564), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + [50099] = 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 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, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -233983,17 +241097,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, - [47791] = 3, + [50216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 21, - anon_sym_QMARK, + ACTIONS(2872), 1, anon_sym_LT, + ACTIONS(3482), 1, + anon_sym_RPAREN, + ACTIONS(3484), 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, anon_sym_PLUS, anon_sym_DASH, @@ -234005,18 +241126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2785), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -234041,15 +241157,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_QMARK_DASH_GT, - anon_sym_DASH_GT, - [47852] = 3, + [50287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 21, + ACTIONS(2816), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -234063,15 +241179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2764), 32, + ACTIONS(2814), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -234104,19 +241218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [47913] = 7, + [50348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3607), 1, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3340), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + STATE(5239), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -234130,14 +241246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -234166,10 +241280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [47982] = 3, + [50417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 21, + ACTIONS(2972), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -234183,15 +241299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2863), 32, + ACTIONS(2974), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -234224,96 +241338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [48043] = 31, + [50478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4891), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3096), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [48160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -234327,15 +241357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2953), 32, + ACTIONS(3098), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -234368,111 +241396,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [48221] = 7, + [50539] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3537), 1, - anon_sym_RPAREN, - ACTIONS(3539), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [48290] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_COLON_COLON, - ACTIONS(3837), 1, - anon_sym_LT, - STATE(2568), 1, - sym_type_arguments, - ACTIONS(2828), 20, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3516), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3806), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2826), 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(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234486,49 +241481,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, - [48357] = 3, + [50654] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 21, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - 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_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, - anon_sym_QMARK_COLON, + 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, @@ -234542,86 +241567,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, - [48418] = 31, + [50771] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3934), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4422), 1, + STATE(4970), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234635,19 +241653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48535] = 7, + [50888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(4858), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3061), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -234661,15 +241672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3063), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -234694,15 +241706,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, - [48604] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [50949] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 21, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -234714,18 +241742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2922), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -234750,84 +241772,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, - [48665] = 31, + [51022] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3840), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3936), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4492), 1, + STATE(5236), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234841,79 +241861,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48782] = 31, + [51139] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1683), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3938), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4635), 1, + STATE(4832), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234927,79 +241947,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48899] = 31, + [51256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2976), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3842), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4464), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 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(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, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [51317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_STAR_STAR, + 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, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235013,79 +242056,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49016] = 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, + [51378] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1611), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3844), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4902), 1, + STATE(5008), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235099,141 +242149,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49133] = 7, + [51495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(2663), 1, + anon_sym_BSLASH, + STATE(2221), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 9, + sym_variable, + anon_sym_COLON_COLON, anon_sym_COMMA, - ACTIONS(3270), 1, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(4601), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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, - [49202] = 31, + anon_sym_extends, + anon_sym_implements, + [51560] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3846), 1, + ACTIONS(3940), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4797), 1, + STATE(4980), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235247,13 +242295,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49319] = 3, + [51677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 21, + ACTIONS(2859), 1, + anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_GT, + ACTIONS(3942), 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, @@ -235264,15 +242319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2910), 32, + ACTIONS(3110), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -235303,12 +242356,12 @@ 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, - [49380] = 3, + [51744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 21, + ACTIONS(2857), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -235322,15 +242375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2826), 32, + ACTIONS(2859), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -235363,79 +242414,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [49441] = 31, + [51805] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(1581), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4952), 1, + STATE(5226), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235449,44 +242500,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49558] = 3, + [51922] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 21, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(2918), 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(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, - anon_sym_QMARK_COLON, + 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_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, @@ -235500,26 +242585,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_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [49619] = 7, + [52037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3640), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2968), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -235533,15 +242604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2970), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -235566,82 +242638,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, - [49688] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [52098] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(3944), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4398), 1, + STATE(4969), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235655,79 +242729,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49805] = 31, + [52215] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4749), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, anon_sym_as3, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235741,49 +242814,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49922] = 6, + [52330] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(2799), 19, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(2797), 30, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -235797,85 +242900,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, - [49989] = 32, + [52447] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3743), 1, - anon_sym_await, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3852), 1, - anon_sym_as2, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3948), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4769), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - STATE(5665), 1, - sym_await_modifier, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235889,10 +242986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [50108] = 3, + [52564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 21, + ACTIONS(3057), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -235906,15 +243005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2902), 32, + ACTIONS(3059), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -235947,181 +243044,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [50169] = 5, + [52625] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - STATE(1641), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(1671), 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(2595), 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, + ACTIONS(3478), 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(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, + sym_arguments, + STATE(4918), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, + sym_type_arguments, + ACTIONS(3434), 2, 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, - [50234] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3438), 2, anon_sym_as3, - ACTIONS(3749), 1, anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3731), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 10, - anon_sym_QMARK, + ACTIONS(3448), 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(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - ACTIONS(3331), 24, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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, - [50321] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3519), 1, - anon_sym_RPAREN, - ACTIONS(3521), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236135,84 +243130,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, - [50390] = 31, + [52742] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(1667), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5110), 1, + STATE(4758), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236226,61 +243216,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [50507] = 14, + [52859] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(1685), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3854), 1, - anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 15, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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(4990), 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, - anon_sym_DOT, - ACTIONS(3331), 24, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -236294,20 +243302,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [50590] = 7, + [52976] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3294), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3723), 1, anon_sym_RPAREN, - STATE(4994), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -236321,14 +243330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -236357,164 +243364,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [50659] = 30, + [53045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, + 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, anon_sym_QMARK, - ACTIONS(3701), 1, anon_sym_LT, - ACTIONS(3707), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3262), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3733), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 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, - [50774] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, + anon_sym_STAR_STAR, + ACTIONS(2870), 28, anon_sym_LPAREN, - ACTIONS(3321), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3857), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4991), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236528,14 +243421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [50891] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [53114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - STATE(929), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(3045), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -236549,16 +243445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + 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, @@ -236583,24 +243479,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, - [50956] = 7, + [53175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3413), 1, - anon_sym_RPAREN, - ACTIONS(3415), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(945), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -236614,15 +243503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(947), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -236647,26 +243537,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, - [51025] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [53236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2868), 1, + anon_sym_COMMA, + ACTIONS(2875), 1, + anon_sym_GT, + ACTIONS(2937), 1, anon_sym_LT, - ACTIONS(3519), 1, - anon_sym_RPAREN, - ACTIONS(3521), 1, - anon_sym_EQ_GT, - STATE(1898), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -236677,15 +243567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -236710,253 +243601,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, - [51096] = 31, + [53305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4491), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3128), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [51213] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, anon_sym_QMARK, - ACTIONS(3701), 1, anon_sym_LT, - ACTIONS(3707), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3331), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3733), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 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, - [51328] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2870), 30, anon_sym_LPAREN, - ACTIONS(3321), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4933), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236970,10 +243658,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51445] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [53368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3561), 1, + anon_sym_RPAREN, + ACTIONS(3563), 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, @@ -236987,18 +243691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2914), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237023,24 +243722,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [51506] = 7, + [53437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2897), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2799), 19, + 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, + 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, @@ -237051,18 +243753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237087,82 +243784,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, - [51575] = 31, + [53506] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3950), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4864), 1, + STATE(5221), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237176,75 +243873,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51692] = 28, + [53623] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - anon_sym_EQ, - ACTIONS(3695), 1, + ACTIONS(1587), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3713), 1, + ACTIONS(3452), 1, + anon_sym_EQ, + ACTIONS(3454), 1, + anon_sym_PIPE_GT, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(5218), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 17, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237258,79 +243959,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, - [51803] = 30, + [53740] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3952), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4996), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3106), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237344,73 +244045,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51918] = 26, + [53857] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3701), 1, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3709), 1, + ACTIONS(3808), 1, + anon_sym_EQ, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3713), 1, + ACTIONS(3812), 1, + anon_sym_PIPE_GT, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3745), 1, + ACTIONS(3836), 1, + anon_sym_QMARK_COLON, + ACTIONS(3842), 1, + anon_sym_await, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3954), 1, + anon_sym_as2, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 18, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237424,69 +244132,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [52025] = 22, + [53976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, + ACTIONS(945), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3331), 19, + 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(947), 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, @@ -237501,80 +244183,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, - [52124] = 31, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [54037] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(1613), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4985), 1, + STATE(4987), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237588,87 +244276,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52241] = 20, + [54154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3701), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, + ACTIONS(3561), 1, + anon_sym_RPAREN, + ACTIONS(3563), 1, + anon_sym_EQ_GT, + STATE(1984), 1, sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3331), 20, - 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, - 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, - [52336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3034), 21, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -237680,18 +244305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3032), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237716,84 +244336,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, - [52397] = 31, + [54225] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3956), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4982), 1, + STATE(4561), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237807,78 +244425,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52514] = 30, + [54342] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3958), 1, + anon_sym_COMMA, + ACTIONS(3960), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(5016), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237892,71 +244511,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52629] = 24, + [54459] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(1543), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3715), 1, + 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(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3721), 1, + ACTIONS(3462), 1, + anon_sym_PIPE, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4763), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 4, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - ACTIONS(3331), 18, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237970,69 +244597,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, - [52732] = 21, + [54576] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(1545), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + 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(3735), 1, + 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(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4947), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3331), 19, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238046,71 +244683,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, - [52829] = 23, + [54693] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(1537), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3715), 1, + 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(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3721), 1, + ACTIONS(3462), 1, + anon_sym_PIPE, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3735), 1, + ACTIONS(3466), 1, + anon_sym_AMP, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4944), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 5, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3331), 18, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238124,22 +244769,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, - [52930] = 7, + [54810] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3533), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3554), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -238151,14 +244798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -238187,19 +244832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [52999] = 7, + [54881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3566), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2824), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -238213,15 +244851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2822), 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, @@ -238246,82 +244887,83 @@ 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, - [53068] = 31, + [54942] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4977), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + 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(3337), 2, + ACTIONS(3962), 1, + anon_sym_as2, + STATE(2511), 1, + sym_arguments, + STATE(5752), 1, + sym_type_arguments, + STATE(5966), 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238335,22 +244977,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53185] = 8, + [55061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3413), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3554), 1, anon_sym_RPAREN, - ACTIONS(3415), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -238362,14 +245005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -238398,65 +245039,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [53256] = 18, + [55130] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(1663), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + 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(5422), 1, + STATE(5000), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3729), 2, + 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(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3333), 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(3331), 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_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238470,15 +245125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [53347] = 5, + [55247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(1419), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2878), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(3552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -238492,15 +245152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -238529,81 +245186,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, - [53412] = 31, + [55314] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(1747), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4497), 1, + STATE(5031), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238617,41 +245272,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53529] = 15, + [55431] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3854), 1, + ACTIONS(3964), 1, anon_sym_LT, - STATE(2253), 1, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3333), 12, + ACTIONS(3547), 20, + 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, @@ -238660,9 +245300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3331), 24, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3510), 28, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, @@ -238686,80 +245330,84 @@ 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, - [53614] = 31, + anon_sym_is, + anon_sym_QMARKas, + [55502] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3967), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4973), 1, + STATE(5240), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238773,32 +245421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53731] = 13, + [55619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - ACTIONS(3854), 1, - anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3333), 18, + ACTIONS(2960), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -238810,15 +245440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 24, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2962), 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, @@ -238840,45 +245472,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, - [53812] = 3, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [55680] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 21, + ACTIONS(1541), 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(5232), 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, - ACTIONS(3013), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -238892,62 +245565,78 @@ 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, - [53873] = 10, + [55797] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3854), 1, - anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3333), 19, + ACTIONS(3800), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as3, - ACTIONS(3331), 26, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, + 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, @@ -238961,19 +245650,23 @@ 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, - [53948] = 5, + [55912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(4742), 1, - sym_compound_statement, - ACTIONS(2593), 20, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -238985,15 +245678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -239022,53 +245712,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, - [54013] = 8, + [55981] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, ACTIONS(3436), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_SEMI, + STATE(1814), 1, + sym_arguments, + STATE(5209), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -239082,78 +245798,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, - [54084] = 26, + [56098] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3713), 1, + 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(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3971), 1, + anon_sym_COMMA, + ACTIONS(3973), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(5059), 1, + aux_sym_list_expression_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3333), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3331), 18, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239167,80 +245884,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [54191] = 31, + [56215] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4992), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, anon_sym_as3, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 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, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239254,10 +245969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54308] = 3, + [56330] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 21, + ACTIONS(863), 1, + anon_sym_LBRACE, + STATE(1288), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -239271,18 +245992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2906), 32, + ACTIONS(2651), 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, @@ -239307,84 +246024,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [54369] = 31, + [56395] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3719), 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, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4597), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -239398,79 +246086,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54486] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [56464] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4600), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, anon_sym_as3, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239484,21 +246176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54603] = 7, + [56579] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3471), 1, - anon_sym_RPAREN, - ACTIONS(3473), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + 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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -239510,15 +246207,68 @@ 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), 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, + [56652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 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, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3071), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -239543,46 +246293,77 @@ 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, - [54672] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [56713] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 21, - anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_LBRACK, + 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(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(3492), 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_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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2877), 32, - anon_sym_LPAREN, + ACTIONS(3490), 18, 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, @@ -239597,29 +246378,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, - [54733] = 8, + [56820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3485), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(3487), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -239631,14 +246407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -239667,102 +246441,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [54804] = 3, + [56889] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 21, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(2881), 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(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, - 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(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(3382), 3, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [54865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2887), 21, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3806), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2885), 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(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239776,17 +246526,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_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [54926] = 3, + [57004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 21, + ACTIONS(2828), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -239800,15 +246545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2889), 32, + ACTIONS(2826), 32, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -239839,12 +246584,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, - [54987] = 3, + [57065] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 21, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -239858,18 +246612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2893), 32, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -239894,83 +246643,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, - [55048] = 30, + [57134] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3709), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3747), 1, + ACTIONS(3846), 1, anon_sym_as3, - ACTIONS(3749), 1, + ACTIONS(3848), 1, anon_sym_QMARKas, - STATE(2253), 1, + STATE(2511), 1, sym_arguments, - STATE(5422), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3703), 2, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3804), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3725), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3078), 3, + ACTIONS(3150), 3, anon_sym_as2, anon_sym_EQ_GT, anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239984,79 +246731,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55163] = 31, + [57249] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4431), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, anon_sym_as3, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3386), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240070,21 +246816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55280] = 7, + [57364] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3533), 1, anon_sym_RPAREN, - ACTIONS(3543), 1, + ACTIONS(3535), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -240096,14 +246845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -240132,22 +246879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [55349] = 8, + [57435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3541), 1, - anon_sym_RPAREN, - ACTIONS(3543), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2991), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -240159,15 +246898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -240192,22 +246932,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, - [55420] = 7, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [57496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3485), 1, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3727), 1, anon_sym_RPAREN, - ACTIONS(3487), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -240221,14 +246965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -240257,79 +246999,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [55489] = 31, + [57565] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1821), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5011), 1, + STATE(4741), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240343,78 +247085,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55606] = 30, + [57682] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3701), 1, + ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3707), 1, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3713), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3721), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3723), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3735), 1, + ACTIONS(3476), 1, anon_sym_STAR_STAR, - ACTIONS(3737), 1, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(4646), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3703), 2, + 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(3725), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3176), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3733), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240428,79 +247171,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55721] = 31, + [57799] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(1553), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5061), 1, + STATE(4960), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240514,22 +247257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55838] = 8, + [57916] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3471), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3721), 1, anon_sym_RPAREN, - ACTIONS(3473), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -240541,14 +247285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -240577,26 +247319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [55909] = 10, + [57985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3449), 19, + 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, @@ -240608,16 +247338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as3, - ACTIONS(3447), 26, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2826), 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, @@ -240639,160 +247372,50 @@ 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, - [55984] = 30, + [58046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(321), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3701), 1, anon_sym_LT, - ACTIONS(3707), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3124), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3733), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 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, - [56099] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3701), 1, - anon_sym_LT, - ACTIONS(3709), 1, anon_sym_LBRACK, - ACTIONS(3713), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, anon_sym_AMP_AMP, - ACTIONS(3719), 1, - anon_sym_PIPE, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3723), 1, - anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3462), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3727), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3733), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3460), 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, @@ -240807,11 +247430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [56206] = 3, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 21, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -240825,20 +247460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2771), 32, - anon_sym_BSLASH, - anon_sym_COLON_COLON, + ACTIONS(2651), 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, @@ -240863,27 +247492,114 @@ 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, - [56267] = 9, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [58176] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3599), 1, - anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - STATE(2596), 1, + 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(3977), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5381), 1, + STATE(4920), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, + 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, + [58293] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3725), 1, + anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -240895,14 +247611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -240930,79 +247645,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [56340] = 31, + [58362] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1625), 1, + ACTIONS(1645), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4391), 1, + STATE(4739), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241016,19 +247731,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56457] = 7, + [58479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3436), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, + ACTIONS(3104), 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(3106), 32, + anon_sym_LPAREN, + anon_sym_as2, anon_sym_EQ_GT, - ACTIONS(2804), 2, + 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, - ACTIONS(2799), 20, + [58540] = 5, + 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, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -241042,14 +247812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -241078,79 +247847,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [56526] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [58605] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3872), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3979), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(4954), 1, + STATE(4793), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241164,79 +247935,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56643] = 31, + [58722] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1565), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5049), 1, + STATE(5213), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241250,10 +248021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56760] = 3, + [58839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 21, + ACTIONS(3065), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -241267,15 +248040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2988), 32, + ACTIONS(3067), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -241308,14 +248079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [56821] = 5, + [58900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(945), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -241329,16 +248098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(947), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -241363,84 +248132,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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [56886] = 31, + [58961] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3729), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + 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(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4608), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -241454,19 +248194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57003] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [59030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3515), 1, - anon_sym_RPAREN, - ACTIONS(3517), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2839), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -241480,15 +248218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2837), 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, @@ -241513,82 +248254,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, - [57072] = 31, + [59091] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1601), 1, + ACTIONS(1807), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4423), 1, + STATE(4722), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241602,16 +248343,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57189] = 5, + [59208] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_compound_statement, - ACTIONS(2593), 20, - anon_sym_QMARK, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -241623,15 +248371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -241660,81 +248405,50 @@ 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, - [57254] = 31, + [59277] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3874), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4788), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -241748,79 +248462,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57371] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [59346] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(4900), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -241834,79 +248524,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57488] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [59415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1653), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3733), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + 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(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4949), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + 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, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [59484] = 7, + 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, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2866), 20, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -241920,19 +248648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57605] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [59553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3605), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3100), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -241946,15 +248672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3102), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -241979,13 +248706,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, - [57674] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [59614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 21, + ACTIONS(3084), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -241999,15 +248730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2961), 32, + ACTIONS(3086), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -242040,79 +248769,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [57735] = 31, + [59675] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + ACTIONS(3981), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(4906), 1, + STATE(5171), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242126,21 +248855,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57852] = 7, + [59792] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3603), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, + ACTIONS(3796), 1, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3547), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -242152,16 +248888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_as3, + ACTIONS(3510), 26, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -242183,24 +248917,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_as3, anon_sym_QMARKas, - [57921] = 7, + [59867] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3440), 1, + ACTIONS(3506), 1, anon_sym_RPAREN, - ACTIONS(3442), 1, + ACTIONS(3508), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -242214,14 +248948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -242250,46 +248982,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [57990] = 5, + [59936] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym_compound_statement, - ACTIONS(2593), 20, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2595), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -242303,28 +249067,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, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [58055] = 8, + [60051] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3440), 1, + ACTIONS(3512), 1, anon_sym_RPAREN, - ACTIONS(3442), 1, + ACTIONS(3514), 1, anon_sym_EQ_GT, - STATE(1898), 1, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -242337,14 +249096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -242373,79 +249130,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [58126] = 31, + [60122] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, + ACTIONS(1579), 1, anon_sym_RPAREN, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4509), 1, + STATE(4681), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242459,79 +249216,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58243] = 31, + [60239] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3878), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4979), 1, + STATE(5206), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242545,78 +249302,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58360] = 30, + [60356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(2956), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3701), 1, anon_sym_LT, - ACTIONS(3707), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 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(2958), 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, - ACTIONS(3729), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 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(3493), 3, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_await, - ACTIONS(3705), 3, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [60417] = 8, + 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, + 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(3733), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + 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, @@ -242630,79 +249418,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58475] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [60488] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, + ACTIONS(3834), 1, anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3844), 1, anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3846), 1, + anon_sym_as3, + ACTIONS(3848), 1, + anon_sym_QMARKas, + ACTIONS(3964), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3880), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(2511), 1, sym_arguments, - STATE(4912), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5752), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3547), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3510), 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, @@ -242716,79 +249490,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58592] = 31, + anon_sym_await, + [60569] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(1597), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4792), 1, + STATE(5168), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242802,22 +249577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58709] = 8, + [60686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3515), 1, - anon_sym_RPAREN, - ACTIONS(3517), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3088), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -242829,15 +249596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3090), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -242862,82 +249630,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, - [58780] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [60747] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1539), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(4942), 1, + STATE(4712), 1, aux_sym_echo_statement_repeat1, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242951,21 +249721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58897] = 7, + [60864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3623), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3494), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3496), 1, + anon_sym_EQ_GT, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -242977,14 +249750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -243013,78 +249784,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [58966] = 30, + [60935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3699), 1, + ACTIONS(2933), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3701), 1, anon_sym_LT, - ACTIONS(3707), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3709), 1, - anon_sym_LBRACK, - ACTIONS(3711), 1, - anon_sym_PIPE_GT, - ACTIONS(3713), 1, anon_sym_QMARK_QMARK, - ACTIONS(3715), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3717), 1, - anon_sym_AMP_AMP, - ACTIONS(3719), 1, anon_sym_PIPE, - ACTIONS(3721), 1, anon_sym_CARET, - ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3735), 1, - anon_sym_STAR_STAR, - ACTIONS(3737), 1, - anon_sym_QMARK_COLON, - ACTIONS(3745), 1, - anon_sym_is, - ACTIONS(3747), 1, - anon_sym_as3, - ACTIONS(3749), 1, - anon_sym_QMARKas, - STATE(2253), 1, - sym_arguments, - STATE(5422), 1, - sym_type_arguments, - ACTIONS(3703), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3725), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3727), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3729), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3731), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3246), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3705), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3733), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3739), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2935), 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, @@ -243098,79 +249835,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59081] = 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, + [60996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3076), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4794), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3078), 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, @@ -243184,79 +249893,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59198] = 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, + [61057] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3802), 1, + anon_sym_LT, + ACTIONS(3808), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3816), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3834), 1, + anon_sym_STAR_STAR, + ACTIONS(3836), 1, anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5122), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3844), 1, + anon_sym_is, + ACTIONS(3846), 1, anon_sym_as3, + ACTIONS(3848), 1, anon_sym_QMARKas, - ACTIONS(3337), 2, + 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(3341), 2, + ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3828), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3830), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, + 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_DOT, - ACTIONS(3349), 3, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243270,10 +249985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59315] = 3, + [61172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 21, + ACTIONS(3080), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -243287,15 +250004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3017), 32, + ACTIONS(3082), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -243328,19 +250043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [59376] = 7, + [61233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(395), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -243354,14 +250066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -243390,165 +250101,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59445] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [61298] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(4951), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 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, - [59562] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_RPAREN, - ACTIONS(3314), 1, + anon_sym_STAR_STAR, + ACTIONS(2870), 28, anon_sym_LPAREN, - ACTIONS(3321), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(1795), 1, - sym_arguments, - STATE(4411), 1, - aux_sym_echo_statement_repeat1, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243562,21 +250160,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59679] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [61367] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(4958), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, + 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(3840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3547), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -243588,16 +250196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_as3, + ACTIONS(3510), 26, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -243619,22 +250226,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_as3, anon_sym_QMARKas, - [59748] = 6, + [61440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(321), 1, + anon_sym_LBRACE, + STATE(1105), 1, + sym_compound_statement, + ACTIONS(2649), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -243648,14 +250252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2651), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -243684,76 +250287,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59814] = 29, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [61505] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5005), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3886), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243767,76 +250375,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59926] = 29, + [61622] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(4483), 1, + aux_sym_echo_statement_repeat1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3888), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243850,109 +250461,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [60038] = 8, + [61739] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3599), 1, - anon_sym_LT, - STATE(1948), 1, - sym_arguments, - STATE(2795), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3800), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, + ACTIONS(3985), 1, + anon_sym_EQ_GT, + STATE(2511), 1, + sym_arguments, + STATE(5752), 1, + sym_type_arguments, + ACTIONS(3306), 2, + anon_sym_as2, + anon_sym_await, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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(3840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [60108] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3806), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3838), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243966,25 +250547,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, - [60172] = 7, + [61856] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3629), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3482), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(3484), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -243996,14 +250575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -244032,10 +250609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60240] = 3, + [61925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 20, + ACTIONS(2832), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -244049,16 +250628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2889), 32, + ACTIONS(2830), 33, sym_variable, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, @@ -244089,48 +250667,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60300] = 6, + [61986] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, + anon_sym_QMARK_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3987), 1, + anon_sym_SEMI, + STATE(1814), 1, + sym_arguments, + STATE(5159), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -244144,111 +250753,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, - [60366] = 3, + [62103] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 21, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - ACTIONS(2779), 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, - anon_sym_AMP_AMP, + 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, - 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, - [60426] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3640), 1, + ACTIONS(3989), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, - anon_sym_QMARK, - anon_sym_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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244262,22 +250836,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, - [60494] = 6, + [62215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3673), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -244291,14 +250862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -244327,19 +250896,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60560] = 7, + [62281] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3603), 1, + ACTIONS(3733), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -244352,14 +250923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -244388,17 +250957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60628] = 6, + [62349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3733), 1, anon_sym_RPAREN, - ACTIONS(3426), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -244412,14 +250983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -244448,17 +251017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60694] = 6, + [62415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3623), 1, + ACTIONS(3482), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3484), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -244472,14 +251043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -244508,19 +251077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60760] = 6, + [62481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_RPAREN, - ACTIONS(3539), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + 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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -244532,15 +251106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -244568,17 +251139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60826] = 6, + [62551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3603), 1, + ACTIONS(3506), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3508), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -244592,14 +251165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -244628,19 +251199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60892] = 6, + [62617] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_RPAREN, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(3696), 1, + anon_sym_LT, + ACTIONS(3712), 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(2799), 20, + 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, @@ -244652,15 +251228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -244688,10 +251261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [60958] = 3, + [62687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 21, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -244705,19 +251287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2775), 31, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -244742,79 +251318,112 @@ 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, - [61018] = 29, + [62753] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + 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, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [62821] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3721), 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(3890), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -244828,76 +251437,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61130] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [62887] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3892), 2, + ACTIONS(3991), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + anon_sym_SEMI, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244911,13 +251525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61242] = 4, + [62999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(3298), 20, + 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, @@ -244931,17 +251551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3296), 30, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -244969,49 +251585,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61304] = 7, + [63065] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3894), 1, - anon_sym_EQ_GT, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + ACTIONS(3993), 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, @@ -245025,81 +251668,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, - [61372] = 29, + [63177] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3897), 2, - anon_sym_SEMI, + ACTIONS(3995), 2, anon_sym_COMMA, - ACTIONS(3339), 3, + anon_sym_RPAREN, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245113,20 +251751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61484] = 7, + [63289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3623), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3731), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -245138,14 +251777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245174,17 +251811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61552] = 6, + [63355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3561), 1, anon_sym_RPAREN, - ACTIONS(3517), 1, + ACTIONS(3563), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -245198,14 +251837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245234,48 +251871,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61618] = 6, + [63421] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, - anon_sym_RPAREN, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, + [63533] = 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, - anon_sym_QMARK_COLON, + ACTIONS(3999), 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, @@ -245289,22 +252037,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, - [61684] = 6, + [63645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3605), 1, + ACTIONS(3729), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -245318,14 +252063,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245354,76 +252097,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61750] = 29, + [63711] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3899), 2, - anon_sym_SEMI, + ACTIONS(4001), 2, anon_sym_COMMA, - ACTIONS(3339), 3, + anon_sym_RPAREN, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245437,19 +252180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61862] = 7, + [63823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3605), 1, + ACTIONS(3729), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -245462,14 +252207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245498,76 +252241,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61930] = 29, + [63891] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3901), 2, - anon_sym_SEMI, + ACTIONS(4003), 2, anon_sym_COMMA, - ACTIONS(3339), 3, + anon_sym_RPAREN, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245581,76 +252324,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62042] = 29, + [64003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3731), 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + 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, - ACTIONS(3345), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 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, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [64071] = 6, + ACTIONS(3), 1, + sym_comment, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3903), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + 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(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -245664,17 +252440,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62154] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [64137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3569), 1, anon_sym_RPAREN, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2989), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(3296), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -245688,14 +252470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3298), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245724,10 +252504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62220] = 3, + [64201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3725), 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, @@ -245741,19 +252530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2764), 31, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -245778,13 +252561,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, - [62280] = 3, + [64267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 20, + 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, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -245798,19 +252590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2775), 32, - sym_variable, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -245838,76 +252624,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62340] = 29, + [64333] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3905), 2, + ACTIONS(4005), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + anon_sym_SEMI, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245921,10 +252707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62452] = 3, + [64445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 20, + ACTIONS(3942), 1, + anon_sym_LBRACE, + ACTIONS(3108), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -245938,19 +252728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2764), 32, - sym_variable, - anon_sym_COMMA, + anon_sym_as3, + ACTIONS(3110), 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, @@ -245975,79 +252762,52 @@ 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, - [62512] = 29, + [64507] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3725), 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3907), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -246061,76 +252821,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62624] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [64575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3909), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -246144,19 +252881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62736] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [64641] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3719), 1, anon_sym_RPAREN, - ACTIONS(3525), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -246168,14 +252913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246204,19 +252947,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62802] = 6, + [64709] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3621), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3717), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -246228,14 +252974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246264,22 +253008,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62868] = 8, + [64777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_LPAREN, - STATE(2596), 1, - sym_arguments, - STATE(2767), 1, - sym_type_arguments, - ACTIONS(2804), 2, + 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(2799), 19, + 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, @@ -246291,14 +253034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246326,22 +253068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62938] = 8, + [64843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, - anon_sym_LPAREN, - ACTIONS(3599), 1, - anon_sym_LT, - STATE(1948), 1, - sym_arguments, - STATE(5322), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3719), 1, + anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -246353,14 +253094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246388,76 +253128,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63008] = 29, + [64909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3727), 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, - ACTIONS(3353), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3911), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -246471,76 +253183,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63120] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [64975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3723), 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, anon_sym_QMARK, - ACTIONS(3353), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, anon_sym_PIPE, - ACTIONS(3365), 1, anon_sym_CARET, - ACTIONS(3367), 1, anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + 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, @@ -246554,17 +253244,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63232] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [65043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3723), 1, anon_sym_RPAREN, - ACTIONS(3473), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -246578,14 +253275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246614,22 +253309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63298] = 8, + [65109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_LT, - ACTIONS(3619), 1, - anon_sym_LPAREN, - STATE(2596), 1, - sym_arguments, - STATE(5381), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, @@ -246641,14 +253334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 27, + ACTIONS(2870), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246676,20 +253368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63368] = 7, + [65173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 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, @@ -246701,15 +253387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3063), 32, + sym_variable, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246737,18 +253425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63436] = 5, + [65233] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3727), 1, anon_sym_RPAREN, - ACTIONS(2863), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3298), 20, + 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_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -246760,14 +253452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3296), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246796,17 +253486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63500] = 6, + [65301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3627), 1, + ACTIONS(3565), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3567), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -246820,14 +253512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246856,45 +253546,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63566] = 3, + [65367] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 21, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - ACTIONS(2760), 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, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + ACTIONS(4007), 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, @@ -246908,22 +253629,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, - [63626] = 6, + [65479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_RPAREN, - ACTIONS(3543), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2989), 2, + sym_variable, + anon_sym_DOT_DOT_DOT, + ACTIONS(3296), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -246937,15 +253651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(3298), 30, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246973,20 +253687,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63692] = 7, + [65541] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3627), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3680), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -246998,14 +253713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247034,19 +253747,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63760] = 6, + [65607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_RPAREN, - ACTIONS(3531), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(4009), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -247058,14 +253774,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247094,48 +253808,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63826] = 6, + [65675] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3625), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + ACTIONS(4012), 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, @@ -247149,81 +253891,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, - [63892] = 29, + [65787] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3915), 2, - anon_sym_SEMI, + ACTIONS(4014), 2, anon_sym_COMMA, - ACTIONS(3339), 3, + anon_sym_RPAREN, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247237,76 +253974,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64004] = 29, + [65899] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4016), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, + anon_sym_SEMI, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247320,76 +254057,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64116] = 29, + [66011] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3919), 2, + ACTIONS(4018), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247403,76 +254140,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64228] = 29, + [66123] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3921), 2, - anon_sym_SEMI, + ACTIONS(4020), 2, anon_sym_COMMA, - ACTIONS(3339), 3, + anon_sym_RPAREN, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247486,19 +254223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64340] = 7, + [66235] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -247511,14 +254250,72 @@ 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, + 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, + [66303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3603), 1, + anon_sym_RPAREN, + ACTIONS(3605), 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(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247547,17 +254344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64408] = 6, + [66369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3640), 1, + ACTIONS(3655), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -247571,14 +254370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247607,76 +254404,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64474] = 29, + [66435] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3923), 2, + ACTIONS(4022), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247690,17 +254487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64586] = 6, + [66547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3629), 1, + ACTIONS(3554), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3556), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -247714,14 +254513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247750,48 +254547,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64652] = 6, + [66613] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3612), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + ACTIONS(4024), 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, @@ -247805,25 +254630,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, - [64718] = 7, + [66725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3621), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3061), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -247835,15 +254649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3063), 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, @@ -247868,52 +254684,162 @@ 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, - [64786] = 7, + [66785] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3612), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(3444), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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_DOT, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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_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, - anon_sym_QMARK_COLON, + 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_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247927,24 +254853,105 @@ 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, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [64854] = 6, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3675), 1, anon_sym_RPAREN, - ACTIONS(3497), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -247956,14 +254963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247992,131 +254997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64920] = 5, + [67189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, - anon_sym_LT, - STATE(2592), 1, - sym_type_arguments, - ACTIONS(2810), 20, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2808), 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, - [64984] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3633), 1, + ACTIONS(3675), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, - 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, + ACTIONS(2866), 20, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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, - [65050] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_COLON_COLON, - ACTIONS(2861), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -248130,18 +255023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2859), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248166,20 +255054,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, - [65112] = 6, + [67255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, + ACTIONS(3611), 1, anon_sym_RPAREN, - ACTIONS(3487), 1, + ACTIONS(3613), 1, anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -248193,14 +255083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248229,19 +255117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65178] = 7, + [67321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2872), 1, anon_sym_LT, - ACTIONS(3564), 1, + ACTIONS(3680), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2866), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -248254,14 +255144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248290,17 +255178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65246] = 6, + [67389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3564), 1, + ACTIONS(3607), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3609), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -248314,14 +255204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248350,20 +255238,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65312] = 7, + [67455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3631), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3708), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -248375,14 +255264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248411,10 +255298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65380] = 3, + [67521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 20, + ACTIONS(3901), 1, + anon_sym_COLON_COLON, + ACTIONS(2915), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -248428,19 +255319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2779), 32, - sym_variable, - anon_sym_COMMA, + anon_sym_as3, + ACTIONS(2917), 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, @@ -248465,22 +255353,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, - [65440] = 6, + [67583] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3631), 1, + ACTIONS(2872), 1, + anon_sym_LT, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + STATE(1984), 1, + sym_type_arguments, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -248492,14 +255383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248528,100 +255417,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65506] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3925), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [65618] = 6, + [67651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3607), 1, + ACTIONS(3595), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3597), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -248635,14 +255443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248671,19 +255477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65684] = 7, + [67717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3903), 1, anon_sym_LT, - ACTIONS(3607), 1, - anon_sym_RPAREN, - STATE(1898), 1, + STATE(2650), 1, sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(2886), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, @@ -248696,15 +255499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -248729,17 +255533,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, - [65752] = 5, + [67781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(2872), 1, anon_sym_LT, - STATE(2568), 1, + ACTIONS(3706), 1, + anon_sym_RPAREN, + STATE(1984), 1, sym_type_arguments, - ACTIONS(2828), 20, + 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, @@ -248752,18 +255563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2826), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248788,15 +255594,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, - [65816] = 4, + [67849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2851), 21, + ACTIONS(3685), 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, @@ -248810,18 +255623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2849), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248846,13 +255654,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, - [65878] = 3, + [67915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 21, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -248866,19 +255683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2889), 31, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248903,19 +255714,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, - [65938] = 5, + [67981] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, - anon_sym_COMMA, - ACTIONS(3457), 1, - anon_sym_GT, - ACTIONS(3298), 20, - anon_sym_QMARK, + ACTIONS(2872), 1, anon_sym_LT, + ACTIONS(3673), 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, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -248926,18 +255744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3296), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248962,105 +255775,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, - [66002] = 29, + [68049] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3694), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, + ACTIONS(3696), 1, anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(2727), 1, sym_arguments, - STATE(5283), 1, + STATE(5743), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3927), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [66114] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - anon_sym_RPAREN, - ACTIONS(3415), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -249072,15 +255807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249108,20 +255840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66180] = 6, + [68119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3566), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, + anon_sym_GT, + ACTIONS(3296), 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, @@ -249132,15 +255862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3298), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249165,22 +255896,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, - [66246] = 6, + [68183] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_RPAREN, - ACTIONS(3521), 1, - anon_sym_EQ_GT, - ACTIONS(2804), 2, + 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, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + 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, @@ -249192,15 +255928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, + ACTIONS(2870), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249228,159 +255961,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66312] = 29, + [68253] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, + ACTIONS(3436), 1, anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3446), 1, + anon_sym_LT, + ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3355), 1, + ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3357), 1, + ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, + ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, + ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3363), 1, + ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3365), 1, + ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3367), 1, + ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3369), 1, + ACTIONS(3476), 1, + anon_sym_STAR_STAR, + ACTIONS(3478), 1, anon_sym_QMARK_COLON, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3337), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3341), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, + ACTIONS(3440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3929), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3339), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3349), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3371), 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, - [66424] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3323), 1, - anon_sym_STAR_STAR, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3335), 1, - anon_sym_LT, - ACTIONS(3351), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_EQ, - ACTIONS(3355), 1, - anon_sym_PIPE_GT, - ACTIONS(3357), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP_AMP, - ACTIONS(3363), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_CARET, - ACTIONS(3367), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3337), 2, + ACTIONS(3448), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3341), 2, + ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3343), 2, + ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3345), 2, + ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3931), 2, + ACTIONS(4032), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3339), 3, + ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3349), 3, + ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3371), 13, + ACTIONS(3480), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249394,20 +256044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [66536] = 7, + [68365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LT, - ACTIONS(3566), 1, - anon_sym_RPAREN, - STATE(1898), 1, - sym_type_arguments, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 19, + ACTIONS(3901), 1, + anon_sym_COLON_COLON, + ACTIONS(2905), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249419,15 +256065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2907), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249452,19 +256099,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, - [66604] = 5, + [68427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_GT, - ACTIONS(3216), 20, + ACTIONS(2911), 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, @@ -249475,15 +256121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3214), 30, + ACTIONS(2909), 31, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -249514,12 +256159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [66668] = 3, + [68487] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 21, - anon_sym_QMARK, + ACTIONS(3916), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2857), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249531,16 +256181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2853), 31, - anon_sym_COLON_COLON, + ACTIONS(2859), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -249571,15 +256218,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [66728] = 4, + [68551] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(3216), 20, - anon_sym_QMARK, + 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, + anon_sym_QMARK, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249591,17 +256245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3214), 30, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249629,10 +256279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66790] = 3, + [68619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 20, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -249646,19 +256305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2760), 32, - sym_variable, - anon_sym_COMMA, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249686,20 +256339,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66850] = 7, + [68685] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + 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(3642), 1, - anon_sym_RPAREN, - STATE(1898), 1, + 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(2804), 2, + 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(4034), 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, + [68797] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3706), 1, + anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -249711,14 +256448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -249747,17 +256482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66918] = 6, + [68863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - ACTIONS(3642), 1, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -249771,14 +256506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -249807,20 +256540,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66984] = 7, + [68926] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, + anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3562), 1, - anon_sym_RPAREN, - STATE(1898), 1, + 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(4036), 1, + anon_sym_COLON, + STATE(1814), 1, + sym_arguments, + STATE(5596), 1, sym_type_arguments, - ACTIONS(2804), 2, + 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, + [69037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 1, + anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 19, + 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, @@ -249832,14 +256646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -249868,16 +256680,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67052] = 5, + [69100] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, - anon_sym_RPAREN, - ACTIONS(2826), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3216), 20, + 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(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_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, + [69211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3045), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -249891,15 +256781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3214), 28, + anon_sym_as3, + ACTIONS(3047), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249924,78 +256815,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, - [67116] = 29, + [69270] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3933), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4040), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250009,10 +256900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [67227] = 3, + [69381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 21, + ACTIONS(2940), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -250026,15 +256919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3160), 30, + ACTIONS(2942), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -250065,10 +256956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [67286] = 3, + [69440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 21, + ACTIONS(2964), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -250082,15 +256975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2996), 30, + ACTIONS(2966), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -250121,10 +257012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [67345] = 3, + [69499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 21, + ACTIONS(2929), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -250138,15 +257031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2992), 30, + ACTIONS(2931), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -250177,44 +257068,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [67404] = 3, + [69558] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2977), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250228,80 +257150,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, - [67463] = 29, + [69669] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3935), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4044), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250315,46 +257232,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [67574] = 5, + [69780] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4046), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -250368,49 +257314,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, - [67637] = 3, + [69891] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3090), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250424,15 +257396,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, - [67696] = 3, + [70002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 21, + ACTIONS(3706), 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, @@ -250446,18 +257420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3106), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -250482,47 +257451,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, - [67755] = 3, + [70065] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4050), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3120), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250536,49 +257536,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, - [67814] = 3, + [70176] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4052), 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, - 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250592,80 +257618,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, - [67873] = 29, + [70287] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3937), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4054), 1, + anon_sym_RPAREN, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250679,44 +257700,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [67984] = 3, + [70398] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4056), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2945), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250730,80 +257782,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, - [68043] = 29, + [70509] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3939), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4058), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250817,44 +257864,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [68154] = 3, + [70620] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4060), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3180), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250868,49 +257946,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, - [68213] = 3, + [70731] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4062), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -250924,49 +258028,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, - [68272] = 3, + [70842] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4064), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2953), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -250980,49 +258110,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, - [68331] = 3, + [70953] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4066), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3184), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -251036,15 +258192,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_await, - anon_sym_is, - anon_sym_QMARKas, - [68390] = 3, + [71064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 21, + ACTIONS(3065), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -251058,15 +258211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3262), 30, + ACTIONS(3067), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -251097,10 +258248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [68449] = 3, + [71123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 21, + ACTIONS(3284), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -251114,15 +258267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3194), 30, + ACTIONS(3286), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -251153,10 +258304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [68508] = 3, + [71182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 21, + ACTIONS(2987), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -251170,15 +258323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2929), 30, + ACTIONS(2989), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -251209,10 +258360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [68567] = 3, + [71241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 21, + ACTIONS(2999), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -251226,15 +258379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3282), 30, + ACTIONS(3001), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -251265,75 +258416,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [68626] = 29, + [71300] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3941), 1, - anon_sym_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4068), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251347,10 +258498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [68737] = 3, + [71411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 21, + ACTIONS(3049), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -251364,15 +258517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3238), 30, + ACTIONS(3051), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -251403,10 +258554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [68796] = 3, + [71470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 21, + ACTIONS(3308), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -251420,15 +258573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3258), 30, + ACTIONS(3310), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -251459,178 +258610,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [68855] = 5, + [71529] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4070), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [68918] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3943), 1, - sym_identifier, - ACTIONS(3945), 1, - anon_sym_type, - ACTIONS(3949), 1, - anon_sym_shape, - ACTIONS(3951), 1, - anon_sym_namespace, - ACTIONS(3955), 1, - anon_sym_ctx, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_null, - STATE(4944), 1, - sym__class_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(3947), 5, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - STATE(3463), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3953), 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, - [69017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 21, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3400), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251644,191 +258692,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, - [69076] = 29, + [71640] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3959), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4072), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3411), 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, - [69187] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3398), 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(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [69250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3400), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251842,80 +258774,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, - [69313] = 29, + [71751] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3961), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4074), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251929,75 +258856,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69424] = 29, + [71862] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3963), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4076), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252011,10 +258938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69535] = 3, + [71973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 21, + ACTIONS(3240), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252028,15 +258957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3044), 30, + ACTIONS(3242), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252067,75 +258994,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69594] = 29, + [72032] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3965), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4078), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252149,10 +259076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69705] = 3, + [72143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 21, + ACTIONS(2045), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252166,15 +259095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3040), 30, + ACTIONS(2047), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252205,10 +259132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69764] = 3, + [72202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 21, + ACTIONS(2049), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252222,15 +259151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2933), 30, + ACTIONS(2051), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252261,10 +259188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69823] = 3, + [72261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 21, + ACTIONS(2857), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252278,15 +259207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3132), 30, + ACTIONS(2859), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252317,10 +259244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69882] = 3, + [72320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 21, + ACTIONS(3152), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252334,15 +259263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3286), 30, + ACTIONS(3154), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252373,10 +259300,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69941] = 3, + [72379] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 21, + 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(4080), 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_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, + [72490] = 4, + 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, + 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_EQ, + anon_sym_extends, + anon_sym_implements, + [72551] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3685), 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, @@ -252390,18 +259463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3102), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -252426,13 +259494,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, - [70000] = 3, + [72614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 21, + ACTIONS(3673), 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, @@ -252446,18 +259521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2826), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -252482,13 +259552,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, - [70059] = 3, + [72677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 21, + ACTIONS(3080), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252502,15 +259574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3128), 30, + ACTIONS(3082), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252541,15 +259611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [70118] = 5, + [72736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3680), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252563,14 +259635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252599,75 +259669,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [70181] = 29, + [72799] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3967), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4084), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252681,100 +259751,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70292] = 3, + [72910] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3308), 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(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, - 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(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, + ACTIONS(3438), 2, + anon_sym_as3, anon_sym_QMARKas, - [70351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 21, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3400), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3304), 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252788,49 +259833,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, - [70410] = 3, + [73021] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2885), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -252844,92 +259915,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_await, - anon_sym_is, - anon_sym_QMARKas, - [70469] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3432), 1, - sym_inout_modifier, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(3969), 1, - sym_variable, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(2859), 1, - sym_visibility_modifier, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(6034), 1, - sym_variadic_modifier, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(977), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4502), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [70570] = 3, + [73132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3298), 21, + ACTIONS(3202), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -252943,15 +259934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3296), 30, + ACTIONS(3204), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -252982,92 +259971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [70629] = 29, + [73191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(3971), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3028), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3411), 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, - [70740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253081,15 +259990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2881), 30, + ACTIONS(3030), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253120,157 +260027,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [70799] = 29, + [73250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3232), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(3973), 1, - anon_sym_RBRACE, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 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, - [70910] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3234), 30, anon_sym_LPAREN, - ACTIONS(3321), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(3975), 1, - anon_sym_RBRACE, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -253284,10 +260078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [71021] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [73309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 21, + ACTIONS(3675), 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, @@ -253301,18 +260107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2877), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -253337,13 +260138,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, - [71080] = 3, + [73372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 21, + ACTIONS(3076), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253357,15 +260160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2906), 30, + ACTIONS(3078), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253396,10 +260197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71139] = 3, + [73431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 21, + ACTIONS(3278), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253413,15 +260216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2910), 30, + ACTIONS(3280), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253452,10 +260253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71198] = 3, + [73490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 21, + ACTIONS(3088), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253469,15 +260272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3074), 30, + ACTIONS(3090), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253508,15 +260309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71257] = 5, + [73549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(3852), 1, + anon_sym_RBRACE, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253530,14 +260333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253566,10 +260367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [71320] = 3, + [73612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 21, + ACTIONS(3084), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253583,15 +260386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3136), 30, + ACTIONS(3086), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253622,15 +260423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71379] = 5, + [73671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3655), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253644,14 +260447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253680,10 +260481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [71442] = 3, + [73734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 21, + ACTIONS(3100), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253697,15 +260500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3222), 30, + ACTIONS(3102), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253736,44 +260537,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71501] = 3, + [73793] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4090), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3000), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -253787,15 +260619,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_await, - anon_sym_is, - anon_sym_QMARKas, - [71560] = 3, + [73904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 21, + ACTIONS(3092), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253809,15 +260638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2922), 30, + ACTIONS(3094), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253848,10 +260675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71619] = 3, + [73963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 21, + ACTIONS(3270), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253865,15 +260694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2984), 30, + ACTIONS(3272), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253904,10 +260731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71678] = 3, + [74022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 21, + ACTIONS(3024), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -253921,15 +260750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2965), 30, + ACTIONS(3026), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -253960,66 +260787,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71737] = 3, + [74081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 21, - anon_sym_QMARK, - anon_sym_LT, + 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, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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_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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2949), 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, - [71796] = 3, + anon_sym_extends, + anon_sym_implements, + [74140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 21, + ACTIONS(2944), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254033,15 +260862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3226), 30, + ACTIONS(2946), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254072,10 +260899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71855] = 3, + [74199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 21, + ACTIONS(3288), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254089,15 +260918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3078), 30, + ACTIONS(3290), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254128,75 +260955,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71914] = 29, + [74258] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3977), 1, - anon_sym_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_EQ_GT, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254210,10 +261037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [72025] = 3, + [74369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 21, + ACTIONS(3140), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254227,15 +261056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3242), 30, + ACTIONS(3142), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254266,10 +261093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72084] = 3, + [74428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 21, + ACTIONS(3038), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254283,15 +261112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3140), 30, + ACTIONS(3040), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254322,68 +261149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72143] = 5, + [74487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3979), 1, - anon_sym_BSLASH, - STATE(2623), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2771), 11, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2773), 38, - 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_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, - [72206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 21, + ACTIONS(3012), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254397,15 +261168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2957), 30, + ACTIONS(3014), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254436,92 +261205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72265] = 29, + [74546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(3982), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3721), 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(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3411), 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, - [72376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3072), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254535,18 +261229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3070), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254571,47 +261260,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, - [72435] = 3, + [74609] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 21, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4094), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3230), 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(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, - anon_sym_QMARK_COLON, + 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, @@ -254625,80 +261345,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, - [72494] = 29, + [74720] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3984), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4096), 1, + anon_sym_RBRACE, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254712,15 +261427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [72605] = 5, + [74831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3324), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254734,15 +261446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3326), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254767,13 +261480,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, - [72668] = 3, + [74890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 21, + ACTIONS(3020), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254787,15 +261502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3144), 30, + ACTIONS(3022), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254826,15 +261539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72727] = 5, + [74949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3332), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254848,15 +261558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3334), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254881,13 +261592,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, - [72790] = 3, + [75008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 21, + ACTIONS(3016), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -254901,15 +261614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3066), 30, + ACTIONS(3018), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -254940,35 +261651,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72849] = 3, + [75067] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 21, + 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(4098), 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_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, + [75178] = 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(4100), 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, - anon_sym_LT_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, + [75289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 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, + 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(3086), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254993,13 +261870,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, - [72908] = 3, + [75352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 21, + ACTIONS(2866), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255013,15 +261892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3300), 30, + ACTIONS(2870), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255052,10 +261929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72967] = 3, + [75411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3220), 21, + ACTIONS(3190), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255069,15 +261948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3218), 30, + ACTIONS(3192), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255108,10 +261985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73026] = 3, + [75470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 21, + ACTIONS(2972), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255125,15 +262004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3164), 30, + ACTIONS(2974), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255164,10 +262041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73085] = 3, + [75529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 21, + ACTIONS(3224), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255181,15 +262060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3176), 30, + ACTIONS(3226), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255220,10 +262097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73144] = 3, + [75588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 21, + ACTIONS(2976), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255237,15 +262116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3082), 30, + ACTIONS(2978), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255276,46 +262153,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73203] = 5, + [75647] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -255329,80 +262235,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, - [73266] = 29, + [75758] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3986), 1, - anon_sym_SEMI, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4104), 1, + anon_sym_COLON, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -255416,10 +262317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [73377] = 3, + [75869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 21, + ACTIONS(3725), 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, @@ -255433,18 +262341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3124), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255469,13 +262372,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, - [73436] = 3, + [75932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 21, + ACTIONS(3723), 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, @@ -255489,18 +262399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3098), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255525,13 +262430,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, - [73495] = 3, + [75995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 21, + ACTIONS(3166), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255545,15 +262452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3198), 30, + ACTIONS(3168), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255584,46 +262489,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73554] = 5, + [76054] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -255637,15 +262571,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, - [73617] = 3, + [76165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 21, + ACTIONS(3372), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255659,15 +262590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2969), 30, + ACTIONS(3374), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -255698,75 +262627,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73676] = 29, + [76224] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3988), 1, - anon_sym_RBRACE, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4108), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -255780,75 +262709,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [73787] = 29, + [76335] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3990), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4110), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, + 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(3329), 2, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3377), 2, + 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, + [76446] = 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(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(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -255862,75 +262873,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [73898] = 29, + [76557] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3992), 1, - anon_sym_RBRACK, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4114), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -255944,10 +262955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74009] = 3, + [76668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 21, + ACTIONS(3104), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -255961,15 +262974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3214), 30, + ACTIONS(3106), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256000,10 +263011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74068] = 3, + [76727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 21, + 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, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256017,15 +263035,66 @@ 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, + 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, + [76790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3352), 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(3152), 30, + ACTIONS(3354), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256056,10 +263125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74127] = 3, + [76849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 21, + ACTIONS(3300), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256073,15 +263144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3148), 30, + ACTIONS(3302), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256112,75 +263181,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74186] = 29, + [76908] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3994), 1, - anon_sym_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4116), 1, + anon_sym_RBRACE, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256194,10 +263263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74297] = 3, + [77019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 21, + ACTIONS(3320), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256211,15 +263282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3266), 30, + ACTIONS(3322), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256250,75 +263319,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74356] = 29, + [77078] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3996), 1, - anon_sym_RBRACE, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4118), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256332,10 +263401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74467] = 3, + [77189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 21, + ACTIONS(3170), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256349,15 +263420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3254), 30, + ACTIONS(3172), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256388,15 +263457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74526] = 5, + [77248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3719), 1, anon_sym_RPAREN, - ACTIONS(2804), 2, + ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2866), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256410,14 +263481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + ACTIONS(2870), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -256446,92 +263515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [74589] = 29, + [77311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(3998), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + ACTIONS(3108), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3411), 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, - [74700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256545,8 +263534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -256584,75 +263571,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74759] = 29, + [77370] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4000), 1, - anon_sym_COLON, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4120), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256666,102 +263653,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74870] = 5, + [77481] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4122), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3438), 2, anon_sym_as3, anon_sym_QMARKas, - [74933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3252), 21, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3400), 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_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3250), 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(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256775,15 +263735,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_await, - anon_sym_is, - anon_sym_QMARKas, - [74992] = 3, + [77592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 21, + ACTIONS(3262), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256797,15 +263754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3188), 30, + ACTIONS(3264), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256836,10 +263791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75051] = 3, + [77651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 21, + ACTIONS(3368), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256853,15 +263810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3156), 30, + ACTIONS(3370), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256892,75 +263847,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75110] = 29, + [77710] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4002), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4124), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256974,10 +263929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75221] = 3, + [77821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 21, + ACTIONS(3254), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -256991,15 +263948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3234), 30, + ACTIONS(3256), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -257030,75 +263985,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75280] = 29, + [77880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3296), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4004), 1, - anon_sym_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3298), 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, @@ -257112,15 +264036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75391] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [77939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3292), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -257134,15 +264060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3294), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -257167,160 +264094,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, - [75454] = 29, + [77998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3266), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4006), 1, - anon_sym_RBRACK, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 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, - [75565] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3268), 30, anon_sym_LPAREN, - ACTIONS(3321), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4008), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3405), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257334,75 +264148,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75676] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [78057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3348), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4010), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3350), 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, @@ -257416,75 +264204,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75787] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [78116] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4012), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4126), 1, anon_sym_EQ_GT, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257498,66 +264291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75898] = 3, + [78227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 21, - 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, + ACTIONS(3218), 21, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3021), 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, - [75957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 21, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -257571,15 +264310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3028), 30, + ACTIONS(3220), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -257610,10 +264347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76016] = 3, + [78286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 21, + ACTIONS(3210), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -257627,15 +264366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3202), 30, + ACTIONS(3212), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -257666,10 +264403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76075] = 3, + [78345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 21, + ACTIONS(3376), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -257683,15 +264422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3206), 30, + ACTIONS(3378), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -257722,75 +264459,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76134] = 29, + [78404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3328), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4014), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3330), 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, @@ -257804,10 +264510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76245] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [78463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 21, + ACTIONS(3314), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -257821,15 +264534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3210), 30, + ACTIONS(3316), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -257860,75 +264571,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76304] = 29, + [78522] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4016), 1, - anon_sym_EQ_GT, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4128), 1, + anon_sym_RBRACE, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257942,15 +264653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76415] = 5, + [78633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3360), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -257964,15 +264672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(3362), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -257997,18 +264706,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, - [76478] = 5, + [78692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 1, - anon_sym_RBRACE, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3342), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -258022,15 +264728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + 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, @@ -258055,13 +264762,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, - [76541] = 3, + [78751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 21, + ACTIONS(3258), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -258075,15 +264784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2973), 30, + ACTIONS(3260), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258114,10 +264821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76600] = 3, + [78810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 21, + ACTIONS(3132), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -258131,15 +264840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3246), 30, + ACTIONS(3134), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258170,10 +264877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76659] = 3, + [78869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 21, + ACTIONS(3244), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -258187,15 +264896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3114), 30, + ACTIONS(3246), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258226,75 +264933,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76718] = 29, + [78928] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4130), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258308,75 +265015,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76829] = 29, + [79039] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4020), 1, - anon_sym_RPAREN, - STATE(1795), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4132), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258390,75 +265097,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76940] = 29, + [79150] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4022), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4134), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258472,75 +265179,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77051] = 29, + [79261] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4024), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4136), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258554,75 +265261,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77162] = 29, + [79372] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4026), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4138), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + 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, + [79483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3216), 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, @@ -258636,75 +265394,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77273] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [79542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3206), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4028), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3208), 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, @@ -258718,75 +265450,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77384] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [79601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3248), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4030), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3250), 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, @@ -258800,75 +265506,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77495] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [79660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3304), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4032), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3306), 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, @@ -258882,75 +265618,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77606] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [79778] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4034), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4140), 1, anon_sym_RBRACE, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258964,75 +265705,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77717] = 29, + [79889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3198), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4036), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3200), 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, @@ -259046,15 +265756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77828] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [79948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, - anon_sym_RPAREN, - ACTIONS(2804), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(2952), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -259068,15 +265780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2797), 28, + anon_sym_as3, + ACTIONS(2954), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -259101,13 +265814,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, - [77891] = 3, + [80007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 21, + ACTIONS(3364), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -259121,15 +265836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2001), 30, + ACTIONS(3366), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259160,10 +265873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [77950] = 3, + [80066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 21, + ACTIONS(3174), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -259177,15 +265892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3290), 30, + ACTIONS(3176), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259216,10 +265929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78009] = 3, + [80125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2003), 21, + ACTIONS(3731), 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, @@ -259233,18 +265953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2005), 30, + ACTIONS(2870), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -259269,13 +265984,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, - [78068] = 3, + [80188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 21, + ACTIONS(3178), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -259289,15 +266006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3278), 30, + ACTIONS(3180), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259328,10 +266043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78127] = 3, + [80247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 21, + ACTIONS(3384), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -259345,15 +266062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3272), 30, + ACTIONS(3386), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259384,75 +266099,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78186] = 29, + [80306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3729), 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, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4038), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + 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, @@ -259466,10 +266152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78297] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [80369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 21, + ACTIONS(2991), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -259483,15 +266176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2797), 30, + ACTIONS(2993), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259522,75 +266213,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78356] = 29, + [80428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3274), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4040), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3276), 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, @@ -259604,75 +266264,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78467] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [80487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3336), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4042), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + 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, + 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, @@ -259686,75 +266320,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78578] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [80546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(2948), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4044), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2950), 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, @@ -259768,75 +266376,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78689] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [80605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3069), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4046), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + 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, + 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, @@ -259850,75 +266432,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78800] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [80664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + 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, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + 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, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4048), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3184), 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, @@ -259932,75 +266565,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78911] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [80824] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(4050), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4144), 1, anon_sym_SEMI, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(5283), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -260014,75 +266652,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79022] = 29, + [80935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3148), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4052), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3150), 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, @@ -260096,75 +266703,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79133] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [80994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3186), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4054), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + 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, + 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, @@ -260178,10 +266759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79244] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [81053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 21, + ACTIONS(3194), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -260195,15 +266783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3009), 30, + ACTIONS(3196), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260234,75 +266820,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [79303] = 29, + [81112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3144), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4056), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + 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, + 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, @@ -260316,75 +266871,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79414] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [81171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3228), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4058), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3230), 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, @@ -260398,10 +266927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79525] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [81230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 21, + ACTIONS(3380), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -260415,15 +266951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3036), 30, + ACTIONS(3382), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260454,75 +266988,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [79584] = 29, + [81289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3236), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4060), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3238), 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, @@ -260534,77 +267037,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [79695] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, - anon_sym_QMARK, - ACTIONS(3375), 1, - anon_sym_LT, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, - anon_sym_PIPE, - ACTIONS(3393), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - ACTIONS(4062), 1, - anon_sym_SEMI, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, + anon_sym_await, + anon_sym_is, anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, + [81348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3136), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3138), 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, @@ -260618,73 +267095,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79806] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [81407] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3381), 1, + ACTIONS(3402), 1, anon_sym_EQ, - ACTIONS(3383), 1, + ACTIONS(3404), 1, + anon_sym_LBRACK, + ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3385), 1, + ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, + ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, + ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3391), 1, + ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3393), 1, + ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3407), 1, + ACTIONS(3428), 1, anon_sym_STAR_STAR, - ACTIONS(3409), 1, + ACTIONS(3430), 1, anon_sym_QMARK_COLON, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_LBRACK, - STATE(2253), 1, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4146), 1, + anon_sym_SEMI, + STATE(1814), 1, sym_arguments, - STATE(5422), 1, + STATE(5596), 1, sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, + ACTIONS(3388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3397), 2, + ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, + ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, + ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, + 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(3405), 3, + ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + ACTIONS(3432), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -260698,301 +267182,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79914] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(4931), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3466), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(4066), 6, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - ACTIONS(4072), 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, - [80008] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(4395), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(4066), 6, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - ACTIONS(4072), 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, - [80102] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(5134), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(4066), 6, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - ACTIONS(4072), 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, - [80196] = 5, + [81518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - STATE(2623), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 10, - sym_variable, + ACTIONS(4082), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2752), 38, - 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_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, - [80258] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - STATE(2623), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2756), 10, + ACTIONS(2907), 8, sym_variable, - anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, - anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(2758), 38, + ACTIONS(2905), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -261002,6 +267206,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -261031,264 +267239,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [80320] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(4455), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3455), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(4066), 6, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - ACTIONS(4072), 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, - [80414] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(4576), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(4066), 6, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - ACTIONS(4072), 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, - [80508] = 22, + [81579] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3943), 1, - sym_identifier, - ACTIONS(3949), 1, - anon_sym_shape, - ACTIONS(3951), 1, - anon_sym_namespace, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4074), 1, - anon_sym_type, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3408), 1, - sym_null, - STATE(5054), 1, - sym__class_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(3947), 5, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - STATE(3464), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3953), 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, - [80604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3060), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2799), 20, + ACTIONS(3394), 1, anon_sym_QMARK, + ACTIONS(3396), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3428), 1, + anon_sym_STAR_STAR, + ACTIONS(3430), 1, + anon_sym_QMARK_COLON, + ACTIONS(3436), 1, + anon_sym_is, + ACTIONS(4148), 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, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - anon_sym_QMARK_COLON, + 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, @@ -261302,78 +267321,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, - [80664] = 28, + [81690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - anon_sym_is, - ACTIONS(3373), 1, + ACTIONS(3356), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3375), 1, anon_sym_LT, - ACTIONS(3381), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3383), 1, - anon_sym_PIPE_GT, - ACTIONS(3385), 1, anon_sym_QMARK_QMARK, - ACTIONS(3387), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3389), 1, - anon_sym_AMP_AMP, - ACTIONS(3391), 1, anon_sym_PIPE, - ACTIONS(3393), 1, anon_sym_CARET, - ACTIONS(3395), 1, anon_sym_AMP, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3409), 1, - anon_sym_QMARK_COLON, - STATE(1795), 1, - sym_arguments, - STATE(5283), 1, - sym_type_arguments, - ACTIONS(3325), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3329), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3377), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3401), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3403), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3379), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3405), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3411), 13, + 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, + 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, @@ -261387,60 +267372,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [80772] = 21, + 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(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, + 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, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(4432), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(4066), 6, anon_sym_type, anon_sym_newtype, + anon_sym_shape, anon_sym_tuple, anon_sym_clone, anon_sym_new, anon_sym_print, - ACTIONS(4072), 19, + 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, @@ -261460,23 +267427,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [80866] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [81807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 12, + ACTIONS(2966), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, - anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(2773), 38, + ACTIONS(2964), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -261486,6 +267454,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -261515,60 +267487,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [80924] = 21, + [81865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1035), 1, - sym_xhp_identifier, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4064), 1, + 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, - ACTIONS(4068), 1, - anon_sym_shape, - ACTIONS(4070), 1, - anon_sym_namespace, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3450), 1, - sym_null, - STATE(4692), 1, - sym_const_declarator, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(4066), 6, anon_sym_type, anon_sym_newtype, + anon_sym_shape, anon_sym_tuple, anon_sym_clone, anon_sym_new, anon_sym_print, - ACTIONS(4072), 19, + 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, @@ -261588,27 +267537,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [81018] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [81923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 9, + ACTIONS(3026), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4076), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -261631,38 +267592,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81075] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [81981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 9, + ACTIONS(3082), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4080), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -261685,38 +267647,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81132] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 9, + ACTIONS(2978), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4084), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -261739,38 +267702,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81189] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 9, + ACTIONS(2859), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4088), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -261793,38 +267757,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81246] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 9, + ACTIONS(3022), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4092), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -261847,147 +267812,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81303] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4098), 9, + ACTIONS(3001), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4096), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, - 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_require, - 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, - [81360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 1, - anon_sym_EQ_GT, - ACTIONS(2799), 20, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2797), 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, - [81419] = 3, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(4102), 9, + ACTIONS(3078), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4100), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262010,38 +267922,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81476] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 9, + ACTIONS(3090), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4104), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262064,38 +267977,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81533] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4110), 9, + ACTIONS(3086), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4108), 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(3084), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262118,38 +268032,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81590] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 9, + ACTIONS(3102), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4112), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262172,38 +268087,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81647] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 9, + ACTIONS(3094), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4116), 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(3092), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262226,38 +268142,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81704] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 9, + ACTIONS(3014), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4120), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262280,38 +268197,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81761] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 9, + ACTIONS(2942), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4124), 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(2940), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262334,38 +268252,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81818] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4130), 9, + ACTIONS(2974), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4128), 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(2972), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262388,38 +268307,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81875] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4134), 9, + ACTIONS(2989), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4132), 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(2987), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262442,38 +268362,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81932] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82793] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 9, - sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, + ACTIONS(3392), 1, anon_sym_LPAREN, - anon_sym_AT, + ACTIONS(3394), 1, anon_sym_QMARK, - anon_sym_TILDE, + 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, - sym_xhp_class_identifier, - ACTIONS(4136), 40, + 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, + 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262496,38 +268497,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [81989] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 9, + ACTIONS(3040), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4140), 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(3038), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262550,38 +268552,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [82046] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 9, + ACTIONS(3047), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4144), 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(3045), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262604,38 +268607,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [82103] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 9, - sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, + ACTIONS(3112), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, + STATE(2747), 1, + sym_arguments, + ACTIONS(3108), 20, anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4148), 40, + 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, + [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, 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_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262658,38 +268720,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [82160] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 9, + ACTIONS(3071), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4152), 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(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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262712,38 +268775,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [82217] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 9, + ACTIONS(3051), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4156), 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(3049), 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_static, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262766,38 +268830,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [82274] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 9, - sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, + 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_AT, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3394), 1, anon_sym_QMARK, - anon_sym_TILDE, + 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, anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4160), 40, + 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_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, + [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, 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_include, + anon_sym_include_once, + anon_sym_require, + 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, @@ -262820,34 +269079,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, - 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, - [82331] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 9, + 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4164), 40, + ACTIONS(4150), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -262874,7 +269128,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -262885,23 +269138,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82388] = 3, + [83660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 9, + ACTIONS(4156), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4168), 40, + ACTIONS(4154), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -262928,7 +269182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -262939,23 +269192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82445] = 3, + [83717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 9, + ACTIONS(4160), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4172), 40, + ACTIONS(4158), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -262982,7 +269236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -262993,23 +269246,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82502] = 3, + [83774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 9, + ACTIONS(4164), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4176), 40, + ACTIONS(4162), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263036,7 +269290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263047,23 +269300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82559] = 3, + [83831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 9, + ACTIONS(4168), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4180), 40, + ACTIONS(4166), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263090,7 +269344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263101,23 +269354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82616] = 3, + [83888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 9, + ACTIONS(4172), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4184), 40, + ACTIONS(4170), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263144,7 +269398,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263155,23 +269408,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82673] = 3, + [83945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 9, + ACTIONS(4176), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4188), 40, + ACTIONS(4174), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263198,7 +269452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263209,23 +269462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82730] = 3, + [84002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 9, + ACTIONS(4180), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4192), 40, + ACTIONS(4178), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263252,7 +269506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263263,23 +269516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82787] = 3, + [84059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 9, + ACTIONS(4184), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4196), 40, + ACTIONS(4182), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263306,7 +269560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263317,23 +269570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82844] = 3, + [84116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 9, + ACTIONS(4188), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4200), 40, + ACTIONS(4186), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263360,7 +269614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263371,23 +269624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82901] = 3, + [84173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 9, + ACTIONS(4192), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4204), 40, + ACTIONS(4190), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263414,7 +269668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263425,23 +269678,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [82958] = 3, + [84230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 9, + ACTIONS(4196), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4208), 40, + ACTIONS(4194), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263468,7 +269722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263479,35 +269732,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83015] = 5, + [84287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - STATE(2721), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 9, + ACTIONS(4200), 9, sym_variable, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ_GT, - ACTIONS(2752), 38, + 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(4198), 40, 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_require, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -263530,28 +269776,34 @@ 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, - [83076] = 3, + 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, + [84344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 9, + ACTIONS(4160), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4212), 40, + ACTIONS(4158), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263578,7 +269830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263589,79 +269840,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83133] = 5, + [84401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 1, + ACTIONS(2051), 9, + sym_variable, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - STATE(2553), 1, - sym_arguments, - ACTIONS(3216), 20, + 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3214), 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, - [83194] = 3, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(2049), 40, + 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, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [84458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 9, + ACTIONS(4204), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4216), 40, + ACTIONS(4202), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263688,7 +269938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263699,23 +269948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83251] = 3, + [84515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 9, + ACTIONS(4208), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4220), 40, + ACTIONS(4206), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263742,7 +269992,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263753,23 +270002,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83308] = 3, + [84572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4226), 9, + ACTIONS(4212), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4224), 40, + ACTIONS(4210), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263796,7 +270046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263807,23 +270056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83365] = 3, + [84629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2001), 9, + ACTIONS(4216), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(1999), 40, + ACTIONS(4214), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263850,7 +270100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263861,23 +270110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83422] = 3, + [84686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 9, + ACTIONS(4220), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4228), 40, + ACTIONS(4218), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263904,7 +270154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263915,23 +270164,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83479] = 3, + [84743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 9, + ACTIONS(4224), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4232), 40, + ACTIONS(4222), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -263958,7 +270208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -263969,23 +270218,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83536] = 3, + [84800] = 4, + 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(4238), 9, + ACTIONS(4228), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4236), 40, + ACTIONS(4226), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264012,7 +270317,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264023,23 +270327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83593] = 3, + [84916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 9, + ACTIONS(4232), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4240), 40, + ACTIONS(4230), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264066,7 +270371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264077,23 +270381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83650] = 3, + [84973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 9, + ACTIONS(4236), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4244), 40, + ACTIONS(4234), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264120,7 +270425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264131,23 +270435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83707] = 3, + [85030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 9, + ACTIONS(4240), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4248), 40, + ACTIONS(4238), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264174,7 +270479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264185,23 +270489,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83764] = 3, + [85087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 9, + ACTIONS(4244), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4252), 40, + ACTIONS(4242), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264228,7 +270533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264239,23 +270543,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83821] = 3, + [85144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 9, + ACTIONS(4248), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4256), 40, + ACTIONS(4246), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264282,7 +270587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264293,23 +270597,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83878] = 3, + [85201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 9, + ACTIONS(4252), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4260), 40, + ACTIONS(4250), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264336,7 +270641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264347,23 +270651,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83935] = 3, + [85258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 9, + ACTIONS(4256), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4264), 40, + ACTIONS(4254), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264390,7 +270695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264401,23 +270705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [83992] = 3, + [85315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 9, + ACTIONS(4260), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4268), 40, + ACTIONS(4258), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264444,7 +270749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264455,23 +270759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84049] = 3, + [85372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 9, + ACTIONS(2047), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4272), 40, + ACTIONS(2045), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264498,7 +270803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264509,23 +270813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84106] = 3, + [85429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 9, + ACTIONS(4264), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4276), 40, + ACTIONS(4262), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264552,7 +270857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264563,77 +270867,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84163] = 3, + [85486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 9, - sym_variable, - anon_sym_BSLASH, - anon_sym_RBRACE, + ACTIONS(3694), 1, anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, + STATE(2747), 1, + sym_arguments, + ACTIONS(3108), 20, anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4280), 40, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - 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_require, - 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, - [84220] = 3, + 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, + [85547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 9, + ACTIONS(4268), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4284), 40, + ACTIONS(4266), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264660,7 +270967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264671,23 +270977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84277] = 3, + [85604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 9, + ACTIONS(4196), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4288), 40, + ACTIONS(4194), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264714,7 +271021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264725,23 +271031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84334] = 3, + [85661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2005), 9, + ACTIONS(4272), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(2003), 40, + ACTIONS(4270), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264768,7 +271075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264779,23 +271085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84391] = 3, + [85718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 9, + ACTIONS(4276), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4292), 40, + ACTIONS(4274), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264822,7 +271129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264833,23 +271139,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84448] = 3, + [85775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 9, + ACTIONS(4280), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4296), 40, + ACTIONS(4278), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264876,7 +271183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264887,23 +271193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84505] = 3, + [85832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 9, + ACTIONS(4284), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4300), 40, + ACTIONS(4282), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264930,7 +271237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264941,23 +271247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84562] = 3, + [85889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 9, + ACTIONS(4288), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4304), 40, + ACTIONS(4286), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -264984,7 +271291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -264995,23 +271301,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84619] = 3, + [85946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 9, + ACTIONS(4292), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4308), 40, + ACTIONS(4290), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265038,7 +271345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265049,23 +271355,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84676] = 3, + [86003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 9, + ACTIONS(4296), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4312), 40, + ACTIONS(4294), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265092,7 +271399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265103,14 +271409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84733] = 5, + [86060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3712), 1, anon_sym_LPAREN, - STATE(1878), 1, + STATE(1912), 1, sym_arguments, - ACTIONS(3216), 20, + ACTIONS(3108), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -265124,14 +271432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3214), 27, + ACTIONS(3110), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -265159,77 +271465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [84794] = 3, + [86121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 9, + ACTIONS(4300), 9, sym_variable, anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, anon_sym_LT_LT, - sym_xhp_class_identifier, - ACTIONS(4316), 40, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - 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_require, - 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, - [84851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 9, - sym_variable, - anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4320), 40, + ACTIONS(4298), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265256,7 +271509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265267,23 +271519,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84908] = 3, + [86178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 9, + ACTIONS(4304), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4324), 40, + ACTIONS(4302), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265310,7 +271563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265321,23 +271573,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [84965] = 3, + [86235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 9, + ACTIONS(4308), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4328), 40, + ACTIONS(4306), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265364,7 +271617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265375,23 +271627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85022] = 3, + [86292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 9, + ACTIONS(4312), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4332), 40, + ACTIONS(4310), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265418,7 +271671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265429,23 +271681,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85079] = 3, + [86349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 9, + ACTIONS(4316), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4336), 40, + ACTIONS(4314), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265472,7 +271725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265483,23 +271735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85136] = 3, + [86406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 9, + ACTIONS(4320), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4340), 40, + ACTIONS(4318), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265526,7 +271779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265537,23 +271789,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85193] = 3, + [86463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 9, + ACTIONS(4324), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4344), 40, + ACTIONS(4322), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265580,7 +271833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265591,23 +271843,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85250] = 3, + [86520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 9, + ACTIONS(4328), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4348), 40, + ACTIONS(4326), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265634,7 +271887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265645,23 +271897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85307] = 3, + [86577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 9, + ACTIONS(4332), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4352), 40, + ACTIONS(4330), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265688,7 +271941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265699,23 +271951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85364] = 3, + [86634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 9, + ACTIONS(4336), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4356), 40, + ACTIONS(4334), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265742,7 +271995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265753,23 +272005,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85421] = 3, + [86691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 9, + ACTIONS(4340), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4208), 40, + ACTIONS(4338), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265796,7 +272049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265807,23 +272059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85478] = 3, + [86748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 9, + ACTIONS(4344), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4360), 40, + ACTIONS(4342), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265850,7 +272103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265861,23 +272113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85535] = 3, + [86805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4366), 9, + ACTIONS(4348), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4364), 40, + ACTIONS(4346), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265904,7 +272157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265915,23 +272167,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85592] = 3, + [86862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 9, + ACTIONS(4352), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4336), 40, + ACTIONS(4350), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -265958,7 +272211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -265969,23 +272221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85649] = 3, + [86919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 9, + ACTIONS(4356), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4368), 40, + ACTIONS(4354), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -266012,7 +272265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -266023,23 +272275,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85706] = 3, + [86976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 9, + ACTIONS(4360), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4372), 40, + ACTIONS(4358), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -266066,7 +272319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -266077,23 +272329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85763] = 3, + [87033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 9, + ACTIONS(4364), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4376), 40, + ACTIONS(4362), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -266120,7 +272373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -266131,23 +272383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85820] = 3, + [87090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 9, + ACTIONS(4368), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4380), 40, + ACTIONS(4366), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -266174,7 +272427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -266185,23 +272437,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85877] = 3, + [87147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 9, + ACTIONS(4372), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4384), 40, + ACTIONS(4370), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -266228,7 +272481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -266239,23 +272491,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85934] = 3, + [87204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 9, + ACTIONS(4376), 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, - anon_sym_LT_LT, sym_xhp_class_identifier, - ACTIONS(4388), 40, + ACTIONS(4374), 40, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_require, anon_sym_static, anon_sym_use, anon_sym_function, @@ -266282,7 +272535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_require, anon_sym_async, anon_sym_abstract, sym_final_modifier, @@ -266293,56 +272545,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attribute, anon_sym_children, anon_sym_category, - [85991] = 21, + [87261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4380), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4392), 1, - anon_sym_RBRACE, - ACTIONS(4394), 1, - anon_sym_abstract, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4378), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266362,57 +272589,41 @@ 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, - [86082] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4384), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4396), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2828), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4382), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266432,57 +272643,41 @@ 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, - [86173] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4388), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4398), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4386), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266502,57 +272697,41 @@ 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, - [86264] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4392), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4400), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2852), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4390), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266572,57 +272751,41 @@ 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, - [86355] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4396), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4402), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2819), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4394), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266642,57 +272805,41 @@ 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, - [86446] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4400), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4404), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2882), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4398), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266712,57 +272859,41 @@ 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, - [86537] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4404), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4406), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4402), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266782,57 +272913,41 @@ 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, - [86628] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4408), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4408), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4406), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266852,57 +272967,41 @@ 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, - [86719] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4412), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4410), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4410), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266922,57 +273021,41 @@ 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, - [86810] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4416), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4412), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2824), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4414), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -266992,57 +273075,41 @@ 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, - [86901] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - sym_identifier, - ACTIONS(4417), 1, - anon_sym_shape, - ACTIONS(4420), 1, - anon_sym_namespace, - ACTIONS(4423), 1, + ACTIONS(4420), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(4428), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4434), 1, anon_sym_AT, - ACTIONS(4437), 1, anon_sym_QMARK, - ACTIONS(4440), 1, anon_sym_TILDE, - ACTIONS(4446), 1, sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2827), 1, - aux_sym_where_clause_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(3435), 1, - sym_where_constraint, - ACTIONS(4426), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(4431), 3, + ACTIONS(4418), 40, + 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, - STATE(4762), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(4443), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267062,57 +273129,41 @@ 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, - [86992] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4424), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4449), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4422), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267132,58 +273183,41 @@ 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, - [87083] = 22, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [87945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4428), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3432), 1, - sym_inout_modifier, - ACTIONS(3434), 1, sym_xhp_class_identifier, - ACTIONS(3969), 1, - sym_variable, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(6034), 1, - sym_variadic_modifier, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4426), 40, + 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, - STATE(4502), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267203,57 +273237,41 @@ 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, - [87176] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4432), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4451), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4430), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267273,33 +273291,38 @@ 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, - [87267] = 4, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(2859), 8, + ACTIONS(4436), 9, sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2861), 38, + 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(4434), 40, 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_require, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -267322,61 +273345,41 @@ 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, - [87324] = 21, + 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, + [88116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4440), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4455), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2823), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4438), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267396,57 +273399,41 @@ 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, - [87415] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4444), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4457), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4442), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267466,57 +273453,41 @@ 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, - [87506] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4448), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4459), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2866), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4446), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267536,57 +273507,41 @@ 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, - [87597] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4452), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4461), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4450), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267606,57 +273561,41 @@ 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, - [87688] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4456), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4463), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2835), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4454), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267676,57 +273615,41 @@ 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, - [87779] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4460), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4465), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4458), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267746,57 +273669,41 @@ 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, - [87870] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4464), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2688), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3957), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4467), 1, - anon_sym_RBRACE, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4462), 40, + 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, - STATE(5477), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267816,57 +273723,66 @@ 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, - [87961] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88515] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4469), 1, + ACTIONS(4466), 1, anon_sym_RBRACE, - STATE(2720), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2825), 2, + STATE(2945), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267887,56 +273803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88052] = 21, + [88606] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4470), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2827), 1, - aux_sym_where_clause_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3435), 1, - sym_where_constraint, - ACTIONS(4471), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(3398), 2, + 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(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4762), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -267957,56 +273873,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88143] = 21, + [88697] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4473), 1, + ACTIONS(4472), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2903), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268027,56 +273943,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88234] = 21, + [88788] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4475), 1, + ACTIONS(4474), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2833), 2, + STATE(2929), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268097,56 +274013,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88325] = 21, + [88879] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4477), 1, + ACTIONS(4476), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268167,56 +274083,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88416] = 21, + [88970] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4479), 1, + ACTIONS(4478), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2869), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268237,56 +274153,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88507] = 21, + [89061] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4481), 1, + ACTIONS(4480), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2910), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268307,108 +274223,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2853), 9, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2855), 38, - 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_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, - [88653] = 21, + [89152] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4483), 1, + ACTIONS(4482), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268429,56 +274293,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88744] = 21, + [89243] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4485), 1, + ACTIONS(4484), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2837), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268499,56 +274363,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88835] = 21, + [89334] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4487), 1, + ACTIONS(4486), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2853), 2, + STATE(2930), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268569,56 +274433,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [88926] = 21, + [89425] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4489), 1, + ACTIONS(4488), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268639,56 +274503,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89017] = 21, + [89516] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4491), 1, + ACTIONS(4490), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2843), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268709,56 +274573,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89108] = 21, + [89607] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4493), 1, + ACTIONS(4492), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2919), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268779,56 +274643,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89199] = 21, + [89698] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4495), 1, + ACTIONS(4494), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2946), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268849,56 +274713,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89290] = 21, + [89789] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4497), 1, + ACTIONS(4496), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2864), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268919,56 +274783,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89381] = 21, + [89880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4499), 1, + ACTIONS(4498), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2862), 2, + STATE(2935), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -268989,56 +274853,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89472] = 21, + [89971] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4501), 1, + ACTIONS(4500), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2830), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269059,56 +274923,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89563] = 21, + [90062] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4503), 1, + ACTIONS(4502), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2847), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269129,56 +274993,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89654] = 21, + [90153] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4505), 1, + ACTIONS(4504), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2838), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269199,57 +275063,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89745] = 22, + [90244] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4507), 1, - sym_variable, - ACTIONS(4509), 1, - sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4506), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3346), 1, sym_null, - STATE(5794), 1, - sym_variadic_modifier, - STATE(3383), 2, + 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(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4643), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269270,35 +275133,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89838] = 4, + [90335] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(2849), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2851), 38, + ACTIONS(4508), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(4511), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(4514), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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, + 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(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, @@ -269318,61 +275202,57 @@ 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, - [89895] = 21, + sym_xhp_identifier, + [90426] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4511), 1, + ACTIONS(4546), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2845), 2, + STATE(2926), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269393,56 +275273,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89986] = 21, + [90517] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4513), 1, + ACTIONS(4548), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269463,56 +275343,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90077] = 21, + [90608] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4515), 1, + ACTIONS(4550), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2874), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269533,56 +275413,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90168] = 21, + [90699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4517), 1, + ACTIONS(4552), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2918), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269603,56 +275483,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90259] = 21, + [90790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4519), 1, + ACTIONS(4554), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2850), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269673,56 +275553,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90350] = 21, + [90881] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4521), 1, + ACTIONS(4556), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2904), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269743,56 +275623,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90441] = 21, + [90972] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4523), 1, + ACTIONS(4558), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2872), 2, + STATE(2914), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269813,56 +275693,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90532] = 21, + [91063] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4525), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(4531), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(4534), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(4537), 1, - anon_sym_RBRACE, - ACTIONS(4539), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(4545), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(4548), 1, - anon_sym_QMARK, - ACTIONS(4551), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(4557), 1, + ACTIONS(3671), 1, + sym_xhp_class_identifier, + ACTIONS(4468), 1, anon_sym_abstract, ACTIONS(4560), 1, - sym_xhp_class_identifier, - STATE(2720), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4542), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(4554), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269883,56 +275763,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90623] = 21, + [91154] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4563), 1, + ACTIONS(4562), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -269953,56 +275833,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90714] = 21, + [91245] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4565), 1, + ACTIONS(4564), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2817), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270023,56 +275903,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90805] = 21, + [91336] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4567), 1, + ACTIONS(4566), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2880), 2, + STATE(2924), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270093,56 +275973,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90896] = 21, + [91427] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4569), 1, + ACTIONS(4568), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270163,34 +276043,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90987] = 3, + [91518] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 9, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2891), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4570), 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, @@ -270210,61 +276112,57 @@ 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, - [91042] = 21, + sym_xhp_identifier, + [91609] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4571), 1, + ACTIONS(4572), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270285,56 +276183,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91133] = 21, + [91700] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4573), 1, + ACTIONS(4574), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2876), 2, + STATE(2934), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270355,56 +276253,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91224] = 21, + [91791] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4575), 1, + ACTIONS(4576), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270425,42 +276323,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91315] = 8, + [91882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - anon_sym_static, - ACTIONS(4584), 1, - anon_sym_abstract, - ACTIONS(4587), 1, - sym_final_modifier, - ACTIONS(4590), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(2877), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - ACTIONS(4579), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4577), 29, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_function, - anon_sym_const, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4578), 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(2913), 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, @@ -270480,58 +276392,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, sym_xhp_identifier, - [91380] = 21, + [91973] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4593), 1, + ACTIONS(4580), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270552,56 +276463,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91471] = 21, + [92064] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4595), 1, + ACTIONS(4582), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2878), 2, + STATE(2916), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270622,56 +276533,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91562] = 21, + [92155] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4597), 1, + ACTIONS(4584), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2868), 2, + STATE(2954), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270692,56 +276603,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91653] = 21, + [92246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, + ACTIONS(4468), 1, anon_sym_abstract, - ACTIONS(4599), 1, + ACTIONS(4586), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2841), 2, + STATE(2906), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270762,56 +276673,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91744] = 21, + [92337] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3502), 1, + sym_inout_modifier, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4394), 1, - anon_sym_abstract, - ACTIONS(4601), 1, - anon_sym_RBRACE, - STATE(2720), 1, + ACTIONS(4142), 1, + sym_variable, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(2868), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(6246), 1, + sym_variadic_modifier, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5477), 5, + STATE(5196), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270832,55 +276744,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91835] = 21, + [92430] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4603), 1, - sym_variable, - STATE(2720), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4588), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3346), 1, sym_null, - STATE(5721), 1, - sym_variadic_modifier, - STATE(3383), 2, + STATE(2921), 2, + sym_typed_enumerator, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4865), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270901,54 +276814,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91925] = 20, + [92521] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4605), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4590), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2921), 2, + STATE(2907), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -270969,33 +276884,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92013] = 3, + [92612] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2998), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4592), 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(2897), 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, @@ -271015,59 +276953,57 @@ 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, - [92067] = 20, + sym_xhp_identifier, + [92703] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4607), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4594), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, STATE(2900), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271088,33 +277024,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92155] = 3, + [92794] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3042), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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, + 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(4596), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(3450), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 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(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271134,38 +277093,57 @@ 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, - [92209] = 3, + sym_xhp_identifier, + [92885] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3046), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4598), 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(2955), 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, @@ -271185,38 +277163,57 @@ 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, - [92263] = 3, + sym_xhp_identifier, + [92976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3038), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4600), 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, @@ -271236,59 +277233,57 @@ 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, - [92317] = 20, + sym_xhp_identifier, + [93067] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4609), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4602), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2916), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271309,54 +277304,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92405] = 20, + [93158] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4611), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4604), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2902), 2, + STATE(2949), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271377,54 +277374,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92493] = 20, + [93249] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4613), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4606), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2906), 2, + STATE(2932), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271445,54 +277444,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92581] = 20, + [93340] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4613), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4608), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2916), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271513,54 +277514,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92669] = 20, + [93431] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4611), 1, - anon_sym_RBRACE, - STATE(2720), 1, + ACTIONS(4610), 1, + sym_variable, + ACTIONS(4612), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(2932), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(6103), 1, + sym_variadic_modifier, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5114), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271581,30 +277585,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92757] = 3, + [93524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 8, + 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, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2879), 38, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4614), 29, 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_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -271627,59 +277640,58 @@ 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, - [92811] = 20, + anon_sym_async, + sym_xhp_identifier, + [93589] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4615), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4630), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2901), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271700,54 +277712,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92899] = 20, + [93680] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4617), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4632), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2925), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271768,33 +277782,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92987] = 3, + [93771] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2865), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4634), 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, @@ -271814,59 +277851,57 @@ 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, - [93041] = 20, + sym_xhp_identifier, + [93862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4619), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4636), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2916), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271887,54 +277922,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93129] = 20, + [93953] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4621), 1, + ACTIONS(4468), 1, + anon_sym_abstract, + ACTIONS(4638), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2928), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5379), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -271955,54 +277992,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93217] = 20, + [94044] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(4640), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(4643), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(4646), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4649), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(4660), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(4663), 1, + anon_sym_QMARK, + ACTIONS(4666), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(4672), 1, sym_xhp_class_identifier, - ACTIONS(4623), 1, - anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(2957), 1, + aux_sym_where_clause_repeat1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2918), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + 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(2696), 3, + ACTIONS(4657), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5034), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(4669), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272023,54 +278062,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93305] = 20, + [94135] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4625), 1, + ACTIONS(4675), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2984), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272091,54 +278130,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93393] = 20, + [94223] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4627), 1, + ACTIONS(4677), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2917), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272159,54 +278198,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93481] = 20, + [94311] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(4679), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(4681), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(4683), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4685), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(4687), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + 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, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4617), 1, + ACTIONS(4697), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2930), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272227,54 +278334,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93569] = 20, + [94487] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4629), 1, + ACTIONS(4699), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2899), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272295,54 +278402,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93657] = 20, + [94575] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4631), 1, + ACTIONS(4701), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272363,33 +278470,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93745] = 3, + [94663] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2951), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4701), 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(2986), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -272409,38 +278537,55 @@ 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, - [93799] = 3, + sym_xhp_identifier, + [94751] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3011), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4697), 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(3014), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -272460,60 +278605,55 @@ 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, - [93853] = 21, + sym_xhp_identifier, + [94839] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4507), 1, - sym_variable, - STATE(2720), 1, + ACTIONS(4703), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3346), 1, sym_null, - STATE(5794), 1, - sym_variadic_modifier, - STATE(3383), 2, + STATE(3011), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4643), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272534,54 +278674,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93943] = 20, + [94927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4629), 1, + ACTIONS(4705), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2979), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272602,54 +278742,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94031] = 20, + [95015] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4633), 1, + ACTIONS(4707), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2942), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272670,33 +278810,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94119] = 3, + [95103] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2828), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4709), 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(2993), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -272716,59 +278877,55 @@ 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, - [94173] = 20, + sym_xhp_identifier, + [95191] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4635), 1, + ACTIONS(4711), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2896), 2, + STATE(2972), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272789,54 +278946,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94261] = 20, + [95279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(4713), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(4716), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(4719), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(4722), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(4725), 1, + anon_sym_RBRACE, + ACTIONS(4727), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(4733), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(4736), 1, + anon_sym_QMARK, + ACTIONS(4739), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(4745), 1, sym_xhp_class_identifier, - ACTIONS(4637), 1, - anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(4730), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(4742), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272857,54 +279014,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94349] = 20, + [95367] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4639), 1, + ACTIONS(4748), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2893), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -272925,33 +279082,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94437] = 3, + [95455] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3030), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4707), 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(3019), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -272971,59 +279149,55 @@ 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, - [94491] = 20, + sym_xhp_identifier, + [95543] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4641), 1, + ACTIONS(4750), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2968), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273044,54 +279218,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94579] = 20, + [95631] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4643), 1, + ACTIONS(4752), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2962), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273112,54 +279286,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94667] = 20, + [95719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4645), 1, + ACTIONS(4748), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2914), 2, + STATE(2959), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273180,54 +279354,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94755] = 20, + [95807] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4643), 1, + ACTIONS(4754), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2943), 2, + STATE(3009), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273248,54 +279422,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94843] = 20, + [95895] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4645), 1, + ACTIONS(4752), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273316,105 +279490,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94931] = 3, + [95983] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2955), 38, - 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_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, - [94985] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4647), 1, + ACTIONS(4754), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2967), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273435,33 +279558,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95073] = 3, + [96071] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3023), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4756), 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(3004), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -273481,59 +279625,55 @@ 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, - [95127] = 20, + sym_xhp_identifier, + [96159] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4649), 1, + ACTIONS(4758), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2985), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273554,33 +279694,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95215] = 3, + [96247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2959), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4760), 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(2989), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -273600,59 +279761,56 @@ 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, - [95269] = 20, + sym_xhp_identifier, + [96335] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4627), 1, - anon_sym_RBRACE, - STATE(2720), 1, + ACTIONS(4142), 1, + sym_variable, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(2932), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(6246), 1, + sym_variadic_modifier, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5196), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273673,54 +279831,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95357] = 20, + [96425] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4651), 1, + ACTIONS(4762), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2955), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273741,54 +279899,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95445] = 20, + [96513] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4621), 1, + ACTIONS(4760), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2954), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273809,54 +279967,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95533] = 20, + [96601] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4653), 1, + ACTIONS(4764), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273877,54 +280035,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95621] = 20, + [96689] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4655), 1, + ACTIONS(4766), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2897), 2, + STATE(3015), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273945,54 +280103,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95709] = 20, + [96777] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(4660), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(4663), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(4666), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(4669), 1, - anon_sym_RBRACE, - ACTIONS(4671), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(4680), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(4689), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4610), 1, + sym_variable, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(2932), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(6103), 1, + sym_variadic_modifier, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4674), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5114), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(4686), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274013,54 +280172,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95797] = 20, + [96867] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4692), 1, + ACTIONS(4768), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274081,54 +280240,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95885] = 20, + [96955] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(4694), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(4696), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(4698), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(4700), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(4702), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(4708), 1, - anon_sym_enum, - ACTIONS(4710), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(3561), 1, + ACTIONS(4770), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(3613), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3111), 1, sym_qualified_identifier, - STATE(3656), 1, + STATE(3346), 1, sym_null, - STATE(3729), 1, - sym__type_constant, - STATE(4947), 1, - sym_xhp_class_attribute, - STATE(3399), 2, + STATE(2992), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4704), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3813), 6, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - sym_xhp_enum_type, - ACTIONS(4706), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274149,105 +280308,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2965), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2967), 38, - 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_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, - [96027] = 20, + [97043] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4712), 1, + ACTIONS(4772), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274268,33 +280376,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96115] = 3, + [97131] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2986), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4766), 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(2971), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -274314,38 +280443,55 @@ 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, - [96169] = 3, + sym_xhp_identifier, + [97219] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2931), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4774), 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(2971), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -274365,38 +280511,55 @@ 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, - [96223] = 3, + sym_xhp_identifier, + [97307] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3002), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(4679), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(4681), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(4683), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + ACTIONS(4685), 1, + anon_sym_BSLASH, + ACTIONS(4687), 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(4482), 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, @@ -274416,59 +280579,55 @@ 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, - [96277] = 20, + sym_xhp_identifier, + [97395] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4714), 1, + ACTIONS(4776), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2894), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274489,105 +280648,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96365] = 3, + [97483] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2924), 38, - 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_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, - [96419] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4716), 1, + ACTIONS(4774), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(3001), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274608,54 +280716,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96507] = 20, + [97571] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4718), 1, + ACTIONS(4778), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(3005), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274676,54 +280784,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96595] = 20, + [97659] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4720), 1, + ACTIONS(4780), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2957), 2, + STATE(2978), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274744,55 +280852,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96683] = 21, + [97747] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(3969), 1, - sym_variable, - STATE(2720), 1, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3346), 1, sym_null, - STATE(6034), 1, - sym_variadic_modifier, - STATE(3383), 2, + STATE(2971), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4502), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274813,54 +280920,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96773] = 20, + [97835] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4716), 1, + ACTIONS(4784), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2962), 2, + STATE(2963), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274881,54 +280988,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96861] = 20, + [97923] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(4694), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(4696), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(4698), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(4700), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(4702), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(4708), 1, - anon_sym_enum, - ACTIONS(4710), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(3561), 1, + ACTIONS(4786), 1, + anon_sym_RBRACE, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(3613), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3111), 1, sym_qualified_identifier, - STATE(3656), 1, + STATE(3346), 1, sym_null, - STATE(3729), 1, - sym__type_constant, - STATE(5179), 1, - sym_xhp_class_attribute, - STATE(3399), 2, + STATE(2971), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4704), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3813), 6, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - sym_xhp_enum_type, - ACTIONS(4706), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274949,33 +281056,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96949] = 3, + [98011] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2994), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4788), 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(2961), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -274995,59 +281123,55 @@ 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, - [97003] = 20, + sym_xhp_identifier, + [98099] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4722), 1, + ACTIONS(4790), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2927), 2, + STATE(2999), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275068,54 +281192,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97091] = 20, + [98187] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4724), 1, + ACTIONS(4675), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2963), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275136,105 +281260,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97179] = 3, + [98275] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2912), 38, - 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_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, - [97233] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4726), 1, + ACTIONS(4790), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2890), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275255,105 +281328,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97321] = 3, + [98363] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2883), 38, - 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_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, - [97375] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4728), 1, + ACTIONS(4792), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2991), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275374,54 +281396,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97463] = 20, + [98451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4726), 1, + ACTIONS(4792), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275442,33 +281464,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97551] = 3, + [98539] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2971), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4794), 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(3017), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -275488,59 +281531,55 @@ 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, - [97605] = 20, + sym_xhp_identifier, + [98627] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4635), 1, + ACTIONS(4796), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275561,33 +281600,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97693] = 3, + [98715] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2887), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4798), 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(2995), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -275607,38 +281667,55 @@ 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, - [97747] = 3, + sym_xhp_identifier, + [98803] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2979), 38, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_use, - anon_sym_as, + 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(4798), 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(2971), 2, + sym_typed_enumerator, + aux_sym_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(5599), 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, @@ -275658,59 +281735,55 @@ 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, - [97801] = 20, + sym_xhp_identifier, + [98891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4730), 1, + ACTIONS(4800), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275731,54 +281804,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97889] = 20, + [98979] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4730), 1, - anon_sym_RBRACE, - STATE(2720), 1, + ACTIONS(4802), 1, + sym_variable, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(2936), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(6233), 1, + sym_variadic_modifier, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(4679), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275799,54 +281873,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97977] = 20, + [99069] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4732), 1, + ACTIONS(4804), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275867,54 +281941,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98065] = 20, + [99157] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4734), 1, + ACTIONS(4806), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275935,54 +282009,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98153] = 20, + [99245] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4736), 1, + ACTIONS(4808), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2960), 2, + STATE(3007), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276003,105 +282077,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98241] = 3, + [99333] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 8, - sym_variable, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2908), 38, - 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_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, - [98295] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4738), 1, + ACTIONS(4810), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2925), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276122,54 +282145,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98383] = 20, + [99421] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4738), 1, + ACTIONS(4810), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2932), 2, + STATE(3012), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276190,54 +282213,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98471] = 20, + [99509] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4734), 1, + ACTIONS(4812), 1, anon_sym_RBRACE, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(2933), 2, + STATE(2971), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(5599), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276258,54 +282281,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98559] = 20, + [99597] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4740), 1, - anon_sym_RBRACE, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3237), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(2910), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5162), 5, + STATE(6308), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276326,53 +282348,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98647] = 20, + [99684] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4742), 1, + ACTIONS(4816), 1, anon_sym_RPAREN, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276393,53 +282415,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98734] = 20, + [99771] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, + ACTIONS(4814), 1, anon_sym_extends, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3217), 1, + STATE(3316), 1, sym_extends_clause, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6163), 5, + STATE(6333), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276460,53 +282482,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98821] = 20, + [99858] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, + ACTIONS(4814), 1, anon_sym_extends, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3256), 1, + STATE(3313), 1, sym_extends_clause, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5659), 5, + STATE(6360), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276527,53 +282549,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98908] = 20, + [99945] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, + ACTIONS(4814), 1, anon_sym_extends, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3109), 1, + STATE(3175), 1, sym_extends_clause, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6256), 5, + STATE(6046), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276594,120 +282616,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98995] = 20, + [100032] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4748), 1, + ACTIONS(4820), 1, anon_sym_RPAREN, - ACTIONS(4750), 1, + ACTIONS(4822), 1, sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3979), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [99082] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3165), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5921), 5, + STATE(4140), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276728,53 +282683,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99169] = 20, + [100119] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4752), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3267), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4166), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276795,53 +282750,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99256] = 20, + [100206] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4754), 1, + ACTIONS(4826), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276862,53 +282817,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99343] = 20, + [100293] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4756), 1, + ACTIONS(4828), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276929,53 +282884,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99430] = 20, + [100380] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4758), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3348), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(5836), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276996,187 +282951,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99517] = 20, + [100467] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4760), 1, - anon_sym_RPAREN, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4198), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [99604] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(4762), 1, + ACTIONS(4830), 1, anon_sym_RPAREN, - ACTIONS(4764), 1, - sym_inout_modifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3981), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [99691] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3117), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6224), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277197,53 +283018,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99778] = 20, + [100554] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4766), 1, + ACTIONS(4832), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277264,120 +283085,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99865] = 20, + [100641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3181), 1, - sym_extends_clause, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5893), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 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, - [99952] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3434), 1, - sym_xhp_class_identifier, - ACTIONS(4768), 1, - anon_sym_RPAREN, - ACTIONS(4770), 1, + ACTIONS(4818), 1, sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4834), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4013), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277398,53 +283152,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100039] = 20, + [100728] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4772), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3351), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(5829), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277465,53 +283219,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100126] = 20, + [100815] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4774), 1, + ACTIONS(4836), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277532,53 +283286,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100213] = 20, + [100902] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4776), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3197), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(6192), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277599,53 +283353,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100300] = 20, + [100989] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4778), 1, + ACTIONS(4838), 1, anon_sym_RPAREN, - ACTIONS(4780), 1, + ACTIONS(4840), 1, sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3962), 5, + STATE(4049), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277666,53 +283420,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100387] = 20, + [101076] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4782), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3383), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4287), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277733,120 +283487,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100474] = 20, + [101163] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4784), 1, + ACTIONS(4842), 1, anon_sym_RPAREN, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4198), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [100561] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(4786), 1, - anon_sym_LT_LT, - STATE(2720), 1, + ACTIONS(4844), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3299), 1, - sym_attribute_modifier, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4155), 5, + STATE(4055), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277867,53 +283554,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100648] = 20, + [101250] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4788), 1, - anon_sym_RPAREN, - ACTIONS(4790), 1, + ACTIONS(4818), 1, sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4846), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4011), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277934,53 +283621,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100735] = 20, + [101337] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4792), 1, + ACTIONS(4848), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278001,53 +283688,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100822] = 20, + [101424] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4794), 1, + ACTIONS(4850), 1, anon_sym_RPAREN, - ACTIONS(4796), 1, + ACTIONS(4852), 1, sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3963), 5, + STATE(4093), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278068,53 +283755,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100909] = 20, + [101511] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4818), 1, + sym_inout_modifier, + ACTIONS(4854), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(2840), 1, - aux_sym_where_clause_repeat1, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(3435), 1, - sym_where_constraint, - STATE(3398), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4762), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278135,53 +283822,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100996] = 20, + [101598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4786), 1, - anon_sym_LT_LT, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3170), 1, - sym_attribute_modifier, - STATE(3495), 1, + STATE(3366), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4208), 5, + STATE(6191), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278202,53 +283889,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101083] = 20, + [101685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4798), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278269,53 +283956,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101170] = 20, + [101772] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4800), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3191), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(6175), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278336,53 +284023,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101257] = 20, + [101859] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4802), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278403,53 +284090,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101344] = 20, + [101946] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4804), 1, + ACTIONS(4860), 1, anon_sym_RPAREN, - ACTIONS(4806), 1, + ACTIONS(4862), 1, sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4032), 5, + STATE(4137), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278470,53 +284157,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101431] = 20, + [102033] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4808), 1, + ACTIONS(4864), 1, anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4866), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4032), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278537,120 +284224,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101518] = 20, + [102120] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4810), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3718), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_null, - STATE(3383), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4198), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(973), 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, - [101605] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3138), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6012), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278671,53 +284291,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101692] = 20, + [102207] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4812), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278738,53 +284358,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101779] = 20, + [102294] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_RPAREN, - ACTIONS(4816), 1, + ACTIONS(4818), 1, sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4872), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4004), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278805,53 +284425,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101866] = 20, + [102381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, ACTIONS(4818), 1, - anon_sym_RPAREN, - ACTIONS(4820), 1, sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4874), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3972), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278872,53 +284492,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101953] = 20, + [102468] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4822), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278939,53 +284559,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102040] = 20, + [102555] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4878), 1, + anon_sym_RPAREN, + ACTIONS(4880), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3260), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6123), 5, + STATE(4062), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279006,53 +284626,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102127] = 20, + [102642] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4824), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279073,53 +284693,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102214] = 20, + [102729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4786), 1, + ACTIONS(4824), 1, anon_sym_LT_LT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3154), 1, + STATE(3398), 1, sym_attribute_modifier, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4196), 5, + STATE(4328), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279140,53 +284760,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102301] = 20, + [102816] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + 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, sym_inout_modifier, - ACTIONS(4826), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279207,53 +284894,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102388] = 20, + [102990] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4828), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4888), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4064), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279274,53 +284961,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102475] = 20, + [103077] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3224), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3225), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5774), 5, + STATE(4392), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279341,53 +285028,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102562] = 20, + [103164] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4830), 1, + ACTIONS(4890), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279408,53 +285095,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102649] = 20, + [103251] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4786), 1, - anon_sym_LT_LT, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3215), 1, - sym_attribute_modifier, - STATE(3495), 1, + STATE(3155), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4174), 5, + STATE(5944), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279475,53 +285162,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102736] = 20, + [103338] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4832), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279542,53 +285229,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102823] = 20, + [103425] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4818), 1, + sym_inout_modifier, + ACTIONS(4894), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3311), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5784), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279609,53 +285296,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102910] = 20, + [103512] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4818), 1, + sym_inout_modifier, + ACTIONS(4896), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3158), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6085), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279676,53 +285363,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102997] = 20, + [103599] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4834), 1, - anon_sym_RPAREN, - ACTIONS(4836), 1, - sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3261), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3971), 5, + STATE(4190), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279743,53 +285430,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103084] = 20, + [103686] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4786), 1, - anon_sym_LT_LT, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3187), 1, - sym_attribute_modifier, - STATE(3495), 1, + STATE(3178), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4118), 5, + STATE(6074), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279810,53 +285497,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103171] = 20, + [103773] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4838), 1, - anon_sym_RPAREN, - ACTIONS(4840), 1, + ACTIONS(4818), 1, sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4898), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4003), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279877,53 +285564,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103258] = 20, + [103860] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4842), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279944,53 +285631,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103345] = 20, + [103947] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4902), 1, + anon_sym_RPAREN, + ACTIONS(4904), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3240), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6142), 5, + STATE(4115), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280011,53 +285698,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103432] = 20, + [104034] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4844), 1, + ACTIONS(4906), 1, anon_sym_RPAREN, - ACTIONS(4846), 1, + ACTIONS(4908), 1, sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4017), 5, + STATE(4092), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280078,53 +285765,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103519] = 20, + [104121] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4848), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3206), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(5924), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280145,53 +285832,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103606] = 20, + [104208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4850), 1, + ACTIONS(4910), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280212,53 +285899,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103693] = 20, + [104295] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4786), 1, - anon_sym_LT_LT, - STATE(2720), 1, + ACTIONS(4814), 1, + anon_sym_extends, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3201), 1, - sym_attribute_modifier, - STATE(3495), 1, + STATE(3232), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4180), 5, + STATE(6297), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280279,53 +285966,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103780] = 20, + [104382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - ACTIONS(4852), 1, + ACTIONS(4912), 1, anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4914), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4114), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280346,53 +286033,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103867] = 20, + [104469] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4916), 1, + anon_sym_RPAREN, + ACTIONS(4918), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3303), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6030), 5, + STATE(4098), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280413,53 +286100,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103954] = 20, + [104556] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4854), 1, + ACTIONS(4920), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280480,53 +286167,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104041] = 20, + [104643] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4856), 1, + ACTIONS(4922), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280547,53 +286234,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104128] = 20, + [104730] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4858), 1, + ACTIONS(4924), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280614,53 +286301,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104215] = 20, + [104817] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4860), 1, + ACTIONS(4926), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280681,53 +286368,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104302] = 20, + [104904] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4746), 1, - anon_sym_extends, - STATE(2720), 1, + ACTIONS(4818), 1, + sym_inout_modifier, + ACTIONS(4928), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3125), 1, - sym_extends_clause, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5674), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280748,53 +286435,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104389] = 20, + [104991] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4862), 1, - anon_sym_RPAREN, - ACTIONS(4864), 1, + ACTIONS(4818), 1, sym_inout_modifier, - STATE(2720), 1, + ACTIONS(4930), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3991), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280815,53 +286502,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104476] = 20, + [105078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4866), 1, - anon_sym_RPAREN, - ACTIONS(4868), 1, - sym_inout_modifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(2943), 1, + aux_sym_where_clause_repeat1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3346), 1, sym_null, - STATE(3383), 2, + STATE(3503), 1, + sym_where_constraint, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3988), 5, + STATE(5034), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280882,53 +286569,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104563] = 20, + [105165] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4870), 1, + ACTIONS(4932), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280949,53 +286636,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104650] = 20, + [105252] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, + ACTIONS(4818), 1, sym_inout_modifier, - ACTIONS(4872), 1, + ACTIONS(4934), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281016,51 +286703,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104737] = 19, + [105339] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4874), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3339), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4490), 5, + STATE(4332), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281081,51 +286770,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104821] = 19, + [105426] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4876), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4936), 1, + anon_sym_RPAREN, + ACTIONS(4938), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4418), 5, + STATE(4110), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281146,51 +286837,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104905] = 19, + [105513] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4880), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4940), 1, + anon_sym_RPAREN, + ACTIONS(4942), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(3389), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4799), 5, + STATE(4108), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281211,51 +286904,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104989] = 19, + [105600] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4882), 1, + ACTIONS(4818), 1, + sym_inout_modifier, + ACTIONS(4944), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281276,51 +286971,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105073] = 19, + [105687] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4884), 1, + ACTIONS(4946), 1, anon_sym_function, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4537), 5, + STATE(4811), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281341,51 +287036,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105157] = 19, + [105771] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4886), 1, + ACTIONS(4950), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4713), 5, + STATE(4895), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281406,51 +287101,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105241] = 19, + [105855] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4888), 1, + ACTIONS(4952), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281471,51 +287166,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105325] = 19, + [105939] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4890), 1, + ACTIONS(4954), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4519), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281536,51 +287231,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105409] = 19, + [106023] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4892), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4956), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281601,51 +287296,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105493] = 19, + [106107] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4894), 1, + ACTIONS(4958), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281666,51 +287361,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105577] = 19, + [106191] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4896), 1, + ACTIONS(4960), 1, anon_sym_function, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4940), 5, + STATE(5175), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281731,51 +287426,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105661] = 19, + [106275] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4898), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(4962), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281796,51 +287491,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105745] = 19, + [106359] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4900), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4964), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4819), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281861,51 +287556,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105829] = 19, + [106443] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4902), 1, + ACTIONS(4966), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281926,51 +287621,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105913] = 19, + [106527] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4904), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4968), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(4902), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281991,51 +287686,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105997] = 19, + [106611] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4906), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4970), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(4596), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282056,51 +287751,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106081] = 19, + [106695] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4908), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4972), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(4840), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282121,51 +287816,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106165] = 19, + [106779] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4910), 1, + ACTIONS(4974), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5014), 5, + STATE(4623), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282186,51 +287881,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106249] = 19, + [106863] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(1057), 1, + anon_sym_GT, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4912), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5250), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282251,51 +287946,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106333] = 19, + [106947] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4914), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4976), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5246), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282316,51 +288011,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106417] = 19, + [107031] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4916), 1, + ACTIONS(4978), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282381,116 +288076,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106501] = 19, + [107115] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4918), 1, - anon_sym_RPAREN, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3701), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 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, - [106585] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1037), 1, - anon_sym_GT, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - STATE(2720), 1, + ACTIONS(4980), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4548), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282511,51 +288141,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106669] = 19, + [107199] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4920), 1, + ACTIONS(4982), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5231), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282576,51 +288206,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106753] = 19, + [107283] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4922), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4984), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4470), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282641,51 +288271,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106837] = 19, + [107367] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(4924), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4818), 1, + sym_inout_modifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4967), 5, + STATE(4345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282706,51 +288336,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106921] = 19, + [107451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2678), 1, + 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, anon_sym_shape, - ACTIONS(2680), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4926), 1, - anon_sym_GT, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, - sym_qualified_identifier, - STATE(3381), 1, - sym_null, - STATE(3389), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(3701), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1035), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282770,52 +288387,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [107005] = 19, + anon_sym_super, + [107509] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4928), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4988), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282836,51 +288453,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107089] = 19, + [107593] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4930), 1, + ACTIONS(4990), 1, anon_sym_function, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5065), 5, + STATE(4567), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282901,51 +288518,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107173] = 19, + [107677] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4932), 1, + ACTIONS(4992), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282966,51 +288583,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107257] = 19, + [107761] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4934), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4994), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283031,116 +288648,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107341] = 19, + [107845] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4936), 1, - anon_sym_function, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4498), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 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, - [107425] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3957), 1, - sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4938), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(4996), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283161,51 +288713,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107509] = 19, + [107929] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4940), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(3541), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5241), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283226,51 +288778,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107593] = 19, + [108013] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4942), 1, + ACTIONS(4998), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4436), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283291,51 +288843,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107677] = 19, + [108097] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4944), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5000), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5027), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283356,51 +288908,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107761] = 19, + [108181] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4946), 1, + ACTIONS(5002), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283421,51 +288973,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107845] = 19, + [108265] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(5004), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283486,51 +289038,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107929] = 19, + [108349] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4950), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5006), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283551,51 +289103,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108013] = 19, + [108433] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4952), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5008), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283616,51 +289168,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108097] = 19, + [108517] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4954), 1, + ACTIONS(5010), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4476), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283681,51 +289233,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108181] = 19, + [108601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, + 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, sym_identifier, - ACTIONS(2678), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(2680), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - ACTIONS(4956), 1, - anon_sym_RPAREN, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(3701), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283745,52 +289284,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [108265] = 19, + anon_sym_super, + [108659] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4958), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(5012), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5024), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283811,51 +289350,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108349] = 19, + [108743] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4960), 1, + ACTIONS(5014), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283876,51 +289415,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108433] = 19, + [108827] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4962), 1, + ACTIONS(5016), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283941,51 +289480,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108517] = 19, + [108911] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4964), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(5018), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4646), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284006,51 +289545,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108601] = 19, + [108995] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4966), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(5020), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5106), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284071,51 +289610,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108685] = 19, + [109079] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4744), 1, - sym_inout_modifier, - STATE(2720), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4198), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284136,51 +289675,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108769] = 19, + [109163] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4968), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(5024), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4707), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284201,51 +289740,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108853] = 19, + [109247] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4970), 1, + ACTIONS(5026), 1, anon_sym_RPAREN, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284266,51 +289805,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108937] = 19, + [109331] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4972), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5028), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4460), 5, + STATE(4573), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284331,51 +289870,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109021] = 19, + [109415] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4974), 1, + ACTIONS(5030), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284396,51 +289935,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109105] = 19, + [109499] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(3507), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4528), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284461,51 +290000,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109189] = 19, + [109583] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4976), 1, + ACTIONS(5034), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(4979), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284526,51 +290065,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109273] = 19, + [109667] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4978), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5036), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284591,51 +290130,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109357] = 19, + [109751] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4980), 1, - anon_sym_function, - STATE(2720), 1, + ACTIONS(5038), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4735), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284656,51 +290195,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109441] = 19, + [109835] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4982), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(5040), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284721,51 +290260,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109525] = 19, + [109919] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4984), 1, + ACTIONS(5042), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284786,51 +290325,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109609] = 19, + [110003] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - ACTIONS(4986), 1, - anon_sym_GT, - STATE(2720), 1, + ACTIONS(5044), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4916), 5, + STATE(4974), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284851,51 +290390,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109693] = 19, + [110087] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, + ACTIONS(4948), 1, sym_identifier, - ACTIONS(4988), 1, + ACTIONS(5046), 1, anon_sym_GT, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284916,49 +290455,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109777] = 18, + [110171] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(5048), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4089), 5, + STATE(4609), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284979,49 +290520,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109858] = 18, + [110255] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5050), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6321), 5, + STATE(4817), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285042,49 +290585,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109939] = 18, + [110339] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(5052), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5822), 5, + STATE(4633), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285105,49 +290650,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110020] = 18, + [110423] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(5054), 1, + anon_sym_GT, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3398), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5213), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285168,49 +290715,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110101] = 18, + [110507] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(5056), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5694), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285231,49 +290780,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110182] = 18, + [110591] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(5058), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5756), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285294,49 +290845,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110263] = 18, + [110675] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(5060), 1, + anon_sym_RPAREN, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5717), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285357,49 +290910,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110344] = 18, + [110759] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(5062), 1, + anon_sym_function, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5744), 5, + STATE(4864), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285420,49 +290975,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110425] = 18, + [110843] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5767), 5, + STATE(6382), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285483,49 +291038,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110506] = 18, + [110924] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6259), 5, + STATE(6241), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285546,49 +291101,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110587] = 18, + [111005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4307), 5, + STATE(5931), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285609,49 +291164,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110668] = 18, + [111086] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6013), 5, + STATE(5933), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285672,49 +291227,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110749] = 18, + [111167] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5885), 5, + STATE(5029), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285735,49 +291290,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110830] = 18, + [111248] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6243), 5, + STATE(4048), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285798,49 +291353,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110911] = 18, + [111329] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5409), 5, + STATE(5986), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285861,49 +291416,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110992] = 18, + [111410] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6109), 5, + STATE(4049), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285924,49 +291479,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111073] = 18, + [111491] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5083), 5, + STATE(5948), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285987,49 +291542,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111154] = 18, + [111572] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6333), 5, + STATE(5608), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286050,49 +291605,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111235] = 18, + [111653] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5664), 5, + STATE(5039), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286113,49 +291668,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111316] = 18, + [111734] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4088), 5, + STATE(6040), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286176,49 +291731,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111397] = 18, + [111815] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5656), 5, + STATE(6050), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286239,49 +291794,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111478] = 18, + [111896] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5116), 5, + STATE(6125), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286302,49 +291857,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111559] = 18, + [111977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5663), 5, + STATE(5594), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286365,49 +291920,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111640] = 18, + [112058] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5231), 5, + STATE(6037), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286428,49 +291983,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111721] = 18, + [112139] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5668), 5, + STATE(6036), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286491,49 +292046,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111802] = 18, + [112220] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5666), 5, + STATE(4061), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286554,49 +292109,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111883] = 18, + [112301] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5813), 5, + STATE(6153), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286617,49 +292172,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111964] = 18, + [112382] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5820), 5, + STATE(4062), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286680,49 +292235,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112045] = 18, + [112463] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4801), 5, + STATE(6163), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286743,49 +292298,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112126] = 18, + [112544] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5673), 5, + STATE(4089), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286806,49 +292361,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112207] = 18, + [112625] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5926), 5, + STATE(6187), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286869,49 +292424,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112288] = 18, + [112706] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5675), 5, + STATE(6041), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286932,49 +292487,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112369] = 18, + [112787] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4975), 5, + STATE(6024), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286995,49 +292550,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112450] = 18, + [112868] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6169), 5, + STATE(6056), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287058,49 +292613,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112531] = 18, + [112949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5679), 5, + STATE(6064), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287121,49 +292676,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112612] = 18, + [113030] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5827), 5, + STATE(5098), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287184,49 +292739,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112693] = 18, + [113111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5657), 5, + STATE(6021), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287247,49 +292802,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112774] = 18, + [113192] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4136), 5, + STATE(5564), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287310,49 +292865,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112855] = 18, + [113273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6007), 5, + STATE(5954), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287373,49 +292928,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112936] = 18, + [113354] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5678), 5, + STATE(5524), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287436,49 +292991,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113017] = 18, + [113435] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5836), 5, + STATE(5108), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287499,49 +293054,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113098] = 18, + [113516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5685), 5, + STATE(6225), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287562,49 +293117,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113179] = 18, + [113597] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6119), 5, + STATE(6015), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287625,49 +293180,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113260] = 18, + [113678] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5965), 5, + STATE(5510), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287688,49 +293243,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113341] = 18, + [113759] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5688), 5, + STATE(6198), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287751,49 +293306,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113422] = 18, + [113840] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4011), 5, + STATE(4597), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287814,49 +293369,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113503] = 18, + [113921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5575), 5, + STATE(6070), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287877,49 +293432,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113584] = 18, + [114002] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6025), 5, + STATE(6172), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287940,49 +293495,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113665] = 18, + [114083] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4827), 5, + STATE(6200), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288003,49 +293558,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113746] = 18, + [114164] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6038), 5, + STATE(6206), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288066,49 +293621,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113827] = 18, + [114245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3827), 1, sym_null, - STATE(3383), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4010), 5, + STATE(4092), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288129,49 +293684,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113908] = 18, + [114326] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5838), 5, + STATE(6218), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288192,49 +293747,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113989] = 18, + [114407] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5851), 5, + STATE(6183), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288255,49 +293810,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114070] = 18, + [114488] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5865), 5, + STATE(6185), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288318,49 +293873,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114151] = 18, + [114569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4208), 5, + STATE(5165), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288381,49 +293936,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114232] = 18, + [114650] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6075), 5, + STATE(5984), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288444,49 +293999,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114313] = 18, + [114731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6032), 5, + STATE(6219), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288507,49 +294062,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114394] = 18, + [114812] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5874), 5, + STATE(6195), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288570,49 +294125,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114475] = 18, + [114893] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6153), 5, + STATE(5678), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288633,49 +294188,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114556] = 18, + [114974] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(3398), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5218), 5, + STATE(4107), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288696,49 +294251,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114637] = 18, + [115055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5096), 5, + STATE(5437), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288759,49 +294314,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114718] = 18, + [115136] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(3659), 1, - anon_sym_BSLASH, - ACTIONS(4990), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(4992), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(4994), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(4996), 1, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(5000), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2144), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2311), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(2521), 1, + STATE(3546), 1, sym_null, - STATE(2523), 1, - sym__type_constant, - STATE(3397), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1117), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(2608), 5, + STATE(6066), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(4998), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288822,49 +294377,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114799] = 18, + [115217] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6160), 5, + STATE(5923), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288885,49 +294440,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114880] = 18, + [115298] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6143), 5, + STATE(5173), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288948,49 +294503,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114961] = 18, + [115379] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(5002), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(5004), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(5006), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(5008), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(5010), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(5016), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(3385), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(3391), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(3405), 1, + STATE(3546), 1, sym_null, - STATE(3406), 1, - sym__type_constant, - STATE(3388), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(5012), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3449), 5, + STATE(6222), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5014), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289011,49 +294566,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115042] = 18, + [115460] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5901), 5, + STATE(6223), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289074,49 +294629,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115123] = 18, + [115541] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4347), 5, + STATE(6224), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289137,49 +294692,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115204] = 18, + [115622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5861), 5, + STATE(5754), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289200,49 +294755,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115285] = 18, + [115703] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4061), 5, + STATE(4108), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289263,49 +294818,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115366] = 18, + [115784] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3827), 1, sym_null, - STATE(3398), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5234), 5, + STATE(4113), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289326,49 +294881,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115447] = 18, + [115865] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4218), 5, + STATE(5978), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289389,49 +294944,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115528] = 18, + [115946] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5896), 5, + STATE(5580), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289452,49 +295007,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115609] = 18, + [116027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5959), 5, + STATE(4114), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289515,49 +295070,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115690] = 18, + [116108] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5958), 5, + STATE(5973), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289578,49 +295133,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115771] = 18, + [116189] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5950), 5, + STATE(5584), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289641,49 +295196,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115852] = 18, + [116270] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(5064), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(5066), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(5068), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(5070), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(5072), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(5078), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(3448), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, + STATE(3453), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3468), 1, sym_null, - STATE(3401), 2, + STATE(3473), 1, + sym__type_constant, + STATE(3449), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(5074), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6021), 5, + STATE(3492), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(5076), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289704,49 +295259,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115933] = 18, + [116351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5561), 5, + STATE(5768), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289767,49 +295322,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116014] = 18, + [116432] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3389), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5423), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289830,49 +295385,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116095] = 18, + [116513] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6066), 5, + STATE(6113), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289893,49 +295448,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116176] = 18, + [116594] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5980), 5, + STATE(4136), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289956,49 +295511,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116257] = 18, + [116675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6017), 5, + STATE(6068), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290019,49 +295574,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116338] = 18, + [116756] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5890), 5, + STATE(4332), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290082,49 +295637,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116419] = 18, + [116837] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3346), 1, sym_null, - STATE(3398), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6043), 5, + STATE(5422), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290145,49 +295700,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116500] = 18, + [116918] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5728), 5, + STATE(4137), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290208,49 +295763,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116581] = 18, + [116999] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5735), 5, + STATE(6276), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290271,49 +295826,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116662] = 18, + [117080] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5740), 5, + STATE(6137), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290334,49 +295889,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116743] = 18, + [117161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4003), 5, + STATE(5790), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290397,49 +295952,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116824] = 18, + [117242] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4155), 5, + STATE(5798), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290460,49 +296015,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116905] = 18, + [117323] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5745), 5, + STATE(6292), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290523,49 +296078,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116986] = 18, + [117404] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5746), 5, + STATE(5802), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290586,49 +296141,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117067] = 18, + [117485] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4969), 5, + STATE(5778), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290649,49 +296204,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117148] = 18, + [117566] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5750), 5, + STATE(6300), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290712,49 +296267,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117229] = 18, + [117647] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5943), 5, + STATE(4958), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290775,49 +296330,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117310] = 18, + [117728] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5879), 5, + STATE(6302), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290838,49 +296393,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117391] = 18, + [117809] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5852), 5, + STATE(5214), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290901,49 +296456,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117472] = 18, + [117890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, + 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, - ACTIONS(2678), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(2680), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(6190), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290963,50 +296503,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [117553] = 18, + anon_sym_super, + [117941] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5866), 5, + STATE(5953), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291027,49 +296567,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117634] = 18, + [118022] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(3760), 1, + anon_sym_BSLASH, + ACTIONS(5080), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(5082), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(5084), 1, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(5090), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2218), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, + STATE(2354), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(2593), 1, + sym__type_constant, + STATE(2596), 1, sym_null, - STATE(3401), 2, + STATE(3445), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(1141), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5212), 5, + STATE(2738), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(5088), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291090,49 +296630,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117715] = 18, + [118103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5070), 5, + STATE(4955), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291153,49 +296693,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117796] = 18, + [118184] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5751), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291216,49 +296756,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117877] = 18, + [118265] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5644), 5, + STATE(6303), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291279,49 +296819,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117958] = 18, + [118346] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4200), 5, + STATE(6323), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291342,49 +296882,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118039] = 18, + [118427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3346), 1, sym_null, - STATE(3383), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4009), 5, + STATE(5344), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291405,49 +296945,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118120] = 18, + [118508] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5760), 5, + STATE(5225), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291468,49 +297008,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118201] = 18, + [118589] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5761), 5, + STATE(6189), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291531,49 +297071,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118282] = 18, + [118670] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5830), 5, + STATE(6190), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291594,49 +297134,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118363] = 18, + [118751] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(5064), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(5066), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(5068), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(5070), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(5072), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(5078), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(3448), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, + STATE(3453), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3468), 1, sym_null, - STATE(3401), 2, + STATE(3473), 1, + sym__type_constant, + STATE(3449), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(5074), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5308), 5, + STATE(3511), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(5076), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291657,49 +297197,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118444] = 18, + [118832] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5762), 5, + STATE(6160), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291720,49 +297260,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118525] = 18, + [118913] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6266), 5, + STATE(5805), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291783,49 +297323,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118606] = 18, + [118994] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5764), 5, + STATE(6088), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291846,49 +297386,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118687] = 18, + [119075] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5995), 5, + STATE(6082), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291909,49 +297449,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118768] = 18, + [119156] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5769), 5, + STATE(5785), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291972,49 +297512,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118849] = 18, + [119237] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6018), 5, + STATE(6081), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292035,49 +297575,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118930] = 18, + [119318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4984), 5, + STATE(5930), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292098,49 +297638,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119011] = 18, + [119399] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6187), 5, + STATE(5326), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292161,49 +297701,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119092] = 18, + [119480] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4196), 5, + STATE(6337), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292224,49 +297764,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119173] = 18, + [119561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6114), 5, + STATE(6073), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292287,49 +297827,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119254] = 18, + [119642] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6152), 5, + STATE(4230), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292350,49 +297890,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119335] = 18, + [119723] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5710), 5, + STATE(6427), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292413,49 +297953,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119416] = 18, + [119804] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4001), 5, + STATE(6452), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292476,49 +298016,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119497] = 18, + [119885] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(5002), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(5004), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(5006), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(5008), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(5010), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(5016), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(3385), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(3391), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(3405), 1, + STATE(3546), 1, sym_null, - STATE(3406), 1, - sym__type_constant, - STATE(3388), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(5012), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3453), 5, + STATE(5834), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5014), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292539,49 +298079,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119578] = 18, + [119966] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5628), 5, + STATE(6457), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292602,49 +298142,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119659] = 18, + [120047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 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(2678), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(2680), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(6058), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292664,50 +298189,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [119740] = 18, + anon_sym_super, + [120098] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5786), 5, + STATE(4392), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292728,49 +298253,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119821] = 18, + [120179] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5757), 5, + STATE(6399), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292791,49 +298316,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119902] = 18, + [120260] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6149), 5, + STATE(6373), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292854,49 +298379,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119983] = 18, + [120341] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5880), 5, + STATE(6035), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292917,49 +298442,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120064] = 18, + [120422] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3988), 5, + STATE(6357), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292980,49 +298505,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120145] = 18, + [120503] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6207), 5, + STATE(6353), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293043,49 +298568,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120226] = 18, + [120584] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5755), 5, + STATE(6346), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293106,49 +298631,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120307] = 18, + [120665] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3960), 5, + STATE(6341), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293169,49 +298694,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120388] = 18, + [120746] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5797), 5, + STATE(3796), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293232,49 +298757,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120469] = 18, + [120827] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6332), 5, + STATE(6010), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293295,49 +298820,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120550] = 18, + [120908] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6330), 5, + STATE(6340), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293358,49 +298883,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120631] = 18, + [120989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5432), 5, + STATE(6339), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293421,49 +298946,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120712] = 18, + [121070] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5758), 5, + STATE(6029), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293484,49 +299009,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120793] = 18, + [121151] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6326), 5, + STATE(6028), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293547,49 +299072,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120874] = 18, + [121232] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3986), 5, + STATE(5879), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293610,49 +299135,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120955] = 18, + [121313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5777), 5, + STATE(6020), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293673,49 +299198,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121036] = 18, + [121394] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5449), 5, + STATE(5935), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293736,49 +299261,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121117] = 18, + [121475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, + 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, - ACTIONS(2678), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(2680), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, - sym_qualified_identifier, - STATE(3497), 1, - sym_null, - STATE(3401), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 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(6141), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2702), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293798,50 +299308,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [121198] = 18, + anon_sym_super, + [121526] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4362), 5, + STATE(6298), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293862,49 +299372,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121279] = 18, + [121607] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5934), 5, + STATE(6169), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293925,49 +299435,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121360] = 18, + [121688] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5793), 5, + STATE(6031), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293988,49 +299498,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121441] = 18, + [121769] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5801), 5, + STATE(5982), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294051,49 +299561,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121522] = 18, + [121850] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + ACTIONS(4948), 1, + sym_identifier, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3437), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5802), 5, + STATE(4212), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294114,49 +299624,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121603] = 18, + [121931] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6067), 5, + STATE(4276), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294177,49 +299687,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121684] = 18, + [122012] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5799), 5, + STATE(4032), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294240,49 +299750,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121765] = 18, + [122093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5809), 5, + STATE(5919), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294303,49 +299813,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121846] = 18, + [122174] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6322), 5, + STATE(6267), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294366,49 +299876,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121927] = 18, + [122255] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5914), 5, + STATE(6263), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294429,49 +299939,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122008] = 18, + [122336] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5911), 5, + STATE(6409), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294492,49 +300002,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122089] = 18, + [122417] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5798), 5, + STATE(6065), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294555,49 +300065,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122170] = 18, + [122498] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5796), 5, + STATE(4416), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294618,49 +300128,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122251] = 18, + [122579] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5811), 5, + STATE(6304), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294681,49 +300191,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122332] = 18, + [122660] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(5018), 1, + ACTIONS(5092), 1, sym_identifier, - ACTIONS(5020), 1, + ACTIONS(5094), 1, anon_sym_shape, - ACTIONS(5022), 1, + ACTIONS(5096), 1, anon_sym_LPAREN, - ACTIONS(5026), 1, + ACTIONS(5100), 1, sym_xhp_class_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(1745), 1, + STATE(1789), 1, sym_qualified_identifier, - STATE(1758), 1, - sym_null, - STATE(1767), 1, + STATE(1805), 1, sym__type_constant, - STATE(3394), 2, + STATE(1809), 1, + sym_null, + STATE(3439), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1201), 3, + ACTIONS(1229), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(1780), 5, + STATE(1837), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5024), 20, + ACTIONS(5098), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294744,49 +300254,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122413] = 18, + [122741] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5658), 5, + STATE(5275), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294807,49 +300317,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122494] = 18, + [122822] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6298), 5, + STATE(5976), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294870,49 +300380,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122575] = 18, + [122903] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(2913), 1, + anon_sym_BSLASH, + ACTIONS(5102), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(5104), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(5106), 1, anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(5108), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(5112), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(1806), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, + STATE(1864), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(1882), 1, + sym__type_constant, + STATE(1885), 1, sym_null, - STATE(3401), 2, + STATE(3451), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6240), 5, + STATE(1935), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(5110), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294933,49 +300443,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122656] = 18, + [122984] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5791), 5, + STATE(5975), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294996,49 +300506,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122737] = 18, + [123065] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6272), 5, + STATE(6215), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295059,49 +300569,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122818] = 18, + [123146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5309), 5, + STATE(5967), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295122,49 +300632,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122899] = 18, + [123227] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5781), 5, + STATE(6177), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295185,49 +300695,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122980] = 18, + [123308] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6053), 5, + STATE(6181), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295248,49 +300758,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123061] = 18, + [123389] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2857), 1, - anon_sym_BSLASH, - ACTIONS(5028), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(5030), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(5032), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(5034), 1, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(5038), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(1768), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(1822), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(1836), 1, + STATE(3546), 1, sym_null, - STATE(1837), 1, - sym__type_constant, - STATE(3393), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(85), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(1852), 5, + STATE(6320), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5036), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295311,49 +300821,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123142] = 18, + [123470] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5938), 5, + STATE(5912), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295374,49 +300884,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123223] = 18, + [123551] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6074), 5, + STATE(4355), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295437,49 +300947,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123304] = 18, + [123632] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - sym_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3389), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4140), 5, + STATE(5641), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295500,49 +301010,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123385] = 18, + [123713] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5898), 5, + STATE(6156), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295563,49 +301073,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123466] = 18, + [123794] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5847), 5, + STATE(6362), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295626,49 +301136,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123547] = 18, + [123875] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3979), 5, + STATE(4998), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295689,49 +301199,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123628] = 18, + [123956] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5031), 5, + STATE(6356), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295752,49 +301262,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123709] = 18, + [124037] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5749), 5, + STATE(6345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295815,49 +301325,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123790] = 18, + [124118] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5733), 5, + STATE(5228), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295878,49 +301388,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123871] = 18, + [124199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5932), 5, + STATE(6148), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295941,49 +301451,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123952] = 18, + [124280] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(5064), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(5066), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(5068), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(5070), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(5072), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(5078), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(3448), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3495), 1, + STATE(3453), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3468), 1, sym_null, - STATE(3401), 2, + STATE(3473), 1, + sym__type_constant, + STATE(3449), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(5074), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5708), 5, + STATE(3516), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(5076), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296004,49 +301514,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124033] = 18, + [124361] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5984), 5, + STATE(5929), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296067,49 +301577,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124114] = 18, + [124442] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5889), 5, + STATE(6141), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296130,49 +301640,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124195] = 18, + [124523] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5718), 5, + STATE(5922), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296193,49 +301703,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124276] = 18, + [124604] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5944), 5, + STATE(6329), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296256,49 +301766,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124357] = 18, + [124685] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6210), 5, + STATE(5363), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296319,49 +301829,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124438] = 18, + [124766] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4123), 5, + STATE(6138), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296382,39 +301892,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124519] = 18, + [124847] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -296424,7 +301934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296445,49 +301955,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124600] = 18, + [124928] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5704), 5, + STATE(5208), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296508,49 +302018,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124681] = 18, + [125009] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6253), 5, + STATE(5921), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296571,49 +302081,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124762] = 18, + [125090] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6323), 5, + STATE(6135), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296634,49 +302144,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124843] = 18, + [125171] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5863), 5, + STATE(6132), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296697,49 +302207,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124924] = 18, + [125252] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6267), 5, + STATE(6131), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296760,49 +302270,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125005] = 18, + [125333] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5655), 5, + STATE(6150), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296823,49 +302333,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125086] = 18, + [125414] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6269), 5, + STATE(5913), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296886,49 +302396,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125167] = 18, + [125495] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6282), 5, + STATE(6077), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296949,49 +302459,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125248] = 18, + [125576] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5025), 5, + STATE(5417), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297012,49 +302522,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125329] = 18, + [125657] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6167), 5, + STATE(6230), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297075,49 +302585,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125410] = 18, + [125738] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5941), 5, + STATE(5692), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297138,49 +302648,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125491] = 18, + [125819] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5780), 5, + STATE(5875), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297201,49 +302711,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125572] = 18, + [125900] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4209), 5, + STATE(4434), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297264,49 +302774,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125653] = 18, + [125981] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3775), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3827), 1, sym_null, - STATE(3401), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5947), 5, + STATE(4094), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297327,49 +302837,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125734] = 18, + [126062] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6324), 5, + STATE(5841), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297390,49 +302900,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125815] = 18, + [126143] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5323), 5, + STATE(5664), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297453,49 +302963,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125896] = 18, + [126224] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4180), 5, + STATE(4985), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297516,49 +303026,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125977] = 18, + [126305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5691), 5, + STATE(5215), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297579,49 +303089,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126058] = 18, + [126386] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5692), 5, + STATE(4192), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297642,49 +303152,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126139] = 18, + [126467] = 5, + 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, + 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, + [126522] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3978), 5, + STATE(4161), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297705,49 +303265,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126220] = 18, + [126603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6022), 5, + STATE(5833), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297768,49 +303328,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126301] = 18, + [126684] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5846), 5, + STATE(5832), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297831,49 +303391,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126382] = 18, + [126765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(2830), 6, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(2832), 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, + [126816] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5389), 5, + STATE(5823), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297894,49 +303502,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126463] = 18, + [126897] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5714), 5, + STATE(6461), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297957,49 +303565,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126544] = 18, + [126978] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3962), 5, + STATE(5852), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298020,49 +303628,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126625] = 18, + [127059] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(1097), 1, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, + anon_sym_shape, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(1099), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2698), 1, + ACTIONS(2671), 1, + anon_sym_LPAREN, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(5040), 1, - sym_identifier, - ACTIONS(5042), 1, - anon_sym_shape, - ACTIONS(5044), 1, - anon_sym_LPAREN, - ACTIONS(5048), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(1778), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2082), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(2154), 1, + STATE(3546), 1, sym_null, - STATE(2166), 1, - sym__type_constant, - STATE(3382), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1175), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(2404), 5, + STATE(5837), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5046), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298083,49 +303691,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126706] = 18, + [127140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4017), 5, + STATE(5877), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298146,49 +303754,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126787] = 18, + [127221] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5955), 5, + STATE(5874), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298209,49 +303817,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126868] = 18, + [127302] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5779), 5, + STATE(6011), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298272,49 +303880,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126949] = 18, + [127383] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5229), 5, + STATE(6119), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298335,49 +303943,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127030] = 18, + [127464] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5906), 5, + STATE(5529), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298398,49 +304006,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127111] = 18, + [127545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5667), 5, + STATE(5782), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298461,49 +304069,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127192] = 18, + [127626] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6176), 5, + STATE(5786), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298524,49 +304132,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127273] = 18, + [127707] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5771), 5, + STATE(5890), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298587,49 +304195,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127354] = 18, + [127788] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6102), 5, + STATE(5791), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298650,49 +304258,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127435] = 18, + [127869] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6325), 5, + STATE(5793), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298713,49 +304321,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127516] = 18, + [127950] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5385), 5, + STATE(6116), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298776,49 +304384,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127597] = 18, + [128031] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6209), 5, + STATE(5955), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298839,49 +304447,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127678] = 18, + [128112] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4175), 5, + STATE(5797), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298902,49 +304510,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127759] = 18, + [128193] = 5, + 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, + 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, + [128248] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6202), 5, + STATE(5869), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298965,49 +304623,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127840] = 18, + [128329] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4904), 5, + STATE(5839), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299028,49 +304686,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127921] = 18, + [128410] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(1117), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(1123), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(5114), 1, + sym_identifier, + ACTIONS(5116), 1, + anon_sym_shape, + ACTIONS(5118), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(1841), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, - sym__type_constant, - STATE(3370), 1, + STATE(2136), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(2193), 1, sym_null, - STATE(3398), 2, + STATE(2195), 1, + sym__type_constant, + STATE(3455), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(1199), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5395), 5, + STATE(2342), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(5120), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299091,49 +304749,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128002] = 18, + [128491] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5854), 5, + STATE(5762), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299154,49 +304812,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128083] = 18, + [128572] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6135), 5, + STATE(5803), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299217,49 +304875,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128164] = 18, + [128653] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5030), 5, + STATE(4267), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299280,49 +304938,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128245] = 18, + [128734] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6156), 5, + STATE(5806), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299343,49 +305001,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128326] = 18, + [128815] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6171), 5, + STATE(6013), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299406,49 +305064,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128407] = 18, + [128896] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5066), 5, + STATE(6033), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299469,49 +305127,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128488] = 18, + [128977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(3671), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3111), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3346), 1, sym_null, - STATE(3401), 2, + STATE(3450), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6157), 5, + STATE(5711), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299532,49 +305190,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128569] = 18, + [129058] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5687), 5, + STATE(4272), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299595,49 +305253,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128650] = 18, + [129139] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5018), 5, + STATE(4286), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299658,49 +305316,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128731] = 18, + [129220] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6148), 5, + STATE(5864), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299721,49 +305379,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128812] = 18, + [129301] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6137), 5, + STATE(6152), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299784,49 +305442,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128893] = 18, + [129382] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5324), 5, + STATE(4190), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299847,49 +305505,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128974] = 18, + [129463] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6134), 5, + STATE(6162), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299910,49 +305568,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129055] = 18, + [129544] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6140), 5, + STATE(5993), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299973,49 +305631,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129136] = 18, + [129625] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5788), 5, + STATE(6249), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300036,49 +305694,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129217] = 18, + [129706] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6139), 5, + STATE(6257), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300099,49 +305757,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129298] = 18, + [129787] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6133), 5, + STATE(5867), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300162,49 +305820,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129379] = 18, + [129868] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6131), 5, + STATE(6305), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300225,49 +305883,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129460] = 18, + [129949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5639), 5, + STATE(4425), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300288,49 +305946,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129541] = 18, + [130030] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6129), 5, + STATE(6268), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300351,49 +306009,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129622] = 18, + [130111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5383), 5, + STATE(5883), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300414,49 +306072,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129703] = 18, + [130192] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5919), 5, + STATE(5855), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300477,49 +306135,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129784] = 18, + [130273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5855), 5, + STATE(6294), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300540,49 +306198,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129865] = 18, + [130354] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5913), 5, + STATE(5844), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300603,49 +306261,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129946] = 18, + [130435] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5492), 5, + STATE(5859), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300666,49 +306324,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130027] = 18, + [130516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3971), 5, + STATE(5854), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300729,49 +306387,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130108] = 18, + [130597] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6108), 5, + STATE(4287), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300792,49 +306450,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130189] = 18, + [130678] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6046), 5, + STATE(5917), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300855,49 +306513,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130270] = 18, + [130759] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4939), 5, + STATE(6396), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300918,49 +306576,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130351] = 18, + [130840] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3434), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3718), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3546), 1, sym_null, - STATE(3383), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3970), 5, + STATE(5905), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(973), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300981,49 +306639,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130432] = 18, + [130921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6048), 5, + STATE(6327), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301044,49 +306702,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130513] = 18, + [131002] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3701), 5, + STATE(5900), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301107,49 +306765,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130594] = 18, + [131083] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5991), 5, + STATE(5899), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301170,49 +306828,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130675] = 18, + [131164] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(5002), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(5004), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(5006), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(5008), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(5010), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(5016), 1, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(3385), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(3391), 1, + STATE(2653), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(3405), 1, + STATE(3546), 1, sym_null, - STATE(3406), 1, - sym__type_constant, - STATE(3388), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(5012), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3418), 5, + STATE(5896), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5014), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301233,49 +306891,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130756] = 18, + [131245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(3957), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3370), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3381), 1, + STATE(3546), 1, sym_null, - STATE(3398), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5478), 5, + STATE(5860), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1035), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301296,49 +306954,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130837] = 18, + [131326] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6005), 5, + STATE(6334), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301359,49 +307017,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130918] = 18, + [131407] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2678), 1, + ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2688), 1, + ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(2716), 1, + ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2831), 1, + STATE(2653), 1, sym__type_constant, - STATE(3495), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3497), 1, + STATE(3546), 1, sym_null, - STATE(3401), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5907), 5, + STATE(5850), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2702), 20, + ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301422,27 +307080,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130999] = 3, + [131488] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5050), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - 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(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6348), 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, @@ -301462,34 +307142,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, - [131049] = 3, + [131569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5054), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - 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(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(5843), 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, @@ -301509,34 +307205,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, - [131099] = 3, + [131650] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5058), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - 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(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6388), 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, @@ -301556,34 +307268,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, - [131149] = 3, + [131731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5062), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - 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(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(5774), 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, @@ -301603,34 +307331,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, - [131199] = 3, + [131812] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5066), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - 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(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(5815), 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, @@ -301650,34 +307394,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, - [131249] = 3, + [131893] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(3504), 1, sym_xhp_class_identifier, - ACTIONS(5070), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + 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(4204), 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, @@ -301697,34 +307457,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, - [131299] = 3, + [131974] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5074), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - 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(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6386), 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, @@ -301744,35 +307520,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, - [131349] = 4, + [132055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 1, - anon_sym_const, - ACTIONS(5080), 7, - sym_variable, + 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, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, + ACTIONS(2695), 1, sym_xhp_class_identifier, - ACTIONS(5078), 34, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, + 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_null, anon_sym_Null, anon_sym_NULL, + STATE(5847), 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, @@ -301792,41 +307583,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, - [131401] = 6, + [132136] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(5085), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2810), 33, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_as, + 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_null, anon_sym_Null, anon_sym_NULL, + STATE(5810), 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, @@ -301846,35 +307646,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131455] = 6, + sym_xhp_identifier, + [132217] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(5085), 1, - anon_sym_LT, - STATE(2922), 1, - sym_type_arguments, - ACTIONS(2826), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2828), 33, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_as, + 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_null, anon_sym_Null, anon_sym_NULL, + STATE(6227), 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, @@ -301894,31 +307709,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131509] = 3, + sym_xhp_identifier, + [132298] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2762), 33, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2657), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2659), 1, anon_sym_namespace, - anon_sym_as, + 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_null, anon_sym_Null, anon_sym_NULL, + STATE(5784), 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, @@ -301938,18 +307772,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131556] = 3, + sym_xhp_identifier, + [132379] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(5126), 1, anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2781), 33, + 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, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -301959,7 +307798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_print, anon_sym_namespace, - anon_sym_as, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -301982,23 +307824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131603] = 3, + [132437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 8, + ACTIONS(5132), 1, + anon_sym_const, + ACTIONS(5130), 7, 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(5066), 31, + ACTIONS(5128), 34, sym_identifier, anon_sym_shape, anon_sym_namespace, + anon_sym_static, + anon_sym_function, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -302022,78 +307866,30 @@ static const uint16_t ts_small_parse_table[] = { 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_inout_modifier, sym_xhp_identifier, - [131650] = 3, + [132489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 6, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5137), 7, + sym_variable, + anon_sym_BSLASH, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2777), 33, - 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_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, - [131697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5085), 1, - anon_sym_LT, - STATE(2922), 1, - sym_type_arguments, - ACTIONS(2826), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2828), 33, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5135), 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_as, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -302116,23 +307912,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131748] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + sym_xhp_identifier, + [132539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 8, + ACTIONS(5141), 7, 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(5062), 31, + ACTIONS(5139), 35, 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, @@ -302156,27 +307960,30 @@ static const uint16_t ts_small_parse_table[] = { 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_inout_modifier, sym_xhp_identifier, - [131795] = 3, + [132589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 8, + ACTIONS(5145), 7, 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(5054), 31, + ACTIONS(5143), 35, 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, @@ -302200,27 +308007,30 @@ static const uint16_t ts_small_parse_table[] = { 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_inout_modifier, sym_xhp_identifier, - [131842] = 3, + [132639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 8, + ACTIONS(5149), 7, 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(5050), 31, + ACTIONS(5147), 35, 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, @@ -302244,32 +308054,30 @@ static const uint16_t ts_small_parse_table[] = { 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_inout_modifier, sym_xhp_identifier, - [131889] = 3, + [132689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 6, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5153), 7, + sym_variable, + anon_sym_BSLASH, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2766), 33, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5151), 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_as, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -302292,30 +308100,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131936] = 5, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + sym_xhp_identifier, + [132739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2810), 33, + ACTIONS(5157), 7, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5155), 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_as, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -302338,44 +308147,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [131987] = 17, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + sym_xhp_identifier, + [132789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(1097), 1, - anon_sym_namespace, - ACTIONS(1099), 1, + ACTIONS(5161), 7, + sym_variable, anon_sym_BSLASH, - ACTIONS(2698), 1, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(5040), 1, + sym_xhp_class_identifier, + ACTIONS(5159), 35, sym_identifier, - ACTIONS(5087), 1, anon_sym_shape, - ACTIONS(5089), 1, - anon_sym_LPAREN, - ACTIONS(5093), 1, - sym_xhp_class_identifier, - STATE(1778), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2108), 1, - sym_qualified_identifier, - STATE(2139), 1, - sym__type_constant, - STATE(2151), 1, - sym_null, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1175), 3, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5091), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302395,44 +308194,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, sym_xhp_identifier, - [132061] = 17, + [132839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(4986), 1, + anon_sym_LT, + ACTIONS(5165), 1, + anon_sym_EQ, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2886), 35, sym_identifier, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(5095), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5101), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2860), 1, - sym__type_constant, - STATE(3731), 1, - sym_qualified_identifier, - STATE(3787), 1, - sym_null, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + 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, - ACTIONS(5099), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302452,30 +308249,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [132135] = 6, + [132893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(5167), 1, + anon_sym_EQ, + STATE(2221), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 2, anon_sym_COLON_COLON, - ACTIONS(5105), 1, anon_sym_LT, - STATE(3440), 1, - sym_type_arguments, - ACTIONS(2826), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2828), 26, + 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, @@ -302498,26 +308297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [132187] = 5, + [132947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(5161), 8, + sym_variable, anon_sym_BSLASH, - STATE(3387), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 10, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, 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(2752), 26, + ACTIONS(5159), 31, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -302543,11 +308335,16 @@ 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, - [132237] = 3, + [132994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 8, + ACTIONS(5145), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -302556,7 +308353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5054), 30, + ACTIONS(5143), 31, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -302582,30 +308379,25 @@ 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, - [132283] = 5, + [133041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5157), 8, + sym_variable, anon_sym_BSLASH, - STATE(3387), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2771), 10, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, 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(2773), 26, + ACTIONS(5155), 31, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -302631,44 +308423,31 @@ 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, - [132333] = 17, + [133088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2698), 1, + ACTIONS(5141), 8, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(5002), 1, + anon_sym_DOT_DOT_DOT, + sym_xhp_class_identifier, + ACTIONS(5139), 31, sym_identifier, - ACTIONS(5006), 1, - anon_sym_namespace, - ACTIONS(5008), 1, - anon_sym_BSLASH, - ACTIONS(5113), 1, anon_sym_shape, - ACTIONS(5115), 1, - anon_sym_LPAREN, - ACTIONS(5119), 1, - sym_xhp_class_identifier, - STATE(3384), 1, - sym_qualified_identifier, - STATE(3385), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3403), 1, - sym_null, - STATE(3411), 1, - sym__type_constant, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(5012), 3, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5117), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302688,44 +308467,37 @@ 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, - [132407] = 17, + [133135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(5169), 1, anon_sym_BSLASH, - ACTIONS(2698), 1, + 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, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(4878), 1, + anon_sym_LT, + sym_xhp_class_identifier, + ACTIONS(2820), 26, sym_identifier, - ACTIONS(5095), 1, anon_sym_shape, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2860), 1, - sym__type_constant, - STATE(3371), 1, - sym_qualified_identifier, - STATE(3376), 1, - sym_null, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5121), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302746,10 +308518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132481] = 3, + [133185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 8, + ACTIONS(5161), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -302758,7 +308530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5062), 30, + ACTIONS(5159), 30, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -302789,32 +308561,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, sym_inout_modifier, sym_xhp_identifier, - [132527] = 6, + [133231] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(5105), 1, - anon_sym_LT, - STATE(3431), 1, - sym_type_arguments, - ACTIONS(2808), 9, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2659), 1, + anon_sym_namespace, + ACTIONS(2663), 1, anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2681), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2810), 26, + ACTIONS(4948), 1, sym_identifier, + ACTIONS(5172), 1, anon_sym_shape, - anon_sym_namespace, + 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_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5176), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302835,86 +308618,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132579] = 3, + [133305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 8, - sym_variable, + ACTIONS(5180), 1, 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_DOT_DOT_DOT, + anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(5066), 30, + ACTIONS(2839), 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, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_inout_modifier, - sym_xhp_identifier, - [132625] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_TILDE, - ACTIONS(2857), 1, - anon_sym_BSLASH, - ACTIONS(5028), 1, - sym_identifier, - ACTIONS(5032), 1, - anon_sym_namespace, - ACTIONS(5125), 1, - anon_sym_shape, - ACTIONS(5127), 1, - anon_sym_LPAREN, - ACTIONS(5131), 1, - sym_xhp_class_identifier, - STATE(1768), 1, - aux_sym_qualified_identifier_repeat1, - STATE(1817), 1, - sym_qualified_identifier, - STATE(1838), 1, - sym_null, - STATE(1839), 1, - sym__type_constant, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(85), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(5129), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302935,43 +308663,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132699] = 17, + [133355] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(5018), 1, + ACTIONS(5092), 1, sym_identifier, - ACTIONS(5133), 1, + ACTIONS(5183), 1, anon_sym_shape, - ACTIONS(5135), 1, + ACTIONS(5185), 1, anon_sym_LPAREN, - ACTIONS(5139), 1, + ACTIONS(5189), 1, sym_xhp_class_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(1749), 1, + STATE(1785), 1, sym_qualified_identifier, - STATE(1760), 1, + STATE(1797), 1, sym__type_constant, - STATE(1762), 1, + STATE(1798), 1, sym_null, - STATE(3447), 2, + STATE(3510), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1201), 3, + ACTIONS(1229), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5137), 20, + ACTIONS(5187), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302992,25 +308720,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132773] = 5, + [133429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_BSLASH, - STATE(3387), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2756), 10, + ACTIONS(5191), 1, anon_sym_COLON_COLON, + ACTIONS(5193), 1, + anon_sym_LT, + STATE(3491), 1, + sym_type_arguments, + ACTIONS(2859), 9, + anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2758), 26, + ACTIONS(2857), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -303037,28 +308766,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132823] = 5, + [133481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_BSLASH, - STATE(3395), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 10, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, + ACTIONS(4986), 1, anon_sym_LT, - sym_xhp_class_identifier, - ACTIONS(2752), 26, + ACTIONS(5195), 1, + anon_sym_EQ, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(2886), 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, @@ -303081,44 +308811,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [132873] = 17, + [133531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2698), 1, + ACTIONS(5145), 8, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3659), 1, - anon_sym_BSLASH, - ACTIONS(4990), 1, + anon_sym_DOT_DOT_DOT, + sym_xhp_class_identifier, + ACTIONS(5143), 30, sym_identifier, - ACTIONS(4994), 1, - anon_sym_namespace, - ACTIONS(5144), 1, anon_sym_shape, - ACTIONS(5146), 1, - anon_sym_LPAREN, - ACTIONS(5150), 1, - sym_xhp_class_identifier, - STATE(2144), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2329), 1, - sym_qualified_identifier, - STATE(2533), 1, - sym_null, - STATE(2534), 1, - sym__type_constant, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1117), 3, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5148), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303138,44 +308849,48 @@ 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, - [132947] = 17, + [133577] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2674), 1, + ACTIONS(2653), 1, sym_identifier, - ACTIONS(2680), 1, + ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(2663), 1, anon_sym_BSLASH, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(5095), 1, + ACTIONS(5172), 1, anon_sym_shape, - ACTIONS(5097), 1, + ACTIONS(5174), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5199), 1, sym_xhp_class_identifier, - STATE(2720), 1, + STATE(2223), 1, aux_sym_qualified_identifier_repeat1, - STATE(2860), 1, + STATE(2777), 1, sym__type_constant, - STATE(3371), 1, + STATE(3793), 1, sym_qualified_identifier, - STATE(3376), 1, + STATE(3906), 1, sym_null, - STATE(3447), 2, + STATE(3510), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5121), 20, + ACTIONS(5197), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303196,43 +308911,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133021] = 17, + [133651] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2698), 1, + ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2683), 1, anon_sym_TILDE, - ACTIONS(4694), 1, + ACTIONS(4679), 1, sym_identifier, - ACTIONS(4698), 1, + ACTIONS(4683), 1, anon_sym_namespace, - ACTIONS(4700), 1, + ACTIONS(4685), 1, anon_sym_BSLASH, - ACTIONS(5152), 1, + ACTIONS(5201), 1, anon_sym_shape, - ACTIONS(5154), 1, + ACTIONS(5203), 1, anon_sym_LPAREN, - ACTIONS(5158), 1, + ACTIONS(5207), 1, sym_xhp_class_identifier, - STATE(3561), 1, + STATE(3644), 1, aux_sym_qualified_identifier_repeat1, - STATE(3614), 1, + STATE(3659), 1, sym_qualified_identifier, - STATE(3680), 1, + STATE(3709), 1, sym_null, - STATE(3714), 1, + STATE(3758), 1, sym__type_constant, - STATE(3447), 2, + STATE(3510), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4704), 3, + ACTIONS(4689), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5156), 20, + ACTIONS(5205), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303253,34 +308968,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133095] = 7, + [133725] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + 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(5162), 1, - anon_sym_EQ, - STATE(2721), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 2, - anon_sym_COLON_COLON, - anon_sym_LT, - ACTIONS(5160), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2752), 31, + ACTIONS(5080), 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(5084), 1, anon_sym_namespace, + ACTIONS(5209), 1, + anon_sym_shape, + ACTIONS(5211), 1, + anon_sym_LPAREN, + ACTIONS(5215), 1, + sym_xhp_class_identifier, + STATE(2218), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2373), 1, + sym_qualified_identifier, + STATE(2605), 1, + sym__type_constant, + STATE(2607), 1, + sym_null, + STATE(3510), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(1141), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5213), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303300,43 +309024,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [133149] = 17, + sym_xhp_identifier, + [133799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_QMARK, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2680), 1, - anon_sym_namespace, - ACTIONS(2682), 1, + ACTIONS(5217), 1, anon_sym_BSLASH, - ACTIONS(2698), 1, + STATE(3435), 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(2700), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(5095), 1, - anon_sym_shape, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5166), 1, + anon_sym_LT, sym_xhp_class_identifier, - STATE(2720), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2860), 1, - sym__type_constant, - STATE(3494), 1, - sym_qualified_identifier, - STATE(3496), 1, - sym_null, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2696), 3, + ACTIONS(2808), 26, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5164), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303357,10 +309070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133223] = 3, + [133849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 8, + ACTIONS(5157), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -303369,7 +309082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5050), 30, + ACTIONS(5155), 30, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -303400,24 +309113,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, sym_inout_modifier, sym_xhp_identifier, - [133269] = 5, + [133895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, - anon_sym_LT, - STATE(3440), 1, - sym_type_arguments, - ACTIONS(2826), 9, + ACTIONS(5217), 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_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2828), 26, + ACTIONS(2808), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -303444,28 +309158,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133318] = 3, + [133945] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 11, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, + ACTIONS(989), 1, anon_sym_QMARK, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, anon_sym_TILDE, - anon_sym_LT, - sym_xhp_class_identifier, - ACTIONS(2773), 26, + ACTIONS(5064), 1, sym_identifier, - anon_sym_shape, + 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_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5224), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303486,30 +309215,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133363] = 5, + [134019] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, - anon_sym_LT, - STATE(3431), 1, - sym_type_arguments, - ACTIONS(2808), 9, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2659), 1, + anon_sym_namespace, + ACTIONS(2663), 1, anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2681), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2810), 26, - sym_identifier, + ACTIONS(5172), 1, anon_sym_shape, - anon_sym_namespace, + 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_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5176), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303530,28 +309272,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133412] = 4, + [134093] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(2859), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, + ACTIONS(989), 1, anon_sym_QMARK, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2861), 26, + ACTIONS(2913), 1, + anon_sym_BSLASH, + ACTIONS(5102), 1, sym_identifier, - anon_sym_shape, + ACTIONS(5106), 1, anon_sym_namespace, + ACTIONS(5228), 1, + anon_sym_shape, + ACTIONS(5230), 1, + anon_sym_LPAREN, + ACTIONS(5234), 1, + sym_xhp_class_identifier, + STATE(1806), 1, + aux_sym_qualified_identifier_repeat1, + STATE(1845), 1, + sym_qualified_identifier, + STATE(1877), 1, + sym__type_constant, + STATE(1884), 1, + sym_null, + STATE(3510), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5232), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303572,31 +309329,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133458] = 6, + [134167] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(5168), 1, - anon_sym_EQ, - STATE(2721), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 2, - anon_sym_COLON_COLON, - anon_sym_LT, - ACTIONS(2752), 31, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2653), 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(2659), 1, anon_sym_namespace, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(2681), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_TILDE, + ACTIONS(5172), 1, + anon_sym_shape, + ACTIONS(5174), 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, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3510), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2679), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5236), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303616,27 +309385,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [133508] = 6, + sym_xhp_identifier, + [134241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(5193), 1, anon_sym_LT, - ACTIONS(5172), 1, - anon_sym_EQ, - STATE(2912), 1, + STATE(3476), 1, sym_type_arguments, - ACTIONS(5170), 2, - anon_sym_SEMI, + ACTIONS(2868), 9, + anon_sym_BSLASH, anon_sym_COMMA, - ACTIONS(2810), 31, + 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, 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_null, anon_sym_Null, @@ -303660,21 +309431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [133558] = 3, + sym_xhp_identifier, + [134293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 10, + ACTIONS(5141), 8, + sym_variable, anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, 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(2891), 26, + ACTIONS(5139), 30, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -303700,28 +309470,48 @@ 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, - [133602] = 3, + [134339] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 10, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1117), 1, + anon_sym_namespace, + ACTIONS(1123), 1, anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2681), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2683), 1, anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2855), 26, + ACTIONS(5114), 1, sym_identifier, + ACTIONS(5240), 1, anon_sym_shape, - anon_sym_namespace, + ACTIONS(5242), 1, + anon_sym_LPAREN, + ACTIONS(5246), 1, + sym_xhp_class_identifier, + STATE(1841), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2134), 1, + sym_qualified_identifier, + STATE(2202), 1, + sym_null, + STATE(2203), 1, + sym__type_constant, + STATE(3510), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(1199), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5244), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303742,28 +309532,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133646] = 4, + [134413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(2849), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2851), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4976), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -303783,27 +309577,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133692] = 3, + [134464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2762), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(5245), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -303823,27 +309622,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133735] = 3, + [134515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(3002), 26, + ACTIONS(5250), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4515), 1, + sym_null, + STATE(5451), 1, + sym__class_const_declarator, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(3661), 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, @@ -303863,27 +309667,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133778] = 3, + [134566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2908), 26, + ACTIONS(5250), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4515), 1, + sym_null, + STATE(5083), 1, + sym__class_const_declarator, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(3661), 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, @@ -303903,27 +309712,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133821] = 3, + [134617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2879), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4568), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -303943,27 +309757,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133864] = 3, + [134668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(3042), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4812), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -303983,27 +309802,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133907] = 3, + [134719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(3046), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4901), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -304023,27 +309847,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133950] = 3, + [134770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(5174), 26, + ACTIONS(5250), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4515), 1, + sym_null, + STATE(4989), 1, + sym__class_const_declarator, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(3661), 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, @@ -304063,27 +309892,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133993] = 3, + [134821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(3023), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4631), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -304103,27 +309937,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [134036] = 3, + [134872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(3038), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(5578), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -304143,21 +309982,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [134079] = 3, + [134923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 9, + ACTIONS(2837), 11, anon_sym_BSLASH, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2883), 26, + ACTIONS(2839), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304184,26 +310024,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134122] = 3, + [134968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 9, - anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(3011), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(5244), 1, + sym_const_declarator, + STATE(5812), 1, + sym_null, + ACTIONS(91), 3, 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, @@ -304223,21 +310069,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [134165] = 3, + [135019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 9, + 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_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3030), 26, + ACTIONS(2886), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304264,20 +310113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134208] = 3, + [135068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 9, + ACTIONS(5193), 1, + anon_sym_LT, + STATE(3491), 1, + sym_type_arguments, + ACTIONS(2859), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2971), 26, + ACTIONS(2857), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304304,20 +310157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134251] = 3, + [135117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 9, + ACTIONS(3063), 10, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2887), 26, + ACTIONS(3061), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304344,20 +310198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134294] = 3, + [135161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 9, + ACTIONS(2909), 10, anon_sym_BSLASH, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2912), 26, + ACTIONS(2911), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304384,20 +310239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134337] = 3, + [135205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 9, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(2907), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2994), 26, + ACTIONS(2905), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304424,20 +310281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134380] = 3, + [135251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 9, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(2917), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2951), 26, + ACTIONS(2915), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304464,20 +310323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134423] = 3, + [135297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 9, + ACTIONS(2966), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2967), 26, + ACTIONS(2964), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304504,20 +310363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134466] = 3, + [135340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 9, + ACTIONS(3026), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2986), 26, + ACTIONS(3024), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304544,20 +310403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134509] = 3, + [135383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 9, + ACTIONS(2859), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2828), 26, + ACTIONS(2857), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304584,20 +310443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134552] = 3, + [135426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 9, + ACTIONS(2978), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2781), 26, + ACTIONS(2976), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304624,20 +310483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134595] = 3, + [135469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 9, + ACTIONS(2942), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2979), 26, + ACTIONS(2940), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304664,20 +310523,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134638] = 3, + [135512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 9, + ACTIONS(3014), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2766), 26, + ACTIONS(3012), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304704,13 +310563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134681] = 4, + [135555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - anon_sym_COMMA, - ACTIONS(5180), 8, + ACTIONS(2974), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -304718,7 +310576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5178), 26, + ACTIONS(2972), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304745,20 +310603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134726] = 3, + [135598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 9, + ACTIONS(3018), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2998), 26, + ACTIONS(3016), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304785,20 +310643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134769] = 3, + [135641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 9, + ACTIONS(3106), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2931), 26, + ACTIONS(3104), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304825,19 +310683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134812] = 3, + [135684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 8, - sym_variable, + ACTIONS(2814), 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(5074), 27, + ACTIONS(2816), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304863,22 +310722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_inout_modifier, sym_xhp_identifier, - [134855] = 3, + [135727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 9, + ACTIONS(3071), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2777), 26, + ACTIONS(3069), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304905,20 +310763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134898] = 3, + [135770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 9, + ACTIONS(2931), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2955), 26, + ACTIONS(2929), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304945,20 +310803,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134941] = 3, + [135813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 9, + ACTIONS(3051), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2924), 26, + ACTIONS(3049), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -304985,20 +310843,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134984] = 3, + [135856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 9, + ACTIONS(2822), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2959), 26, + ACTIONS(2824), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305025,20 +310883,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135027] = 3, + [135899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 9, + ACTIONS(3082), 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(3080), 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, + [135942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2826), 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(2865), 26, + ACTIONS(2828), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305065,18 +310963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135070] = 3, + [135985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 7, + ACTIONS(3022), 9, anon_sym_BSLASH, - anon_sym_RBRACE, + 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(5184), 27, + ACTIONS(3020), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305102,23 +311002,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_abstract, sym_xhp_identifier, - [135112] = 5, + [136028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, + ACTIONS(3001), 9, + anon_sym_BSLASH, anon_sym_COMMA, - STATE(3446), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5190), 6, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(2999), 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, + [136071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5254), 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(5188), 26, + ACTIONS(5252), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305145,21 +311083,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135158] = 5, + [136114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, + ACTIONS(2946), 9, + anon_sym_BSLASH, anon_sym_COMMA, - STATE(3446), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5196), 6, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(2944), 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, + [136157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 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(5194), 26, + ACTIONS(2832), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305186,23 +311163,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135204] = 7, + [136200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5205), 1, + ACTIONS(2989), 9, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(5208), 1, anon_sym_QMARK, - ACTIONS(5211), 1, anon_sym_TILDE, - STATE(3447), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(5203), 3, + sym_xhp_class_identifier, + ACTIONS(2987), 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, + [136243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3094), 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(5201), 26, + ACTIONS(3092), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305229,18 +311243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135254] = 3, + [136286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 7, + ACTIONS(3047), 9, anon_sym_BSLASH, - anon_sym_RBRACE, + 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(5214), 27, + ACTIONS(3045), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305266,23 +311282,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_abstract, sym_xhp_identifier, - [135296] = 5, + [136329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, + ACTIONS(3040), 9, + anon_sym_BSLASH, anon_sym_COMMA, - STATE(3445), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5220), 6, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(3038), 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, + [136372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 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(5218), 26, + ACTIONS(3100), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305309,24 +311363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135342] = 5, + [136415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, - anon_sym_LT, - ACTIONS(5222), 1, - anon_sym_EQ, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2810), 31, + 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_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, anon_sym_null, anon_sym_Null, @@ -305350,18 +311401,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135388] = 3, + sym_inout_modifier, + sym_xhp_identifier, + [136458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 7, + ACTIONS(3086), 9, anon_sym_BSLASH, - anon_sym_RBRACE, + 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(5224), 27, + ACTIONS(3084), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305387,13 +311442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_abstract, sym_xhp_identifier, - [135430] = 3, + [136501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 8, + ACTIONS(3090), 9, anon_sym_BSLASH, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -305401,7 +311456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5228), 26, + ACTIONS(3088), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305428,18 +311483,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135472] = 3, + [136544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 7, - anon_sym_BSLASH, + ACTIONS(5260), 1, anon_sym_COMMA, + ACTIONS(5258), 8, + anon_sym_BSLASH, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5194), 26, + ACTIONS(5256), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305466,18 +311524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135513] = 3, + [136589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 7, + ACTIONS(3078), 9, anon_sym_BSLASH, - anon_sym_RBRACE, + 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(5184), 26, + ACTIONS(3076), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305504,28 +311564,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135554] = 6, + [136632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(3030), 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(3028), 26, sym_identifier, - STATE(4471), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305545,28 +311603,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135601] = 6, + sym_xhp_identifier, + [136675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(4652), 8, + anon_sym_BSLASH, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5262), 26, sym_identifier, - STATE(4536), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305586,28 +311642,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135648] = 6, + sym_xhp_identifier, + [136717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5268), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5266), 6, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5264), 26, sym_identifier, - STATE(4420), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305627,10 +311683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135695] = 3, + sym_xhp_identifier, + [136763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 7, + ACTIONS(5273), 7, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -305638,7 +311695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5224), 26, + ACTIONS(5271), 27, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -305664,29 +311721,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_abstract, sym_xhp_identifier, - [135736] = 6, + [136805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5279), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5277), 6, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5275), 26, sym_identifier, - STATE(5529), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305706,28 +311763,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135783] = 6, + sym_xhp_identifier, + [136851] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5285), 1, + 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, sym_identifier, - STATE(4708), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305747,28 +311806,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135830] = 6, + sym_xhp_identifier, + [136901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5279), 1, + anon_sym_COMMA, + STATE(3509), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5296), 6, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5294), 26, sym_identifier, - STATE(5063), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305788,28 +311847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135877] = 6, + sym_xhp_identifier, + [136947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5300), 7, + 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, sym_identifier, - STATE(4532), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305829,28 +311885,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135924] = 6, + anon_sym_abstract, + sym_xhp_identifier, + [136989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5304), 7, + anon_sym_BSLASH, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5302), 27, sym_identifier, - STATE(4910), 1, - sym_null, - STATE(5022), 1, - sym__class_const_declarator, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3947), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305870,28 +311924,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135971] = 6, + anon_sym_abstract, + sym_xhp_identifier, + [137031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5273), 7, + anon_sym_BSLASH, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5271), 26, sym_identifier, - STATE(4910), 1, - sym_null, - STATE(5136), 1, - sym__class_const_declarator, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3947), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305911,28 +311963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [136018] = 6, + sym_xhp_identifier, + [137072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5300), 7, + anon_sym_BSLASH, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5298), 26, sym_identifier, - STATE(4910), 1, - sym_null, - STATE(5187), 1, - sym__class_const_declarator, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3947), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305952,28 +312001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [136065] = 6, + sym_xhp_identifier, + [137113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5266), 7, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5264), 26, sym_identifier, - STATE(4938), 1, - sym_const_declarator, - STATE(6144), 1, - sym_null, - ACTIONS(85), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(4066), 27, - 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_array, anon_sym_varray, anon_sym_darray, @@ -305993,17 +312039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [136112] = 3, + sym_xhp_identifier, + [137154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 6, + ACTIONS(5141), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5234), 26, + ACTIONS(5139), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306030,17 +312077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136152] = 3, + [137194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 6, + ACTIONS(5157), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5066), 26, + ACTIONS(5155), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306067,17 +312114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136192] = 3, + [137234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 6, + ACTIONS(5145), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5054), 26, + ACTIONS(5143), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306104,17 +312151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136232] = 3, + [137274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 6, + ACTIONS(5308), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(1225), 26, + ACTIONS(5306), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306141,17 +312188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136272] = 3, + [137314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 6, + ACTIONS(1249), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5050), 26, + ACTIONS(1253), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306178,17 +312225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136312] = 3, + [137354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(5161), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(1217), 26, + ACTIONS(5159), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306215,17 +312262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136352] = 3, + [137394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 6, + ACTIONS(1259), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5062), 26, + ACTIONS(1261), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -306252,349 +312299,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136392] = 19, + [137434] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5248), 1, + ACTIONS(5320), 1, anon_sym_trait, - ACTIONS(5250), 1, + ACTIONS(5322), 1, anon_sym_interface, - ACTIONS(5252), 1, + ACTIONS(5324), 1, anon_sym_class, - ACTIONS(5254), 1, + ACTIONS(5326), 1, anon_sym_enum, - ACTIONS(5256), 1, + ACTIONS(5328), 1, anon_sym_abstract, - ACTIONS(5258), 1, + ACTIONS(5330), 1, sym_final_modifier, - ACTIONS(5260), 1, + ACTIONS(5332), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(4000), 1, + STATE(4070), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(4479), 1, + STATE(4961), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5240), 2, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5312), 2, anon_sym_type, anon_sym_newtype, - [136451] = 19, + [137493] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5264), 1, + ACTIONS(5336), 1, anon_sym_trait, - ACTIONS(5266), 1, + ACTIONS(5338), 1, anon_sym_interface, - ACTIONS(5268), 1, + ACTIONS(5340), 1, anon_sym_class, - ACTIONS(5270), 1, + ACTIONS(5342), 1, anon_sym_enum, - ACTIONS(5272), 1, + ACTIONS(5344), 1, anon_sym_abstract, - ACTIONS(5274), 1, + ACTIONS(5346), 1, sym_final_modifier, - ACTIONS(5276), 1, + ACTIONS(5348), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(4052), 1, + STATE(4016), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(5021), 1, + STATE(4653), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5262), 2, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5334), 2, anon_sym_type, anon_sym_newtype, - [136510] = 19, + [137552] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5280), 1, + ACTIONS(5352), 1, anon_sym_trait, - ACTIONS(5282), 1, + ACTIONS(5354), 1, anon_sym_interface, - ACTIONS(5284), 1, + ACTIONS(5356), 1, anon_sym_class, - ACTIONS(5286), 1, + ACTIONS(5358), 1, anon_sym_enum, - ACTIONS(5288), 1, + ACTIONS(5360), 1, anon_sym_abstract, - ACTIONS(5290), 1, + ACTIONS(5362), 1, sym_final_modifier, - ACTIONS(5292), 1, + ACTIONS(5364), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(4062), 1, + STATE(4029), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(4565), 1, + STATE(4559), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5278), 2, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5350), 2, anon_sym_type, anon_sym_newtype, - [136569] = 19, + [137611] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5296), 1, + ACTIONS(5368), 1, anon_sym_trait, - ACTIONS(5298), 1, + ACTIONS(5370), 1, anon_sym_interface, - ACTIONS(5300), 1, + ACTIONS(5372), 1, anon_sym_class, - ACTIONS(5302), 1, + ACTIONS(5374), 1, anon_sym_enum, - ACTIONS(5304), 1, + ACTIONS(5376), 1, anon_sym_abstract, - ACTIONS(5306), 1, + ACTIONS(5378), 1, sym_final_modifier, - ACTIONS(5308), 1, + ACTIONS(5380), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(3936), 1, + STATE(4052), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(5138), 1, + STATE(4803), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5294), 2, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5366), 2, anon_sym_type, anon_sym_newtype, - [136628] = 19, + [137670] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5312), 1, + ACTIONS(5384), 1, anon_sym_trait, - ACTIONS(5314), 1, + ACTIONS(5386), 1, anon_sym_interface, - ACTIONS(5316), 1, + ACTIONS(5388), 1, anon_sym_class, - ACTIONS(5318), 1, + ACTIONS(5390), 1, anon_sym_enum, - ACTIONS(5320), 1, + ACTIONS(5392), 1, anon_sym_abstract, - ACTIONS(5322), 1, + ACTIONS(5394), 1, sym_final_modifier, - ACTIONS(5324), 1, + ACTIONS(5396), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(4058), 1, + STATE(4135), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(4397), 1, + STATE(5264), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5310), 2, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5382), 2, anon_sym_type, anon_sym_newtype, - [136687] = 19, + [137729] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5328), 1, + ACTIONS(5400), 1, anon_sym_trait, - ACTIONS(5330), 1, + ACTIONS(5402), 1, anon_sym_interface, - ACTIONS(5332), 1, + ACTIONS(5404), 1, anon_sym_class, - ACTIONS(5334), 1, + ACTIONS(5406), 1, anon_sym_enum, - ACTIONS(5336), 1, + ACTIONS(5408), 1, anon_sym_abstract, - ACTIONS(5338), 1, + ACTIONS(5410), 1, sym_final_modifier, - ACTIONS(5340), 1, + ACTIONS(5412), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(4035), 1, + STATE(4127), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(4699), 1, + STATE(4919), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5326), 2, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5398), 2, anon_sym_type, anon_sym_newtype, - [136746] = 19, + [137788] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5316), 1, anon_sym_function, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - ACTIONS(5344), 1, + ACTIONS(5416), 1, anon_sym_trait, - ACTIONS(5346), 1, + ACTIONS(5418), 1, anon_sym_interface, - ACTIONS(5348), 1, + ACTIONS(5420), 1, anon_sym_class, - ACTIONS(5350), 1, + ACTIONS(5422), 1, anon_sym_enum, - ACTIONS(5352), 1, + ACTIONS(5424), 1, anon_sym_abstract, - ACTIONS(5354), 1, + ACTIONS(5426), 1, sym_final_modifier, - ACTIONS(5356), 1, + ACTIONS(5428), 1, sym_xhp_modifier, - STATE(3888), 1, + STATE(3905), 1, sym_async_modifier, - STATE(4044), 1, + STATE(4162), 1, sym_abstract_modifier, - STATE(4212), 1, + STATE(4258), 1, sym_parameters, - STATE(4462), 1, + STATE(5085), 1, sym__function_declaration_header, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - ACTIONS(5342), 2, - anon_sym_type, - anon_sym_newtype, - [136805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 4, - sym_variable, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5066), 13, - sym_identifier, + STATE(6030), 1, + sym__single_parameter_parameters, + ACTIONS(5414), 2, 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, - [136830] = 13, + [137847] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5432), 1, anon_sym_RPAREN, - ACTIONS(5362), 1, + ACTIONS(5434), 1, sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4558), 1, + STATE(5502), 1, sym_field_initializer, - STATE(6056), 1, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [136875] = 3, + [137892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(5145), 4, sym_variable, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5054), 13, + ACTIONS(5143), 13, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -306608,15 +312633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [136900] = 3, + [137917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 4, + ACTIONS(5141), 4, sym_variable, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5062), 13, + ACTIONS(5139), 13, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -306630,207 +312655,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [136925] = 13, + [137942] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5362), 1, + ACTIONS(5434), 1, sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - ACTIONS(5366), 1, + ACTIONS(5438), 1, anon_sym_RPAREN, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5578), 1, + STATE(5502), 1, sym_field_initializer, - STATE(6056), 1, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [136970] = 13, + [137987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5157), 4, + sym_variable, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 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, + [138012] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5362), 1, + ACTIONS(5434), 1, sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - ACTIONS(5368), 1, + ACTIONS(5440), 1, anon_sym_RPAREN, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5578), 1, + STATE(5139), 1, sym_field_initializer, - STATE(6056), 1, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137015] = 13, + [138057] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5362), 1, + ACTIONS(5434), 1, sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - ACTIONS(5370), 1, + ACTIONS(5442), 1, anon_sym_RPAREN, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5578), 1, + STATE(5502), 1, sym_field_initializer, - STATE(6056), 1, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137060] = 13, + [138102] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(5364), 1, - sym_xhp_identifier, - ACTIONS(5372), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5374), 1, - anon_sym_RBRACK, - ACTIONS(5376), 1, - anon_sym_ctx, - STATE(1733), 1, + ACTIONS(5434), 1, + sym_string, + ACTIONS(5436), 1, + sym_xhp_identifier, + ACTIONS(5444), 1, + anon_sym_RPAREN, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4571), 1, - sym_capability, - STATE(5483), 1, + STATE(4962), 1, + sym_field_initializer, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137105] = 13, + [138147] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5362), 1, + ACTIONS(5434), 1, sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - ACTIONS(5378), 1, + ACTIONS(5446), 1, anon_sym_RPAREN, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5578), 1, + STATE(5502), 1, sym_field_initializer, - STATE(6056), 1, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137150] = 13, + [138192] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(5362), 1, - sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - ACTIONS(5380), 1, - anon_sym_RPAREN, - STATE(1733), 1, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5450), 1, + anon_sym_RBRACK, + ACTIONS(5452), 1, + anon_sym_ctx, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4489), 1, - sym_field_initializer, - STATE(6056), 1, + STATE(5229), 1, + sym_capability, + STATE(5332), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137195] = 3, + [138237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 4, + ACTIONS(5161), 4, sym_variable, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5050), 13, + ACTIONS(5159), 13, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -306844,2171 +312891,2178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [137220] = 12, + [138262] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(5364), 1, - sym_xhp_identifier, - ACTIONS(5372), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5376), 1, - anon_sym_ctx, - STATE(1733), 1, + ACTIONS(5434), 1, + sym_string, + ACTIONS(5436), 1, + sym_xhp_identifier, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5439), 1, - sym_capability, - STATE(5483), 1, + STATE(5502), 1, + sym_field_initializer, + STATE(6127), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137262] = 12, + [138304] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(5362), 1, - sym_string, - ACTIONS(5364), 1, + ACTIONS(5436), 1, sym_xhp_identifier, - STATE(1733), 1, + ACTIONS(5448), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_ctx, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5578), 1, - sym_field_initializer, - STATE(6056), 1, + STATE(5332), 1, sym_scoped_identifier, - STATE(6057), 2, + STATE(5408), 1, + sym_capability, + STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, - ACTIONS(31), 3, + ACTIONS(35), 3, anon_sym_self, anon_sym_parent, anon_sym_static, - ACTIONS(5358), 3, + ACTIONS(5430), 3, sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137304] = 6, + [138346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2886), 1, anon_sym_EQ, - ACTIONS(4453), 1, + ACTIONS(4082), 1, anon_sym_COLON_COLON, - ACTIONS(5382), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(2922), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(2826), 10, + ACTIONS(2868), 10, sym_variable, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_use, anon_sym_where, anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [137332] = 6, + [138374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(2857), 1, anon_sym_EQ, - ACTIONS(4453), 1, + ACTIONS(4082), 1, anon_sym_COLON_COLON, - ACTIONS(5382), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(2912), 1, + STATE(2788), 1, sym_type_arguments, - ACTIONS(2808), 10, + ACTIONS(2859), 10, sym_variable, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_use, anon_sym_where, anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [137360] = 5, + [138402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2886), 1, anon_sym_EQ, - ACTIONS(5382), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(2922), 1, + STATE(2786), 1, sym_type_arguments, - ACTIONS(2826), 10, + ACTIONS(2868), 10, sym_variable, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_use, anon_sym_where, anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [137385] = 5, + [138427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(2857), 1, anon_sym_EQ, - ACTIONS(5382), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(2912), 1, + STATE(2788), 1, sym_type_arguments, - ACTIONS(2808), 10, + ACTIONS(2859), 10, sym_variable, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_use, anon_sym_where, anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [137410] = 11, + [138452] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5392), 1, - anon_sym_SEMI, - STATE(3710), 1, + ACTIONS(5464), 1, + anon_sym_RBRACE, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137446] = 11, + [138488] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5394), 1, + ACTIONS(5466), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137482] = 11, + [138524] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5396), 1, + ACTIONS(5468), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137518] = 11, + [138560] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5398), 1, + ACTIONS(5470), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137554] = 11, + [138596] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5400), 1, - anon_sym_RBRACE, - STATE(3710), 1, + ACTIONS(5472), 1, + anon_sym_SEMI, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137590] = 11, + [138632] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5402), 1, - anon_sym_SEMI, - STATE(3710), 1, + ACTIONS(5474), 1, + anon_sym_RBRACE, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137626] = 11, + [138668] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5404), 1, + ACTIONS(5476), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137662] = 11, + [138704] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5406), 1, - anon_sym_SEMI, - STATE(3710), 1, + ACTIONS(5478), 1, + anon_sym_RBRACE, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137698] = 11, + [138740] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5408), 1, + ACTIONS(5480), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137734] = 11, + [138776] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5410), 1, + ACTIONS(5482), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137770] = 11, + [138812] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5412), 1, + ACTIONS(5484), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137806] = 11, + [138848] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5414), 1, - anon_sym_RBRACE, - STATE(3710), 1, + ACTIONS(5486), 1, + anon_sym_SEMI, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137842] = 11, + [138884] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5416), 1, + ACTIONS(5488), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137878] = 11, + [138920] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5418), 1, + ACTIONS(5490), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137914] = 11, + [138956] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5420), 1, - anon_sym_RBRACE, - STATE(3710), 1, + ACTIONS(5492), 1, + anon_sym_SEMI, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137950] = 11, + [138992] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5422), 1, + ACTIONS(5494), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [137986] = 11, + [139028] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5424), 1, + ACTIONS(5496), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138022] = 11, + [139064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5426), 1, - anon_sym_SEMI, - STATE(3710), 1, + ACTIONS(5498), 1, + anon_sym_RBRACE, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138058] = 11, + [139100] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5428), 1, + ACTIONS(5500), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138094] = 11, + [139136] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5430), 1, - anon_sym_SEMI, - STATE(3710), 1, + ACTIONS(5502), 1, + anon_sym_RBRACE, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138130] = 11, + [139172] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5432), 1, + ACTIONS(5504), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138166] = 11, + [139208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5434), 1, + ACTIONS(5506), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138202] = 11, + [139244] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5436), 1, + ACTIONS(5508), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138238] = 11, + [139280] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5438), 1, + ACTIONS(5510), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138274] = 11, + [139316] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5440), 1, + ACTIONS(5512), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138310] = 11, + [139352] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5442), 1, + ACTIONS(5514), 1, + anon_sym_SEMI, + 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(5095), 1, + sym_use_clause, + ACTIONS(5458), 3, + anon_sym_type, + anon_sym_function, + anon_sym_const, + [139388] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5460), 1, + anon_sym_namespace, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5516), 1, anon_sym_RBRACE, - STATE(3710), 1, + 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(5095), 1, + sym_use_clause, + ACTIONS(5458), 3, + anon_sym_type, + anon_sym_function, + anon_sym_const, + [139424] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5460), 1, + anon_sym_namespace, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5518), 1, + anon_sym_SEMI, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138346] = 11, + [139460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5444), 1, + ACTIONS(5520), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138382] = 11, + [139496] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5446), 1, + ACTIONS(5522), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138418] = 11, + [139532] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5448), 1, + ACTIONS(5524), 1, anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138454] = 11, + [139568] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5450), 1, - anon_sym_RBRACE, - STATE(3710), 1, + ACTIONS(5526), 1, + anon_sym_SEMI, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138490] = 11, + [139604] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5452), 1, - anon_sym_RBRACE, - STATE(3710), 1, + ACTIONS(5528), 1, + anon_sym_SEMI, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138526] = 11, + [139640] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5454), 1, - anon_sym_SEMI, - STATE(3710), 1, + ACTIONS(5530), 1, + anon_sym_RBRACE, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138562] = 11, + [139676] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5456), 1, + ACTIONS(5532), 1, anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138598] = 11, + [139712] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5458), 1, - anon_sym_RBRACE, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5190), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138634] = 11, + [139745] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(5460), 1, - anon_sym_SEMI, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5112), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138670] = 10, + [139778] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3901), 1, + STATE(3886), 1, sym_use_type, - STATE(4283), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4454), 1, + STATE(5183), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138703] = 10, + [139811] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3820), 1, sym_use_type, - STATE(4086), 1, + STATE(4274), 1, sym__namespace_identifier, - STATE(4836), 1, + STATE(4655), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138736] = 10, + [139844] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3877), 1, + STATE(3886), 1, sym_use_type, - STATE(4191), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4577), 1, + STATE(5089), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138769] = 10, + [139877] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(5091), 1, + STATE(5185), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138802] = 10, + [139910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3821), 1, sym_use_type, - STATE(4086), 1, + STATE(4322), 1, sym__namespace_identifier, - STATE(4856), 1, + STATE(4865), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138835] = 10, + [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, + ACTIONS(5534), 1, + anon_sym_LBRACE, + ACTIONS(5536), 1, + anon_sym_LT, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(5546), 1, + sym_xhp_comment, + ACTIONS(5548), 1, + sym_xhp_string, + ACTIONS(5550), 1, + anon_sym_LT_SLASH, + STATE(3605), 1, + sym_xhp_open, + STATE(4058), 1, + sym_xhp_open_close, + STATE(4099), 1, + sym_xhp_close, + STATE(3613), 3, + sym_braced_expression, + sym_xhp_expression, + aux_sym_xhp_expression_repeat1, + [140009] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4946), 1, + STATE(5126), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138868] = 10, + [140042] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4650), 1, + STATE(5007), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138901] = 10, + [140075] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(3874), 1, + STATE(3806), 1, sym_use_type, - STATE(4086), 1, + STATE(3807), 1, + sym_qualified_identifier, + STATE(4471), 1, sym__namespace_identifier, - STATE(4987), 1, + STATE(4971), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138934] = 10, + [140108] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3868), 1, + STATE(3822), 1, sym_use_type, - STATE(4234), 1, + STATE(4243), 1, sym__namespace_identifier, - STATE(5062), 1, + STATE(5268), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138967] = 10, - ACTIONS(5462), 1, + [140141] = 10, + ACTIONS(5534), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5536), 1, anon_sym_LT, - ACTIONS(5466), 1, - sym_xhp_comment, - ACTIONS(5468), 1, - sym_xhp_string, - ACTIONS(5470), 1, - anon_sym_LT_SLASH, - ACTIONS(5472), 1, + ACTIONS(5544), 1, sym_comment, - STATE(1855), 1, - sym_xhp_close, - STATE(3553), 1, - sym_xhp_open, - STATE(3994), 1, - sym_xhp_open_close, - STATE(3588), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [139000] = 10, - ACTIONS(5462), 1, - anon_sym_LBRACE, - ACTIONS(5464), 1, - anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5552), 1, sym_xhp_comment, - ACTIONS(5468), 1, + ACTIONS(5554), 1, sym_xhp_string, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(5474), 1, - anon_sym_LT_SLASH, - STATE(2638), 1, - sym_xhp_close, - STATE(3553), 1, - sym_xhp_open, - STATE(3994), 1, - sym_xhp_open_close, - STATE(3588), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [139033] = 10, - ACTIONS(5462), 1, - anon_sym_LBRACE, - ACTIONS(5464), 1, - anon_sym_LT, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(5474), 1, + ACTIONS(5556), 1, anon_sym_LT_SLASH, - ACTIONS(5476), 1, - sym_xhp_comment, - ACTIONS(5478), 1, - sym_xhp_string, - STATE(2621), 1, + STATE(2737), 1, sym_xhp_close, - STATE(3553), 1, + STATE(3605), 1, sym_xhp_open, - STATE(3994), 1, + STATE(4058), 1, sym_xhp_open_close, - STATE(3543), 3, + STATE(3607), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [139066] = 10, + [140174] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3857), 1, + STATE(3886), 1, sym_use_type, - STATE(4285), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4419), 1, + STATE(5095), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139099] = 10, + [140207] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3909), 1, + STATE(3818), 1, sym_use_type, - STATE(4310), 1, + STATE(4360), 1, sym__namespace_identifier, - STATE(4691), 1, + STATE(4795), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139132] = 10, + [140240] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4993), 1, + STATE(4669), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139165] = 10, + [140273] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(5073), 1, + STATE(5237), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139198] = 10, + [140306] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3830), 1, sym_use_type, - STATE(4086), 1, + STATE(4196), 1, sym__namespace_identifier, - STATE(5102), 1, + STATE(4954), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139231] = 10, + [140339] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4956), 1, + STATE(5070), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139264] = 10, + [140372] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(5088), 1, + STATE(5200), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139297] = 10, + [140405] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(5044), 1, + STATE(5054), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139330] = 10, - ACTIONS(5462), 1, + [140438] = 10, + ACTIONS(5534), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5536), 1, anon_sym_LT, - ACTIONS(5472), 1, + ACTIONS(5544), 1, sym_comment, - ACTIONS(5480), 1, + ACTIONS(5550), 1, + anon_sym_LT_SLASH, + ACTIONS(5558), 1, sym_xhp_comment, - ACTIONS(5482), 1, + ACTIONS(5560), 1, sym_xhp_string, - ACTIONS(5484), 1, - anon_sym_LT_SLASH, - STATE(3553), 1, + STATE(3605), 1, sym_xhp_open, - STATE(3990), 1, - sym_xhp_close, - STATE(3994), 1, + STATE(4058), 1, sym_xhp_open_close, - STATE(3556), 3, + STATE(4069), 1, + sym_xhp_close, + STATE(3591), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [139363] = 10, + [140471] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3858), 1, - sym_use_type, - STATE(4219), 1, - sym__namespace_identifier, - STATE(4393), 1, - sym_use_clause, - ACTIONS(5386), 3, - anon_sym_type, - anon_sym_function, - anon_sym_const, - [139396] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5388), 1, - anon_sym_namespace, - ACTIONS(5390), 1, - anon_sym_BSLASH, - STATE(3710), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3825), 1, + STATE(3886), 1, sym_use_type, - STATE(3856), 1, - sym_qualified_identifier, - STATE(4201), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(5130), 1, + STATE(5230), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139429] = 10, - ACTIONS(5462), 1, + [140504] = 10, + ACTIONS(5534), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5536), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(5546), 1, sym_xhp_comment, - ACTIONS(5468), 1, + ACTIONS(5548), 1, sym_xhp_string, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(5484), 1, + ACTIONS(5556), 1, anon_sym_LT_SLASH, - STATE(3553), 1, - sym_xhp_open, - STATE(3992), 1, + STATE(2724), 1, sym_xhp_close, - STATE(3994), 1, + STATE(3605), 1, + sym_xhp_open, + STATE(4058), 1, sym_xhp_open_close, - STATE(3588), 3, + STATE(3613), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [139462] = 10, + [140537] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3819), 1, sym_use_type, - STATE(4086), 1, + STATE(4315), 1, sym__namespace_identifier, - STATE(5038), 1, + STATE(4551), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139495] = 10, + [140570] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5456), 1, sym_identifier, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_namespace, - ACTIONS(5390), 1, + ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3710), 1, + STATE(3787), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(3807), 1, sym_qualified_identifier, - STATE(3874), 1, + STATE(3886), 1, sym_use_type, - STATE(4086), 1, + STATE(4301), 1, sym__namespace_identifier, - STATE(4879), 1, + STATE(5003), 1, sym_use_clause, - ACTIONS(5386), 3, + ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139528] = 10, - ACTIONS(5462), 1, + [140603] = 10, + ACTIONS(5534), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5536), 1, anon_sym_LT, - ACTIONS(5470), 1, + ACTIONS(5542), 1, anon_sym_LT_SLASH, - ACTIONS(5472), 1, + ACTIONS(5544), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(5546), 1, sym_xhp_comment, - ACTIONS(5488), 1, + ACTIONS(5548), 1, sym_xhp_string, - STATE(1910), 1, + STATE(1933), 1, sym_xhp_close, - STATE(3553), 1, + STATE(3605), 1, sym_xhp_open, - STATE(3994), 1, + STATE(4058), 1, sym_xhp_open_close, - STATE(3542), 3, + STATE(3613), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [139561] = 10, + [140636] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5388), 1, - anon_sym_namespace, - ACTIONS(5390), 1, - anon_sym_BSLASH, - STATE(3710), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(3874), 1, - sym_use_type, - STATE(4086), 1, - sym__namespace_identifier, - STATE(4658), 1, - sym_use_clause, - ACTIONS(5386), 3, - anon_sym_type, - anon_sym_function, - anon_sym_const, - [139594] = 4, + 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(843), 1, + sym_member_declarations, + STATE(3719), 1, + sym_type_parameters, + STATE(4000), 1, + sym_extends_clause, + STATE(4429), 1, + sym_implements_clause, + STATE(5720), 1, + sym_where_clause, + [140670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4685), 1, anon_sym_BSLASH, - STATE(3595), 1, + STATE(3654), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 8, + ACTIONS(2818), 8, anon_sym_COLON_COLON, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [139614] = 11, - ACTIONS(3), 1, + [140690] = 9, + ACTIONS(5544), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5575), 1, anon_sym_LT, - ACTIONS(5494), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1040), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1500), 1, sym_member_declarations, - STATE(3668), 1, + STATE(3738), 1, sym_type_parameters, - STATE(3870), 1, + STATE(3918), 1, sym_extends_clause, - STATE(4341), 1, + STATE(4241), 1, sym_implements_clause, - STATE(5303), 1, + STATE(5671), 1, sym_where_clause, - [139648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 10, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_extends, - anon_sym_implements, - [139664] = 11, + [140754] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1077), 1, + STATE(999), 1, sym_member_declarations, - STATE(3690), 1, + STATE(3705), 1, sym_type_parameters, - STATE(3849), 1, + STATE(3845), 1, sym_extends_clause, - STATE(4173), 1, + STATE(4383), 1, sym_implements_clause, - STATE(5472), 1, + STATE(5470), 1, sym_where_clause, - [139698] = 4, + [140788] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_BSLASH, - STATE(3595), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2756), 8, - anon_sym_COLON_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [139718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 10, + ACTIONS(5562), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_extends, - anon_sym_implements, - [139734] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1633), 1, + STATE(786), 1, sym_member_declarations, - STATE(3659), 1, + STATE(3713), 1, sym_type_parameters, - STATE(3790), 1, + STATE(3992), 1, sym_extends_clause, - STATE(4366), 1, + STATE(4361), 1, sym_implements_clause, - STATE(5203), 1, + STATE(5651), 1, sym_where_clause, - [139768] = 11, + [140822] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1139), 1, + STATE(1735), 1, sym_member_declarations, - STATE(3633), 1, + STATE(3750), 1, sym_type_parameters, - STATE(3765), 1, + STATE(3889), 1, sym_extends_clause, - STATE(4109), 1, + STATE(4294), 1, sym_implements_clause, - STATE(5603), 1, + STATE(5689), 1, sym_where_clause, - [139802] = 11, + [140856] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1336), 1, - sym_member_declarations, - STATE(3660), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(3684), 1, sym_type_parameters, - STATE(3899), 1, + STATE(3809), 1, sym_extends_clause, - STATE(4303), 1, + STATE(4460), 1, sym_implements_clause, - STATE(5455), 1, + STATE(4554), 1, + sym_member_declarations, + STATE(5276), 1, sym_where_clause, - [139836] = 11, + [140890] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1030), 1, sym_member_declarations, - STATE(3692), 1, + STATE(3749), 1, sym_type_parameters, - STATE(3844), 1, + STATE(3891), 1, sym_extends_clause, - STATE(4154), 1, + STATE(4309), 1, sym_implements_clause, - STATE(5397), 1, + STATE(5538), 1, sym_where_clause, - [139870] = 11, + [140924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5594), 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, + [140940] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1396), 1, + STATE(1431), 1, sym_member_declarations, - STATE(3697), 1, + STATE(3724), 1, sym_type_parameters, - STATE(3809), 1, + STATE(3858), 1, sym_extends_clause, - STATE(4277), 1, + STATE(4369), 1, sym_implements_clause, - STATE(5572), 1, + STATE(5489), 1, sym_where_clause, - [139904] = 11, + [140974] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1198), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1144), 1, sym_member_declarations, - STATE(3625), 1, + STATE(3682), 1, sym_type_parameters, - STATE(3758), 1, + STATE(3923), 1, sym_extends_clause, - STATE(4332), 1, + STATE(4223), 1, sym_implements_clause, - STATE(5342), 1, + STATE(5455), 1, sym_where_clause, - [139938] = 11, + [141008] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1156), 1, + STATE(1255), 1, sym_member_declarations, - STATE(3632), 1, + STATE(3681), 1, sym_type_parameters, - STATE(3768), 1, + STATE(3921), 1, sym_extends_clause, - STATE(4106), 1, + STATE(4234), 1, sym_implements_clause, - STATE(5602), 1, + STATE(5452), 1, sym_where_clause, - [139972] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - STATE(1970), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4930), 1, - sym_compound_statement, - STATE(5106), 1, - sym_qualified_identifier, - ACTIONS(1993), 3, - anon_sym_elseif, - anon_sym_else, - anon_sym_while, - [140002] = 11, + [141042] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(752), 1, + STATE(1114), 1, sym_member_declarations, - STATE(3699), 1, + STATE(3673), 1, sym_type_parameters, - STATE(3827), 1, + STATE(3902), 1, sym_extends_clause, - STATE(4261), 1, + STATE(4275), 1, sym_implements_clause, - STATE(5617), 1, + STATE(5431), 1, sym_where_clause, - [140036] = 11, + [141076] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(3635), 1, + STATE(1752), 1, + sym_member_declarations, + STATE(3671), 1, sym_type_parameters, - STATE(3773), 1, + STATE(3894), 1, sym_extends_clause, - STATE(4355), 1, + STATE(4297), 1, sym_implements_clause, - STATE(4727), 1, - sym_member_declarations, - STATE(5148), 1, + STATE(5375), 1, sym_where_clause, - [140070] = 11, + [141110] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1189), 1, + STATE(1277), 1, sym_member_declarations, - STATE(3679), 1, + STATE(3683), 1, sym_type_parameters, - STATE(3812), 1, + STATE(3929), 1, sym_extends_clause, - STATE(4148), 1, + STATE(4198), 1, sym_implements_clause, - STATE(5393), 1, + STATE(5479), 1, sym_where_clause, - [140104] = 11, + [141144] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(3685), 1, + STATE(1182), 1, + sym_member_declarations, + STATE(3740), 1, sym_type_parameters, - STATE(3881), 1, + STATE(3931), 1, sym_extends_clause, - STATE(4280), 1, + STATE(4314), 1, sym_implements_clause, - STATE(4852), 1, - sym_member_declarations, - STATE(5577), 1, + STATE(5613), 1, sym_where_clause, - [140138] = 11, + [141178] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(3669), 1, + STATE(1623), 1, + sym_member_declarations, + STATE(3674), 1, sym_type_parameters, - STATE(3802), 1, + STATE(3810), 1, sym_extends_clause, - STATE(4320), 1, + STATE(4466), 1, sym_implements_clause, - STATE(4820), 1, - sym_member_declarations, - STATE(5417), 1, + STATE(5400), 1, sym_where_clause, - [140172] = 11, + [141212] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1583), 1, sym_member_declarations, - STATE(3665), 1, + STATE(3692), 1, sym_type_parameters, - STATE(3834), 1, + STATE(3950), 1, sym_extends_clause, - STATE(4098), 1, + STATE(4178), 1, sym_implements_clause, - STATE(5626), 1, + STATE(5574), 1, sym_where_clause, - [140206] = 11, + [141246] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1461), 1, + STATE(944), 1, sym_member_declarations, - STATE(3689), 1, + STATE(3700), 1, sym_type_parameters, - STATE(3854), 1, + STATE(3832), 1, sym_extends_clause, - STATE(4153), 1, + STATE(4420), 1, sym_implements_clause, - STATE(5400), 1, + STATE(5352), 1, sym_where_clause, - [140240] = 11, + [141280] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(736), 1, - sym_member_declarations, - STATE(3648), 1, + STATE(3696), 1, sym_type_parameters, - STATE(3784), 1, + STATE(3814), 1, sym_extends_clause, - STATE(4268), 1, + STATE(4451), 1, sym_implements_clause, - STATE(5595), 1, + STATE(4603), 1, + sym_member_declarations, + STATE(5285), 1, sym_where_clause, - [140274] = 11, + [141314] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(1461), 1, sym_member_declarations, - STATE(3667), 1, + STATE(3725), 1, sym_type_parameters, - STATE(3886), 1, + STATE(4005), 1, sym_extends_clause, - STATE(4232), 1, + STATE(4442), 1, sym_implements_clause, - STATE(5247), 1, + STATE(5750), 1, sym_where_clause, - [140308] = 2, + [141348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 10, + 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, @@ -309016,28486 +315070,29512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_extends, anon_sym_implements, - [140324] = 4, + [141380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4685), 1, anon_sym_BSLASH, - STATE(3565), 1, + STATE(3612), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 8, + ACTIONS(2806), 8, anon_sym_COLON_COLON, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [140344] = 11, + [141400] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1692), 1, + STATE(970), 1, sym_member_declarations, - STATE(3676), 1, + STATE(3741), 1, sym_type_parameters, - STATE(3817), 1, + STATE(3848), 1, sym_extends_clause, - STATE(4340), 1, + STATE(4374), 1, sym_implements_clause, - STATE(5325), 1, + STATE(5358), 1, sym_where_clause, - [140378] = 11, + [141434] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(858), 1, + STATE(730), 1, sym_member_declarations, - STATE(3644), 1, + STATE(3694), 1, sym_type_parameters, - STATE(3808), 1, + STATE(3964), 1, sym_extends_clause, - STATE(4245), 1, + STATE(4231), 1, sym_implements_clause, - STATE(5554), 1, + STATE(5572), 1, sym_where_clause, - [140412] = 9, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_LBRACE, - ACTIONS(5521), 1, - anon_sym_LT, - ACTIONS(5524), 1, - sym_xhp_comment, - ACTIONS(5527), 1, - sym_xhp_string, - ACTIONS(5530), 1, - anon_sym_LT_SLASH, - STATE(3553), 1, - sym_xhp_open, - STATE(3994), 1, - sym_xhp_open_close, - STATE(3588), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [140442] = 11, + [141468] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(923), 1, + STATE(1346), 1, sym_member_declarations, - STATE(3618), 1, + STATE(3689), 1, sym_type_parameters, - STATE(3803), 1, + STATE(3947), 1, sym_extends_clause, - STATE(4074), 1, + STATE(4176), 1, sym_implements_clause, - STATE(5540), 1, + STATE(5459), 1, sym_where_clause, - [140476] = 11, + [141502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1639), 1, + STATE(1219), 1, sym_member_declarations, - STATE(3624), 1, + STATE(3730), 1, sym_type_parameters, - STATE(3754), 1, + STATE(3969), 1, sym_extends_clause, - STATE(4133), 1, + STATE(4238), 1, sym_implements_clause, - STATE(5441), 1, + STATE(5675), 1, sym_where_clause, - [140510] = 11, + [141536] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1570), 1, + STATE(870), 1, sym_member_declarations, - STATE(3662), 1, + STATE(3703), 1, sym_type_parameters, - STATE(3867), 1, + STATE(3977), 1, sym_extends_clause, - STATE(4326), 1, + STATE(4304), 1, sym_implements_clause, - STATE(5354), 1, + STATE(5570), 1, sym_where_clause, - [140544] = 11, + [141570] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1687), 1, - sym_member_declarations, - STATE(3639), 1, + STATE(3748), 1, sym_type_parameters, - STATE(3777), 1, + STATE(3831), 1, sym_extends_clause, - STATE(4194), 1, + STATE(4414), 1, sym_implements_clause, - STATE(5438), 1, + STATE(4709), 1, + sym_member_declarations, + STATE(5338), 1, sym_where_clause, - [140578] = 11, + [141604] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(720), 1, + STATE(1704), 1, sym_member_declarations, - STATE(3657), 1, + STATE(3677), 1, sym_type_parameters, - STATE(3799), 1, + STATE(3805), 1, sym_extends_clause, - STATE(4274), 1, + STATE(4464), 1, sym_implements_clause, - STATE(5579), 1, + STATE(5425), 1, sym_where_clause, - [140612] = 11, + [141638] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1365), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1001), 1, sym_member_declarations, - STATE(3641), 1, + STATE(3723), 1, sym_type_parameters, - STATE(3922), 1, + STATE(3870), 1, sym_extends_clause, - STATE(4294), 1, + STATE(4341), 1, sym_implements_clause, - STATE(5486), 1, + STATE(5387), 1, sym_where_clause, - [140646] = 4, + [141672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5532), 1, + ACTIONS(4685), 1, anon_sym_BSLASH, - STATE(3595), 1, + STATE(3654), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2771), 8, + ACTIONS(2806), 8, anon_sym_COLON_COLON, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [140666] = 11, + [141692] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(883), 1, - sym_member_declarations, - STATE(3693), 1, + STATE(3714), 1, sym_type_parameters, - STATE(3843), 1, + STATE(3873), 1, sym_extends_clause, - STATE(4253), 1, + STATE(4337), 1, sym_implements_clause, - STATE(5574), 1, + STATE(4771), 1, + sym_member_declarations, + STATE(5388), 1, sym_where_clause, - [140700] = 11, + [141726] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1252), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1730), 1, sym_member_declarations, - STATE(3698), 1, + STATE(3669), 1, sym_type_parameters, - STATE(3860), 1, + STATE(3890), 1, sym_extends_clause, - STATE(4318), 1, + STATE(4302), 1, sym_implements_clause, - STATE(5378), 1, + STATE(5397), 1, sym_where_clause, - [140734] = 11, + [141760] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1413), 1, + STATE(1711), 1, sym_member_declarations, - STATE(3664), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3896), 1, + STATE(3943), 1, sym_extends_clause, - STATE(4171), 1, + STATE(4177), 1, sym_implements_clause, - STATE(5264), 1, + STATE(5278), 1, sym_where_clause, - [140768] = 11, + [141794] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1664), 1, + STATE(807), 1, sym_member_declarations, - STATE(3663), 1, + STATE(3728), 1, sym_type_parameters, - STATE(3895), 1, + STATE(4001), 1, sym_extends_clause, - STATE(4374), 1, + STATE(4473), 1, sym_implements_clause, - STATE(5260), 1, + STATE(5269), 1, sym_where_clause, - [140802] = 11, + [141828] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(959), 1, - sym_member_declarations, - STATE(3670), 1, - sym_type_parameters, - STATE(3879), 1, - sym_extends_clause, - STATE(4220), 1, - sym_implements_clause, - STATE(5286), 1, - sym_where_clause, - [140836] = 11, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3695), 1, + STATE(1397), 1, + sym_member_declarations, + STATE(3711), 1, sym_type_parameters, - STATE(3835), 1, + STATE(3985), 1, sym_extends_clause, - STATE(4369), 1, + STATE(4325), 1, sym_implements_clause, - STATE(4690), 1, - sym_member_declarations, - STATE(5230), 1, + STATE(5714), 1, sym_where_clause, - [140870] = 11, + [141892] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(3640), 1, + STATE(3739), 1, sym_type_parameters, - STATE(3917), 1, + STATE(3854), 1, sym_extends_clause, - STATE(4247), 1, + STATE(4371), 1, sym_implements_clause, - STATE(4760), 1, + STATE(4738), 1, sym_member_declarations, - STATE(5549), 1, + STATE(5367), 1, sym_where_clause, - [140904] = 11, + [141926] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(1066), 1, sym_member_declarations, - STATE(3647), 1, + STATE(3672), 1, sym_type_parameters, - STATE(3788), 1, + STATE(3896), 1, sym_extends_clause, - STATE(4144), 1, + STATE(4295), 1, sym_implements_clause, - STATE(5406), 1, + STATE(5405), 1, sym_where_clause, - [140938] = 11, + [141960] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1129), 1, + STATE(1374), 1, sym_member_declarations, - STATE(3674), 1, + STATE(3699), 1, sym_type_parameters, - STATE(3811), 1, + STATE(3973), 1, sym_extends_clause, - STATE(4104), 1, + STATE(4249), 1, sym_implements_clause, - STATE(5505), 1, + STATE(5547), 1, sym_where_clause, - [140972] = 2, + [141994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 9, + ACTIONS(5604), 1, anon_sym_BSLASH, + STATE(3654), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2837), 8, anon_sym_COLON_COLON, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [140987] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(5535), 1, - anon_sym_RPAREN, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LBRACK, - STATE(1795), 1, - sym_arguments, - STATE(3691), 1, - sym_type_arguments, - ACTIONS(2808), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [141014] = 9, + [142014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 1, - sym_identifier, - ACTIONS(5544), 1, - anon_sym_namespace, - ACTIONS(5547), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5550), 1, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(5607), 1, + sym_identifier, + ACTIONS(5609), 1, anon_sym_RBRACE, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3607), 1, + STATE(3656), 1, aux_sym_trait_use_clause_repeat1, - STATE(6216), 1, + STATE(6285), 1, sym_qualified_identifier, - STATE(6219), 2, + STATE(6273), 2, sym_trait_select_clause, sym_trait_alias_clause, - [141043] = 9, + [142043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(5552), 1, + ACTIONS(5607), 1, sym_identifier, - ACTIONS(5554), 1, + ACTIONS(5611), 1, anon_sym_RBRACE, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3607), 1, + STATE(3663), 1, aux_sym_trait_use_clause_repeat1, - STATE(6216), 1, + STATE(6285), 1, sym_qualified_identifier, - STATE(6219), 2, + STATE(6273), 2, sym_trait_select_clause, sym_trait_alias_clause, - [141072] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LBRACK, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_arguments, - STATE(3691), 1, - sym_type_arguments, - ACTIONS(2808), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [141099] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LBRACK, - STATE(1795), 1, - sym_arguments, - STATE(3691), 1, - sym_type_arguments, - ACTIONS(2808), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [141124] = 9, + [142072] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(5552), 1, + ACTIONS(5607), 1, sym_identifier, - ACTIONS(5558), 1, + ACTIONS(5611), 1, anon_sym_RBRACE, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3616), 1, + STATE(3662), 1, aux_sym_trait_use_clause_repeat1, - STATE(6216), 1, + STATE(6285), 1, sym_qualified_identifier, - STATE(6219), 2, + STATE(6273), 2, sym_trait_select_clause, sym_trait_alias_clause, - [141153] = 8, + [142101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5613), 1, + anon_sym_RPAREN, + ACTIONS(5615), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5617), 1, anon_sym_LBRACK, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(3691), 1, + STATE(3680), 1, sym_type_arguments, - ACTIONS(2808), 3, + ACTIONS(2868), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [141180] = 5, + [142128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5619), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5621), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3836), 1, sym_type_arguments, - ACTIONS(2808), 6, - anon_sym_SEMI, + ACTIONS(2859), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [141201] = 5, + [142149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(5615), 1, + anon_sym_LT, + ACTIONS(5617), 1, + anon_sym_LBRACK, + ACTIONS(5623), 1, + anon_sym_RPAREN, + STATE(1814), 1, + sym_arguments, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(2868), 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(5564), 1, + ACTIONS(5621), 1, anon_sym_LT, - STATE(3846), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(2826), 6, - anon_sym_SEMI, + ACTIONS(2868), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [141222] = 9, + [142197] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(5552), 1, + ACTIONS(5607), 1, sym_identifier, - ACTIONS(5566), 1, + ACTIONS(5625), 1, anon_sym_RBRACE, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3608), 1, + STATE(3663), 1, aux_sym_trait_use_clause_repeat1, - STATE(6216), 1, + STATE(6285), 1, sym_qualified_identifier, - STATE(6219), 2, + STATE(6273), 2, sym_trait_select_clause, sym_trait_alias_clause, - [141251] = 9, + [142226] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(5552), 1, + ACTIONS(5627), 1, sym_identifier, - ACTIONS(5566), 1, + ACTIONS(5630), 1, + anon_sym_namespace, + ACTIONS(5633), 1, + anon_sym_BSLASH, + ACTIONS(5636), 1, anon_sym_RBRACE, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3607), 1, + STATE(3663), 1, aux_sym_trait_use_clause_repeat1, - STATE(6216), 1, + STATE(6285), 1, sym_qualified_identifier, - STATE(6219), 2, + STATE(6273), 2, sym_trait_select_clause, sym_trait_alias_clause, - [141280] = 8, + [142255] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5615), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5617), 1, anon_sym_LBRACK, - ACTIONS(5568), 1, + ACTIONS(5638), 1, anon_sym_RPAREN, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(3691), 1, + STATE(3680), 1, sym_type_arguments, - ACTIONS(2808), 3, + ACTIONS(2868), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [141307] = 9, + [142282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1017), 1, - sym_member_declarations, - STATE(3769), 1, - sym_extends_clause, - STATE(4105), 1, - sym_implements_clause, - STATE(5612), 1, - sym_where_clause, - [141335] = 9, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(5615), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5617), 1, + anon_sym_LBRACK, + STATE(1814), 1, + sym_arguments, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(2868), 4, + sym_variable, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + [142322] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(5615), 1, + anon_sym_LT, + ACTIONS(5617), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_RPAREN, + STATE(1814), 1, + sym_arguments, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(2868), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [142349] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1462), 1, + STATE(1368), 1, sym_member_declarations, - STATE(3838), 1, + STATE(3971), 1, sym_type_parameters, - STATE(4161), 1, + STATE(4240), 1, sym_extends_clause, - STATE(5394), 1, + STATE(5545), 1, sym_where_clause, - [141363] = 9, + [142377] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - STATE(993), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1624), 1, sym_member_declarations, - STATE(3902), 1, - sym_type_parameters, - STATE(4344), 1, + STATE(3813), 1, + sym_extends_clause, + STATE(4462), 1, sym_implements_clause, - STATE(5299), 1, + STATE(5432), 1, sym_where_clause, - [141391] = 9, + [142405] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5506), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1693), 1, - sym_member_declarations, - STATE(3795), 1, + STATE(3880), 1, sym_type_parameters, - STATE(4339), 1, - sym_extends_clause, - STATE(5241), 1, + STATE(4330), 1, + sym_implements_clause, + STATE(4773), 1, + sym_member_declarations, + STATE(5391), 1, sym_where_clause, - [141419] = 9, + [142433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5508), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(960), 1, + STATE(1451), 1, sym_member_declarations, - STATE(3882), 1, - sym_type_parameters, - STATE(4224), 1, + STATE(3951), 1, sym_extends_clause, - STATE(5284), 1, + STATE(4210), 1, + sym_implements_clause, + STATE(5343), 1, sym_where_clause, - [141447] = 9, + [142461] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(1113), 1, sym_member_declarations, - STATE(3916), 1, - sym_type_parameters, - STATE(4338), 1, + STATE(3901), 1, + sym_extends_clause, + STATE(4278), 1, sym_implements_clause, - STATE(5334), 1, + STATE(5429), 1, sym_where_clause, - [141475] = 9, + [142489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1412), 1, + STATE(1136), 1, sym_member_declarations, - STATE(3900), 1, + STATE(3920), 1, sym_extends_clause, - STATE(4169), 1, + STATE(4236), 1, sym_implements_clause, - STATE(5266), 1, + STATE(5449), 1, sym_where_clause, - [141503] = 9, + [142517] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1250), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1517), 1, sym_member_declarations, - STATE(3826), 1, + STATE(3835), 1, sym_extends_clause, - STATE(4319), 1, + STATE(4412), 1, sym_implements_clause, - STATE(5371), 1, + STATE(5635), 1, sym_where_clause, - [141531] = 9, + [142545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + 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(3), 1, + sym_comment, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(719), 1, + STATE(1432), 1, sym_member_declarations, - STATE(3829), 1, + STATE(4010), 1, sym_type_parameters, - STATE(4275), 1, + STATE(4395), 1, sym_extends_clause, - STATE(5573), 1, + STATE(5660), 1, sym_where_clause, - [141559] = 7, + [142597] = 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(5590), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, - anon_sym_GT, - ACTIONS(5574), 1, - sym_xhp_identifier, - ACTIONS(5576), 1, - anon_sym_SLASH_GT, - STATE(3630), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4179), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [141583] = 9, + STATE(1744), 1, + sym_member_declarations, + STATE(3875), 1, + sym_extends_clause, + STATE(4319), 1, + sym_implements_clause, + STATE(5376), 1, + sym_where_clause, + [142625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(738), 1, + STATE(1003), 1, sym_member_declarations, - STATE(3815), 1, + STATE(3852), 1, sym_type_parameters, - STATE(4266), 1, + STATE(4373), 1, sym_extends_clause, - STATE(5601), 1, + STATE(5481), 1, sym_where_clause, - [141611] = 3, + [142653] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5580), 1, - anon_sym_EQ, - ACTIONS(5578), 7, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_use, - anon_sym_as, - anon_sym_COLON, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - anon_sym_EQ_EQ_GT, - [141627] = 7, - ACTIONS(3), 1, - sym_comment, ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5588), 1, anon_sym_LBRACE, - ACTIONS(5574), 1, - sym_xhp_identifier, - ACTIONS(5582), 1, - anon_sym_GT, - ACTIONS(5584), 1, - anon_sym_SLASH_GT, - STATE(3666), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4179), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [141651] = 3, + STATE(1000), 1, + sym_member_declarations, + STATE(3849), 1, + sym_type_parameters, + STATE(4376), 1, + sym_implements_clause, + STATE(5477), 1, + sym_where_clause, + [142681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_EQ, - ACTIONS(5586), 7, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_use, - anon_sym_as, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ_EQ_GT, - [141667] = 9, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1131), 1, + STATE(1239), 1, sym_member_declarations, - STATE(3807), 1, + STATE(3908), 1, sym_extends_clause, - STATE(4091), 1, + STATE(4260), 1, sym_implements_clause, - STATE(5537), 1, + STATE(5443), 1, sym_where_clause, - [141695] = 9, + [142729] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1170), 1, sym_member_declarations, - STATE(3782), 1, + STATE(3933), 1, sym_extends_clause, - STATE(4138), 1, + STATE(4187), 1, sym_implements_clause, - STATE(5436), 1, + STATE(5480), 1, sym_where_clause, - [141723] = 9, + [142757] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(1261), 1, sym_member_declarations, - STATE(3885), 1, - sym_type_parameters, - STATE(4226), 1, + STATE(3922), 1, + sym_extends_clause, + STATE(4228), 1, sym_implements_clause, - STATE(5279), 1, + STATE(5456), 1, sym_where_clause, - [141751] = 9, + [142785] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(3831), 1, + STATE(3817), 1, sym_extends_clause, - STATE(4360), 1, + STATE(4433), 1, sym_implements_clause, - STATE(4698), 1, + STATE(4513), 1, sym_member_declarations, - STATE(5217), 1, + STATE(5302), 1, sym_where_clause, - [141779] = 9, + [142813] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + 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, - ACTIONS(5494), 1, + 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, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_use, + anon_sym_as, anon_sym_where, - ACTIONS(5496), 1, + anon_sym_EQ_EQ_GT, + [142903] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5512), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3863), 1, - sym_type_parameters, - STATE(4287), 1, - sym_extends_clause, - STATE(4850), 1, + STATE(1278), 1, sym_member_declarations, - STATE(5374), 1, + STATE(3930), 1, + sym_extends_clause, + STATE(4194), 1, + sym_implements_clause, + STATE(5482), 1, sym_where_clause, - [141807] = 9, + [142931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(3864), 1, + STATE(733), 1, + sym_member_declarations, + STATE(3957), 1, sym_type_parameters, - STATE(4284), 1, + STATE(4218), 1, sym_implements_clause, - STATE(4851), 1, - sym_member_declarations, - STATE(5566), 1, + STATE(5531), 1, sym_where_clause, - [141835] = 7, + [142959] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5570), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, - anon_sym_GT, - ACTIONS(5574), 1, - sym_xhp_identifier, - ACTIONS(5590), 1, - anon_sym_SLASH_GT, - STATE(3694), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4179), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [141859] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1410), 1, + STATE(732), 1, sym_member_declarations, - STATE(3931), 1, + STATE(3959), 1, + sym_type_parameters, + STATE(4221), 1, sym_extends_clause, - STATE(4207), 1, - sym_implements_clause, - STATE(5254), 1, + STATE(5533), 1, sym_where_clause, - [141887] = 9, + [142987] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(3934), 1, + STATE(1438), 1, + sym_member_declarations, + STATE(3869), 1, sym_extends_clause, - STATE(4276), 1, + STATE(4363), 1, sym_implements_clause, - STATE(4857), 1, - sym_member_declarations, - STATE(5584), 1, + STATE(5490), 1, sym_where_clause, - [141915] = 9, + [143015] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + 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(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1383), 1, + STATE(734), 1, sym_member_declarations, - STATE(3926), 1, + STATE(3976), 1, sym_extends_clause, - STATE(4289), 1, + STATE(4284), 1, sym_implements_clause, - STATE(5501), 1, + STATE(5565), 1, sym_where_clause, - [141943] = 9, + [143071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5514), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1588), 1, - sym_member_declarations, - STATE(3876), 1, - sym_type_parameters, - STATE(4103), 1, - sym_extends_clause, - STATE(5610), 1, - sym_where_clause, - [141971] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1586), 1, + STATE(875), 1, sym_member_declarations, - STATE(3875), 1, + STATE(3980), 1, sym_type_parameters, - STATE(4101), 1, + STATE(4312), 1, sym_implements_clause, - STATE(5613), 1, + STATE(5585), 1, sym_where_clause, - [141999] = 9, + [143099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(836), 1, - sym_member_declarations, - STATE(3920), 1, + STATE(3803), 1, sym_extends_clause, - STATE(4236), 1, + STATE(4469), 1, sym_implements_clause, - STATE(5531), 1, + STATE(4562), 1, + sym_member_declarations, + STATE(5272), 1, sym_where_clause, - [142027] = 7, + [143127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 1, - sym__heredoc_start_newline, - ACTIONS(5596), 1, - sym__heredoc_end_newline, - ACTIONS(5598), 1, - sym__heredoc_end, - ACTIONS(5600), 1, - sym__embedded_opening_brace, - ACTIONS(5592), 2, - sym__heredoc_body, - sym_variable, - STATE(3707), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [142051] = 3, + 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(737), 1, + sym_member_declarations, + STATE(3981), 1, + sym_type_parameters, + STATE(4313), 1, + sym_extends_clause, + STATE(5573), 1, + sym_where_clause, + [143155] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5604), 1, - anon_sym_EQ, - ACTIONS(5602), 7, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_use, - anon_sym_as, - anon_sym_COLON, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - anon_sym_EQ_EQ_GT, - [142067] = 9, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_member_declarations, + STATE(3878), 1, + sym_type_parameters, + STATE(4326), 1, + sym_extends_clause, + STATE(5691), 1, + sym_where_clause, + [143183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1254), 1, + STATE(1347), 1, sym_member_declarations, - STATE(3847), 1, + STATE(3948), 1, sym_extends_clause, - STATE(4170), 1, + STATE(4179), 1, sym_implements_clause, - STATE(5273), 1, + STATE(5513), 1, sym_where_clause, - [142095] = 9, + [143211] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(751), 1, + STATE(997), 1, sym_member_declarations, - STATE(3824), 1, + STATE(3841), 1, sym_extends_clause, - STATE(4262), 1, + STATE(4388), 1, sym_implements_clause, - STATE(5620), 1, + STATE(5469), 1, sym_where_clause, - [142123] = 9, + [143239] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5502), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1153), 1, + STATE(1487), 1, sym_member_declarations, - STATE(3775), 1, + STATE(3874), 1, sym_type_parameters, - STATE(4096), 1, - sym_extends_clause, - STATE(5632), 1, + STATE(4336), 1, + sym_implements_clause, + STATE(5662), 1, sym_where_clause, - [142151] = 9, + [143267] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1155), 1, + STATE(1434), 1, sym_member_declarations, - STATE(3772), 1, + STATE(4003), 1, sym_type_parameters, - STATE(4100), 1, + STATE(4409), 1, sym_implements_clause, - STATE(5609), 1, + STATE(5668), 1, sym_where_clause, - [142179] = 9, + [143295] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(3913), 1, - sym_type_parameters, - STATE(4243), 1, - sym_extends_clause, - STATE(4888), 1, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(750), 1, sym_member_declarations, - STATE(5542), 1, + STATE(3990), 1, + sym_extends_clause, + STATE(4354), 1, + sym_implements_clause, + STATE(5639), 1, sym_where_clause, - [142207] = 9, + [143323] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5672), 1, + anon_sym_LBRACE, + ACTIONS(5674), 1, + anon_sym_GT, + ACTIONS(5676), 1, + sym_xhp_identifier, + ACTIONS(5678), 1, + anon_sym_SLASH_GT, + STATE(3721), 2, + sym_xhp_attribute, + aux_sym_xhp_open_repeat1, + STATE(4357), 2, + sym_braced_expression, + sym_xhp_spread_expression, + [143347] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(3908), 1, - sym_type_parameters, - STATE(4240), 1, - sym_implements_clause, - STATE(4892), 1, + STATE(1029), 1, sym_member_declarations, - STATE(5535), 1, + STATE(3887), 1, + sym_extends_clause, + STATE(4280), 1, + sym_implements_clause, + STATE(5530), 1, sym_where_clause, - [142235] = 7, + [143375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, - sym__embedded_opening_brace, - ACTIONS(5608), 1, - sym__heredoc_start_newline, - ACTIONS(5610), 1, - sym__heredoc_end_newline, - ACTIONS(5612), 1, - sym__heredoc_end, - ACTIONS(5606), 2, - sym__heredoc_body, - sym_variable, - STATE(3746), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [142259] = 9, + ACTIONS(5672), 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5686), 1, + anon_sym_EQ, + ACTIONS(5684), 7, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_use, + anon_sym_as, + anon_sym_where, + anon_sym_EQ_EQ_GT, + [143415] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(737), 1, + STATE(1369), 1, sym_member_declarations, - STATE(3792), 1, + STATE(3972), 1, sym_type_parameters, - STATE(4267), 1, + STATE(4247), 1, sym_implements_clause, - STATE(5599), 1, + STATE(5546), 1, sym_where_clause, - [142287] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 1, - sym_identifier, - ACTIONS(5616), 1, - anon_sym_GT, - ACTIONS(5618), 1, - anon_sym_PLUS, - ACTIONS(5620), 1, - anon_sym_DASH, - ACTIONS(5622), 1, - anon_sym_reify, - ACTIONS(5624), 1, - anon_sym_LT_LT, - STATE(4122), 1, - sym_attribute_modifier, - STATE(5349), 1, - sym_type_parameter, - [142315] = 4, + [143443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, + ACTIONS(5621), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3836), 1, sym_type_arguments, - ACTIONS(2808), 6, - anon_sym_SEMI, + ACTIONS(2859), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [142333] = 9, + [143461] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(1716), 1, sym_member_declarations, - STATE(3760), 1, - sym_extends_clause, - STATE(4269), 1, + STATE(3802), 1, + sym_type_parameters, + STATE(4437), 1, sym_implements_clause, - STATE(5590), 1, + STATE(5286), 1, sym_where_clause, - [142361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - STATE(1731), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 6, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT_GT, - [142379] = 9, + [143489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1571), 1, + STATE(1375), 1, sym_member_declarations, - STATE(3794), 1, + STATE(3974), 1, sym_extends_clause, - STATE(4329), 1, + STATE(4257), 1, sym_implements_clause, - STATE(5346), 1, + STATE(5548), 1, sym_where_clause, - [142407] = 9, + [143517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + 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, + [143535] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1359), 1, + STATE(844), 1, sym_member_declarations, - STATE(3907), 1, + STATE(4008), 1, sym_extends_clause, - STATE(4296), 1, + STATE(4418), 1, sym_implements_clause, - STATE(5481), 1, + STATE(5700), 1, sym_where_clause, - [142435] = 9, + [143563] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(35), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5592), 1, anon_sym_LBRACE, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(1993), 1, - anon_sym_while, - STATE(1524), 1, - sym_compound_statement, - STATE(1970), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4405), 1, - sym_qualified_identifier, - [142463] = 9, + STATE(3855), 1, + sym_extends_clause, + STATE(4367), 1, + sym_implements_clause, + STATE(4740), 1, + sym_member_declarations, + STATE(5368), 1, + sym_where_clause, + [143591] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1553), 1, - sym_member_declarations, - STATE(3883), 1, - sym_extends_clause, - STATE(4282), 1, + STATE(3851), 1, + sym_type_parameters, + STATE(4375), 1, sym_implements_clause, - STATE(5557), 1, + STATE(4737), 1, + sym_member_declarations, + STATE(5366), 1, sym_where_clause, - [142491] = 9, + [143619] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(1398), 1, sym_member_declarations, - STATE(3793), 1, + STATE(3986), 1, + sym_type_parameters, + STATE(4331), 1, sym_extends_clause, - STATE(4368), 1, - sym_implements_clause, - STATE(5295), 1, + STATE(5619), 1, sym_where_clause, - [142519] = 9, + [143647] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(1400), 1, sym_member_declarations, - STATE(3759), 1, - sym_extends_clause, - STATE(4189), 1, + STATE(3988), 1, + sym_type_parameters, + STATE(4342), 1, sym_implements_clause, - STATE(5155), 1, + STATE(5620), 1, sym_where_clause, - [142547] = 9, + [143675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, - ACTIONS(5496), 1, + anon_sym_EQ_EQ_GT, + [143691] = 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(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1640), 1, + STATE(813), 1, sym_member_declarations, - STATE(3915), 1, + STATE(3993), 1, sym_extends_clause, - STATE(4132), 1, + STATE(4450), 1, sym_implements_clause, - STATE(5443), 1, + STATE(5735), 1, sym_where_clause, - [142575] = 6, + [143719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5626), 1, + ACTIONS(5672), 1, anon_sym_LBRACE, - ACTIONS(5631), 1, + ACTIONS(5676), 1, sym_xhp_identifier, - ACTIONS(5629), 2, + ACTIONS(5680), 1, anon_sym_GT, + ACTIONS(5692), 1, anon_sym_SLASH_GT, - STATE(3666), 2, + STATE(3744), 2, sym_xhp_attribute, aux_sym_xhp_open_repeat1, - STATE(4179), 2, + STATE(4357), 2, sym_braced_expression, sym_xhp_spread_expression, - [142597] = 9, + [143743] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5672), 1, anon_sym_LBRACE, - STATE(1028), 1, - sym_member_declarations, - STATE(3914), 1, - sym_extends_clause, - STATE(4349), 1, - sym_implements_clause, - STATE(5147), 1, - sym_where_clause, - [142625] = 9, + ACTIONS(5676), 1, + sym_xhp_identifier, + ACTIONS(5680), 1, + anon_sym_GT, + ACTIONS(5694), 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, + [143767] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - STATE(1196), 1, - sym_member_declarations, - STATE(3761), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(3850), 1, + sym_type_parameters, + STATE(4378), 1, sym_extends_clause, - STATE(4334), 1, - sym_implements_clause, - STATE(5340), 1, + STATE(4736), 1, + sym_member_declarations, + STATE(5364), 1, sym_where_clause, - [142653] = 9, + [143795] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(3770), 1, + STATE(1065), 1, + sym_member_declarations, + STATE(3892), 1, sym_extends_clause, - STATE(4351), 1, + STATE(4300), 1, sym_implements_clause, - STATE(4732), 1, - sym_member_declarations, - STATE(5281), 1, + STATE(5404), 1, sym_where_clause, - [142681] = 9, + [143823] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(943), 1, + STATE(1703), 1, sym_member_declarations, - STATE(3848), 1, + STATE(3872), 1, sym_extends_clause, - STATE(4167), 1, + STATE(4467), 1, sym_implements_clause, - STATE(5376), 1, + STATE(5426), 1, sym_where_clause, - [142709] = 9, + [143851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(940), 1, + STATE(1721), 1, sym_member_declarations, - STATE(3752), 1, - sym_type_parameters, - STATE(4149), 1, + STATE(3864), 1, + sym_extends_clause, + STATE(4327), 1, sym_implements_clause, - STATE(5403), 1, + STATE(5372), 1, sym_where_clause, - [142737] = 9, + [143879] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(939), 1, + STATE(1715), 1, sym_member_declarations, - STATE(3840), 1, + STATE(4004), 1, sym_type_parameters, - STATE(4145), 1, + STATE(4465), 1, sym_extends_clause, - STATE(5413), 1, + STATE(5282), 1, sym_where_clause, - [142765] = 9, + [143907] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - STATE(922), 1, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1545), 1, sym_member_declarations, - STATE(3897), 1, + STATE(3935), 1, sym_type_parameters, - STATE(4343), 1, + STATE(4195), 1, sym_extends_clause, - STATE(5301), 1, + STATE(5557), 1, sym_where_clause, - [142793] = 9, + [143935] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1078), 1, + STATE(782), 1, sym_member_declarations, - STATE(3845), 1, + STATE(3960), 1, sym_extends_clause, - STATE(4225), 1, + STATE(4217), 1, sym_implements_clause, - STATE(5398), 1, + STATE(5693), 1, sym_where_clause, - [142821] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5570), 1, - anon_sym_LBRACE, - ACTIONS(5572), 1, - anon_sym_GT, - ACTIONS(5574), 1, - sym_xhp_identifier, - ACTIONS(5634), 1, - anon_sym_SLASH_GT, - STATE(3700), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4179), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [142845] = 9, + [143963] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1666), 1, + STATE(1037), 1, sym_member_declarations, - STATE(3898), 1, + STATE(3881), 1, + sym_type_parameters, + STATE(4324), 1, sym_extends_clause, - STATE(4352), 1, - sym_implements_clause, - STATE(5265), 1, + STATE(5393), 1, sym_where_clause, - [142873] = 9, + [143991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1191), 1, + STATE(1286), 1, sym_member_declarations, - STATE(3822), 1, - sym_type_parameters, - STATE(4152), 1, + STATE(3997), 1, + sym_extends_clause, + STATE(4474), 1, sym_implements_clause, - STATE(5379), 1, + STATE(5709), 1, sym_where_clause, - [142901] = 9, + [144019] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5502), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1190), 1, + STATE(1471), 1, sym_member_declarations, - STATE(3821), 1, - sym_type_parameters, - STATE(4150), 1, + STATE(3989), 1, sym_extends_clause, - STATE(5392), 1, + STATE(4350), 1, + sym_implements_clause, + STATE(5707), 1, sym_where_clause, - [142929] = 9, + [144047] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1157), 1, + STATE(1549), 1, sym_member_declarations, - STATE(3764), 1, - sym_extends_clause, - STATE(4114), 1, + STATE(3937), 1, + sym_type_parameters, + STATE(4183), 1, sym_implements_clause, - STATE(5541), 1, + STATE(5558), 1, sym_where_clause, - [142957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - STATE(3846), 1, - sym_type_arguments, - ACTIONS(2826), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [142975] = 4, + [144075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - STATE(2721), 1, + STATE(1772), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 6, + ACTIONS(2806), 6, anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_super, - [142993] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5510), 1, + anon_sym_GT_GT, anon_sym_LBRACE, - STATE(718), 1, - sym_member_declarations, - STATE(3851), 1, - sym_type_parameters, - STATE(4278), 1, - sym_implements_clause, - STATE(5569), 1, - sym_where_clause, - [143021] = 9, + anon_sym_SEMI, + anon_sym_LPAREN, + [144093] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1660), 1, - sym_member_declarations, - STATE(3865), 1, + STATE(3879), 1, sym_type_parameters, - STATE(4353), 1, + STATE(4333), 1, sym_extends_clause, - STATE(5252), 1, + STATE(4772), 1, + sym_member_declarations, + STATE(5390), 1, sym_where_clause, - [143049] = 9, + [144121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1661), 1, + STATE(1002), 1, sym_member_declarations, - STATE(3873), 1, + STATE(3876), 1, sym_type_parameters, - STATE(4365), 1, + STATE(4329), 1, sym_implements_clause, - STATE(5255), 1, + STATE(5389), 1, sym_where_clause, - [143077] = 9, + [144173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5672), 1, anon_sym_LBRACE, - STATE(3804), 1, - sym_extends_clause, - STATE(4316), 1, - sym_implements_clause, - STATE(4824), 1, - sym_member_declarations, - STATE(5420), 1, - sym_where_clause, - [143105] = 9, + ACTIONS(5674), 1, + anon_sym_GT, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1218), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1436), 1, sym_member_declarations, - STATE(3767), 1, - sym_type_parameters, - STATE(4331), 1, + STATE(3934), 1, + sym_extends_clause, + STATE(4359), 1, sym_implements_clause, - STATE(5343), 1, + STATE(5701), 1, sym_where_clause, - [143133] = 9, + [144225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1463), 1, - sym_member_declarations, STATE(3833), 1, - sym_type_parameters, - STATE(4177), 1, + sym_extends_clause, + STATE(4410), 1, sym_implements_clause, - STATE(5387), 1, - sym_where_clause, - [143161] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - STATE(1222), 1, + STATE(4715), 1, sym_member_declarations, - STATE(3771), 1, - sym_type_parameters, - STATE(4328), 1, - sym_extends_clause, - STATE(5344), 1, + STATE(5339), 1, sym_where_clause, - [143189] = 9, + [144253] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1207), 1, sym_member_declarations, - STATE(3797), 1, + STATE(3963), 1, sym_extends_clause, - STATE(4093), 1, + STATE(4222), 1, sym_implements_clause, - STATE(5526), 1, + STATE(5690), 1, sym_where_clause, - [143217] = 9, + [144281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(998), 1, sym_member_declarations, - STATE(3880), 1, + STATE(3866), 1, sym_extends_clause, - STATE(4221), 1, + STATE(4346), 1, sym_implements_clause, - STATE(5287), 1, + STATE(5383), 1, sym_where_clause, - [143245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(5636), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_arguments, - ACTIONS(2826), 5, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - [143265] = 9, + [144309] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(968), 1, sym_member_declarations, - STATE(3805), 1, + STATE(3846), 1, + sym_type_parameters, + STATE(4381), 1, sym_extends_clause, - STATE(4070), 1, - sym_implements_clause, - STATE(5520), 1, + STATE(5357), 1, sym_where_clause, - [143293] = 9, + [144337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(866), 1, + STATE(967), 1, sym_member_declarations, - STATE(3894), 1, - sym_extends_clause, - STATE(4248), 1, + STATE(3842), 1, + sym_type_parameters, + STATE(4384), 1, sym_implements_clause, - STATE(5558), 1, + STATE(5356), 1, sym_where_clause, - [143321] = 7, + [144365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5570), 1, + ACTIONS(5706), 1, anon_sym_LBRACE, - ACTIONS(5574), 1, + ACTIONS(5711), 1, sym_xhp_identifier, - ACTIONS(5582), 1, + ACTIONS(5709), 2, anon_sym_GT, - ACTIONS(5638), 1, anon_sym_SLASH_GT, - STATE(3666), 2, + STATE(3744), 2, sym_xhp_attribute, aux_sym_xhp_open_repeat1, - STATE(4179), 2, + STATE(4357), 2, sym_braced_expression, sym_xhp_spread_expression, - [143345] = 9, + [144387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(3871), 1, - sym_extends_clause, - STATE(4367), 1, - sym_implements_clause, - STATE(4659), 1, + STATE(937), 1, sym_member_declarations, - STATE(5253), 1, + STATE(3857), 1, + sym_type_parameters, + STATE(4382), 1, + sym_implements_clause, + STATE(5347), 1, sym_where_clause, - [143373] = 9, + [144439] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, - sym_identifier, - ACTIONS(5618), 1, - anon_sym_PLUS, - ACTIONS(5620), 1, - anon_sym_DASH, - ACTIONS(5622), 1, - anon_sym_reify, - ACTIONS(5624), 1, - anon_sym_LT_LT, - ACTIONS(5640), 1, - anon_sym_GT, - STATE(4122), 1, - sym_attribute_modifier, - STATE(5349), 1, - sym_type_parameter, - [143401] = 9, + ACTIONS(5564), 1, + anon_sym_LT, + 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, + sym_extends_clause, + STATE(5350), 1, + sym_where_clause, + [144467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1518), 1, - sym_member_declarations, - STATE(3919), 1, + STATE(3815), 1, sym_extends_clause, - STATE(4249), 1, + STATE(4447), 1, sym_implements_clause, - STATE(5556), 1, + STATE(4605), 1, + sym_member_declarations, + STATE(5288), 1, sym_where_clause, - [143429] = 9, + [144495] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1335), 1, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1178), 1, sym_member_declarations, - STATE(3904), 1, + STATE(3927), 1, sym_extends_clause, - STATE(4304), 1, + STATE(4214), 1, sym_implements_clause, - STATE(5454), 1, + STATE(5610), 1, sym_where_clause, - [143457] = 9, + [144523] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(1584), 1, sym_member_declarations, - STATE(3832), 1, + STATE(3961), 1, sym_extends_clause, - STATE(4254), 1, + STATE(4206), 1, sym_implements_clause, - STATE(5576), 1, + STATE(5582), 1, sym_where_clause, - [143485] = 7, + [144551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5570), 1, - anon_sym_LBRACE, - ACTIONS(5574), 1, + ACTIONS(5716), 1, + anon_sym_COMMA, + ACTIONS(5718), 1, + anon_sym_RPAREN, + ACTIONS(5722), 1, + anon_sym_PIPE, + STATE(5150), 1, + aux_sym_xhp_children_declaration_repeat1, + ACTIONS(5720), 3, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_STAR, + [144572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 1, + anon_sym_LPAREN, + ACTIONS(5726), 3, sym_xhp_identifier, - ACTIONS(5582), 1, - anon_sym_GT, - ACTIONS(5642), 1, - anon_sym_SLASH_GT, - STATE(3666), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4179), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [143509] = 2, + 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(3), 1, sym_comment, - ACTIONS(5196), 7, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(5724), 1, + anon_sym_LPAREN, + ACTIONS(5728), 3, + sym_xhp_identifier, + sym_xhp_class_identifier, + sym_xhp_category_identifier, + STATE(3754), 3, + sym__xhp_binary_expression, + sym__xhp_postfix_unary_expression, + sym__xhp_parenthesized_expression, + [144606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5720), 3, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(5730), 4, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_where, - anon_sym_implements, - [143522] = 4, + anon_sym_PIPE, + [144621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, + ACTIONS(5732), 7, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5196), 5, - anon_sym_LBRACE, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_STAR, + [144634] = 8, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - anon_sym_implements, - [143539] = 6, + ACTIONS(5734), 1, + anon_sym_COLON, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(4086), 1, + sym_capability_list, + STATE(5396), 1, + sym_where_clause, + ACTIONS(5736), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [144682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5619), 1, + anon_sym_COLON_COLON, + ACTIONS(2907), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [144697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, + ACTIONS(5650), 1, sym__embedded_opening_brace, - ACTIONS(5649), 1, + ACTIONS(5742), 1, sym__heredoc_end_newline, - ACTIONS(5651), 1, + ACTIONS(5744), 1, sym__heredoc_end, - ACTIONS(5647), 2, + ACTIONS(5740), 2, sym__heredoc_body, sym_variable, - STATE(3739), 2, + STATE(3778), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [143560] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 1, - sym_identifier, - ACTIONS(5618), 1, - anon_sym_PLUS, - ACTIONS(5620), 1, - anon_sym_DASH, - ACTIONS(5622), 1, - anon_sym_reify, - ACTIONS(5624), 1, - anon_sym_LT_LT, - STATE(4122), 1, - sym_attribute_modifier, - STATE(5349), 1, - sym_type_parameter, - [143585] = 2, + [144718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 7, + ACTIONS(2909), 7, anon_sym_COLON_COLON, - anon_sym_SEMI, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [143598] = 2, + [144731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 7, + ACTIONS(5746), 7, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_use, - anon_sym_COLON, anon_sym_where, anon_sym_LBRACK, anon_sym_EQ_EQ_GT, - [143611] = 6, + [144744] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, - sym__embedded_opening_brace, - ACTIONS(5649), 1, - sym__heredoc_end_newline, - ACTIONS(5651), 1, - sym__heredoc_end, - ACTIONS(5655), 2, - sym__heredoc_body, - sym_variable, - STATE(3747), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [143632] = 2, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(2806), 1, + anon_sym_COLON_COLON, + ACTIONS(5564), 1, + anon_sym_LT, + STATE(1772), 1, + aux_sym_qualified_identifier_repeat1, + STATE(5520), 1, + sym_type_parameters, + ACTIONS(5748), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [144767] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 7, - anon_sym_LBRACE, + 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, + STATE(4423), 1, + sym_attribute_modifier, + STATE(5488), 1, + sym_type_parameter, + [144792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5750), 7, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_use, - anon_sym_COLON, - anon_sym_where, - anon_sym_LBRACK, - anon_sym_EQ_EQ_GT, - [143645] = 8, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_STAR, + [144805] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5246), 1, + ACTIONS(5318), 1, anon_sym_async, - STATE(4018), 1, + STATE(4043), 1, sym_async_modifier, - STATE(4087), 1, + STATE(4432), 1, sym_parameters, - STATE(5650), 1, + STATE(5764), 1, sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - [143670] = 4, + [144830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_BSLASH, - STATE(2623), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 5, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [143687] = 7, + 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, + STATE(4423), 1, + sym_attribute_modifier, + STATE(5167), 1, + sym_type_parameter, + [144855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5664), 1, + ACTIONS(5752), 7, anon_sym_COLON, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(4049), 1, - sym_capability_list, - STATE(5534), 1, - sym_where_clause, - ACTIONS(5662), 2, anon_sym_LBRACE, anon_sym_SEMI, - [143710] = 8, + anon_sym_use, + anon_sym_where, + anon_sym_LBRACK, + anon_sym_EQ_EQ_GT, + [144868] = 4, + 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, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + [144885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, + ACTIONS(5724), 1, anon_sym_LPAREN, - ACTIONS(5246), 1, - anon_sym_async, - STATE(4002), 1, - sym_async_modifier, - STATE(4311), 1, - sym_parameters, - STATE(5917), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [143735] = 7, + ACTIONS(5756), 3, + sym_xhp_identifier, + sym_xhp_class_identifier, + sym_xhp_category_identifier, + STATE(3768), 3, + sym__xhp_binary_expression, + sym__xhp_postfix_unary_expression, + sym__xhp_parenthesized_expression, + [144902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(5085), 1, + ACTIONS(4986), 1, anon_sym_LT, - ACTIONS(5539), 1, + ACTIONS(5617), 1, anon_sym_LBRACK, - STATE(1795), 1, + STATE(1814), 1, sym_arguments, - STATE(3691), 1, + STATE(3680), 1, sym_type_arguments, - ACTIONS(2808), 2, + ACTIONS(2868), 2, anon_sym_COMMA, anon_sym_GT, - [143758] = 3, + [144925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5619), 1, anon_sym_COLON_COLON, - ACTIONS(2849), 6, - anon_sym_SEMI, + ACTIONS(2917), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [143773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5668), 1, - anon_sym_LPAREN, - ACTIONS(5670), 3, - sym_xhp_identifier, - sym_xhp_class_identifier, - sym_xhp_category_identifier, - STATE(3735), 3, - sym__xhp_binary_expression, - sym__xhp_postfix_unary_expression, - sym__xhp_parenthesized_expression, - [143790] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5246), 1, - anon_sym_async, - STATE(4006), 1, - sym_async_modifier, - STATE(4212), 1, - sym_parameters, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [143815] = 8, + [144940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1493), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5672), 1, - anon_sym_use, - ACTIONS(5674), 1, + ACTIONS(5758), 1, anon_sym_COLON, - STATE(2643), 1, + ACTIONS(5760), 1, + anon_sym_use, + STATE(2755), 1, sym_compound_statement, - STATE(3939), 1, + STATE(4133), 1, sym_capability_list, - STATE(5280), 1, + STATE(5633), 1, sym__anonymous_function_use_clause, - [143840] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(5537), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [143859] = 7, + [144965] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5678), 1, + ACTIONS(5762), 1, anon_sym_COLON, - STATE(4064), 1, + STATE(4130), 1, sym_capability_list, - STATE(5515), 1, + STATE(5450), 1, sym_where_clause, - ACTIONS(5676), 2, + ACTIONS(5764), 2, anon_sym_LBRACE, anon_sym_SEMI, - [143882] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 1, - sym_identifier, - ACTIONS(5618), 1, - anon_sym_PLUS, - ACTIONS(5620), 1, - anon_sym_DASH, - ACTIONS(5622), 1, - anon_sym_reify, - ACTIONS(5624), 1, - anon_sym_LT_LT, - STATE(4122), 1, - sym_attribute_modifier, - STATE(4594), 1, - sym_type_parameter, - [143907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5680), 1, - anon_sym_SEMI, - ACTIONS(5682), 1, - anon_sym_COMMA, - ACTIONS(5686), 1, - anon_sym_PIPE, - STATE(5039), 1, - aux_sym_xhp_children_declaration_repeat1, - ACTIONS(5684), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - [143928] = 4, + [144988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - anon_sym_BSLASH, - STATE(3723), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2750), 5, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, + 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, anon_sym_COMMA, - anon_sym_as, - [143945] = 4, + anon_sym_GT, + [145011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5688), 1, - anon_sym_BSLASH, - STATE(2623), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2756), 5, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(4082), 1, + anon_sym_COLON_COLON, + ACTIONS(5615), 1, + anon_sym_LT, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(2868), 4, + sym_variable, anon_sym_COMMA, - anon_sym_as, - [143962] = 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + [145030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 7, + ACTIONS(5768), 7, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_use, - anon_sym_COLON, anon_sym_where, anon_sym_LBRACK, anon_sym_EQ_EQ_GT, - [143975] = 7, + [145043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5666), 1, + ACTIONS(1493), 1, + anon_sym_LBRACE, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5695), 1, + ACTIONS(5760), 1, + anon_sym_use, + ACTIONS(5770), 1, anon_sym_COLON, - STATE(4042), 1, + STATE(2680), 1, + sym_compound_statement, + STATE(4063), 1, sym_capability_list, - STATE(5423), 1, - sym_where_clause, - ACTIONS(5693), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [143998] = 8, + STATE(5722), 1, + sym__anonymous_function_use_clause, + [145068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5777), 1, + sym__embedded_opening_brace, + ACTIONS(5772), 2, + sym__heredoc_body, + sym_variable, + ACTIONS(5775), 2, + sym__heredoc_end_newline, + sym__heredoc_end, + STATE(3778), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [145087] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5672), 1, + ACTIONS(5760), 1, anon_sym_use, - ACTIONS(5697), 1, + ACTIONS(5780), 1, anon_sym_COLON, - STATE(1923), 1, + STATE(1903), 1, sym_compound_statement, - STATE(4019), 1, + STATE(4084), 1, sym_capability_list, - STATE(5353), 1, + STATE(5576), 1, sym__anonymous_function_use_clause, - [144023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 1, - anon_sym_PIPE, - ACTIONS(5684), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(5699), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [144040] = 3, + [145112] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(5701), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [144055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_COLON_COLON, - ACTIONS(2859), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [144070] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5668), 1, - anon_sym_LPAREN, - ACTIONS(5703), 3, - sym_xhp_identifier, - sym_xhp_class_identifier, - sym_xhp_category_identifier, - STATE(3728), 3, - sym__xhp_binary_expression, - sym__xhp_postfix_unary_expression, - sym__xhp_parenthesized_expression, - [144087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4453), 1, - anon_sym_COLON_COLON, - ACTIONS(5537), 1, - anon_sym_LT, - STATE(2922), 1, - sym_type_arguments, - ACTIONS(2826), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [144106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5705), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_STAR, - [144119] = 4, + ACTIONS(747), 1, + 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(5668), 1, - anon_sym_LPAREN, - ACTIONS(5707), 3, - sym_xhp_identifier, - sym_xhp_class_identifier, - sym_xhp_category_identifier, - STATE(3727), 3, - sym__xhp_binary_expression, - sym__xhp_postfix_unary_expression, - sym__xhp_parenthesized_expression, - [144136] = 2, + 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(5709), 7, - anon_sym_SEMI, + ACTIONS(5788), 7, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_QMARK, anon_sym_PLUS, anon_sym_PIPE, anon_sym_STAR, - [144149] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5682), 1, - anon_sym_COMMA, - ACTIONS(5686), 1, - anon_sym_PIPE, - ACTIONS(5711), 1, - anon_sym_RPAREN, - STATE(5125), 1, - aux_sym_xhp_children_declaration_repeat1, - ACTIONS(5684), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - [144170] = 7, + [145171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(5790), 1, anon_sym_BSLASH, - ACTIONS(2750), 1, - anon_sym_COLON_COLON, - ACTIONS(5492), 1, - anon_sym_LT, - STATE(1731), 1, + STATE(3788), 1, aux_sym_qualified_identifier_repeat1, - STATE(5619), 1, - sym_type_parameters, - ACTIONS(5713), 2, + ACTIONS(2806), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [144193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 7, + anon_sym_RBRACE, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_use, - anon_sym_COLON, - anon_sym_where, - anon_sym_LBRACK, - anon_sym_EQ_EQ_GT, - [144206] = 8, + anon_sym_as, + [145188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, + ACTIONS(5724), 1, anon_sym_LPAREN, - ACTIONS(5246), 1, - anon_sym_async, - STATE(4008), 1, - sym_async_modifier, - STATE(4075), 1, - sym_parameters, - STATE(5719), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [144231] = 6, + ACTIONS(5793), 3, + sym_xhp_identifier, + sym_xhp_class_identifier, + sym_xhp_category_identifier, + STATE(3751), 3, + sym__xhp_binary_expression, + sym__xhp_postfix_unary_expression, + sym__xhp_parenthesized_expression, + [145205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, + ACTIONS(5650), 1, sym__embedded_opening_brace, - ACTIONS(5717), 1, + ACTIONS(5795), 1, sym__heredoc_end_newline, - ACTIONS(5719), 1, + ACTIONS(5797), 1, sym__heredoc_end, - ACTIONS(5655), 2, + ACTIONS(5740), 2, sym__heredoc_body, sym_variable, - STATE(3747), 2, + STATE(3778), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [144252] = 6, + [145226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, + ACTIONS(5650), 1, sym__embedded_opening_brace, - ACTIONS(5723), 1, + ACTIONS(5742), 1, sym__heredoc_end_newline, - ACTIONS(5725), 1, + ACTIONS(5744), 1, sym__heredoc_end, - ACTIONS(5721), 2, + ACTIONS(5799), 2, sym__heredoc_body, sym_variable, - STATE(3742), 2, + STATE(3781), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [144273] = 8, + [145247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5790), 1, + anon_sym_BSLASH, + STATE(2101), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_as, + [145264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5801), 1, + anon_sym_BSLASH, + STATE(2101), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2818), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACE, - ACTIONS(5666), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5672), 1, - anon_sym_use, - ACTIONS(5727), 1, + ACTIONS(5804), 1, anon_sym_COLON, - STATE(1893), 1, - sym_compound_statement, - STATE(4059), 1, + STATE(4103), 1, sym_capability_list, - STATE(5521), 1, - sym__anonymous_function_use_clause, - [144298] = 6, + STATE(5563), 1, + sym_where_clause, + ACTIONS(5806), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [145317] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, - sym__embedded_opening_brace, - ACTIONS(5729), 1, - sym__heredoc_end_newline, - ACTIONS(5731), 1, - sym__heredoc_end, - ACTIONS(5655), 2, - sym__heredoc_body, + ACTIONS(5310), 1, sym_variable, - STATE(3747), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [144319] = 7, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5085), 1, + ACTIONS(5318), 1, + anon_sym_async, + STATE(4116), 1, + sym_async_modifier, + STATE(4197), 1, + sym_parameters, + STATE(5838), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [145367] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 1, + anon_sym_COLON_COLON, + ACTIONS(5615), 1, anon_sym_LT, - ACTIONS(5733), 1, - anon_sym_LBRACK, - STATE(2253), 1, - sym_arguments, - STATE(3964), 1, + STATE(2788), 1, sym_type_arguments, - ACTIONS(2808), 2, + ACTIONS(2859), 4, + sym_variable, anon_sym_COMMA, - anon_sym_GT, - [144342] = 7, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + [145386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5737), 1, + ACTIONS(5808), 1, anon_sym_COLON, - STATE(4026), 1, + STATE(4141), 1, sym_capability_list, - STATE(5248), 1, + STATE(5335), 1, sym_where_clause, - ACTIONS(5735), 2, + ACTIONS(5810), 2, anon_sym_LBRACE, anon_sym_SEMI, - [144365] = 2, + [145409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 7, - anon_sym_SEMI, + ACTIONS(5716), 1, anon_sym_COMMA, - anon_sym_RPAREN, + 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_PIPE, anon_sym_STAR, - [144378] = 6, + [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(5600), 1, + ACTIONS(5650), 1, sym__embedded_opening_brace, - ACTIONS(5723), 1, + ACTIONS(5814), 1, sym__heredoc_end_newline, - ACTIONS(5725), 1, + ACTIONS(5816), 1, sym__heredoc_end, - ACTIONS(5655), 2, + ACTIONS(5740), 2, sym__heredoc_body, sym_variable, - STATE(3747), 2, + STATE(3778), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [144399] = 5, + [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(5746), 1, + ACTIONS(5650), 1, sym__embedded_opening_brace, - ACTIONS(5741), 2, - sym__heredoc_body, - sym_variable, - ACTIONS(5744), 2, + ACTIONS(5814), 1, sym__heredoc_end_newline, + ACTIONS(5816), 1, sym__heredoc_end, - STATE(3747), 2, + ACTIONS(5823), 2, + sym__heredoc_body, + sym_variable, + STATE(3785), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [144418] = 8, + [145515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LBRACE, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(5672), 1, - anon_sym_use, - ACTIONS(5749), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5825), 1, anon_sym_COLON, - STATE(2576), 1, - sym_compound_statement, - STATE(3949), 1, - sym_capability_list, - STATE(5329), 1, - sym__anonymous_function_use_clause, - [144443] = 2, + STATE(1772), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LPAREN, + [145533] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [144456] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1477), 1, + sym_member_declarations, + STATE(4186), 1, + sym_implements_clause, + STATE(5631), 1, + sym_where_clause, + [145555] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_LPAREN, - ACTIONS(5751), 3, - sym_xhp_identifier, - sym_xhp_class_identifier, - sym_xhp_category_identifier, - STATE(3721), 3, - sym__xhp_binary_expression, - sym__xhp_postfix_unary_expression, - sym__xhp_parenthesized_expression, - [144473] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4440), 1, + sym_implements_clause, + STATE(4522), 1, + sym_member_declarations, + STATE(5295), 1, + sym_where_clause, + [145577] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 6, - anon_sym_SEMI, - anon_sym_COMMA, + 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, - [144485] = 7, + [145595] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(1744), 1, sym_member_declarations, - STATE(4077), 1, + STATE(4319), 1, sym_implements_clause, - STATE(5551), 1, + STATE(5376), 1, sym_where_clause, - [144507] = 2, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(5837), 1, + anon_sym_BSLASH, + ACTIONS(5839), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_SEMI, + anon_sym_as, + [145653] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5841), 1, + sym_identifier, + ACTIONS(5843), 1, + anon_sym_as, + ACTIONS(5839), 4, anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [144519] = 7, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + [145669] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1412), 1, + STATE(4433), 1, + sym_implements_clause, + STATE(4513), 1, sym_member_declarations, - STATE(4169), 1, + STATE(5302), 1, + sym_where_clause, + [145691] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1517), 1, + sym_member_declarations, + STATE(4412), 1, sym_implements_clause, - STATE(5266), 1, + STATE(5635), 1, sym_where_clause, - [144541] = 7, + [145713] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5753), 1, + ACTIONS(5845), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [144563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2977), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [144575] = 7, + [145735] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5755), 1, - anon_sym_function, - STATE(4212), 1, - sym_parameters, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [144597] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5847), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [145757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1250), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1518), 1, sym_member_declarations, - STATE(4319), 1, + STATE(4293), 1, sym_implements_clause, - STATE(5371), 1, + STATE(5627), 1, sym_where_clause, - [144619] = 7, + [145779] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1401), 1, - sym_member_declarations, - STATE(4205), 1, + STATE(4469), 1, sym_implements_clause, - STATE(5239), 1, + STATE(4562), 1, + sym_member_declarations, + STATE(5272), 1, sym_where_clause, - [144641] = 7, + [145801] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(750), 1, - sym_member_declarations, - STATE(4265), 1, + STATE(4386), 1, sym_implements_clause, - STATE(5141), 1, + STATE(4563), 1, + sym_member_declarations, + STATE(5728), 1, sym_where_clause, - [144663] = 7, + [145823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1248), 1, - sym_member_declarations, - STATE(4322), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4424), 1, sym_implements_clause, - STATE(5367), 1, + STATE(4497), 1, + sym_member_declarations, + STATE(5316), 1, sym_where_clause, - [144685] = 7, + [145867] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, + 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, + 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(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, + 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(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5853), 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, - ACTIONS(5757), 1, - anon_sym_function, - STATE(4075), 1, - sym_parameters, - STATE(5719), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [144707] = 7, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5759), 1, + ACTIONS(5861), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [144729] = 7, + [146085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, + 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(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + 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(1132), 1, + STATE(997), 1, sym_member_declarations, - STATE(4073), 1, + STATE(4388), 1, sym_implements_clause, - STATE(5547), 1, + STATE(5469), 1, sym_where_clause, - [144751] = 7, + [146173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + 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, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [146207] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1433), 1, sym_member_declarations, - STATE(4138), 1, + STATE(4239), 1, sym_implements_clause, - STATE(5436), 1, + STATE(5708), 1, sym_where_clause, - [144773] = 5, + [146229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3001), 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [146293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 1, + ACTIONS(5869), 1, anon_sym_RBRACE, - ACTIONS(5763), 1, + ACTIONS(5871), 1, anon_sym_case, - ACTIONS(5765), 1, + ACTIONS(5874), 1, anon_sym_default, - STATE(3878), 3, + STATE(3840), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [144791] = 7, + [146311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1261), 1, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1028), 1, sym_member_declarations, - STATE(4317), 1, + STATE(4323), 1, sym_implements_clause, - STATE(5412), 1, + STATE(5525), 1, sym_where_clause, - [144813] = 7, + [146333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1131), 1, + STATE(995), 1, sym_member_declarations, - STATE(4091), 1, + STATE(4351), 1, sym_implements_clause, - STATE(5537), 1, + STATE(5439), 1, sym_where_clause, - [144835] = 7, + [146355] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1179), 1, + STATE(993), 1, sym_member_declarations, - STATE(4135), 1, - sym_implements_clause, - STATE(5319), 1, + STATE(4391), 1, + sym_extends_clause, + STATE(5466), 1, sym_where_clause, - [144857] = 7, + [146377] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5877), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [146399] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4356), 1, - sym_implements_clause, - STATE(4700), 1, + STATE(1029), 1, sym_member_declarations, - STATE(5215), 1, + STATE(4280), 1, + sym_implements_clause, + STATE(5530), 1, sym_where_clause, - [144879] = 7, + [146421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - STATE(1267), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(996), 1, sym_member_declarations, - STATE(4314), 1, + STATE(4349), 1, sym_extends_clause, - STATE(5418), 1, + STATE(5382), 1, sym_where_clause, - [144901] = 7, + [146443] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5879), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [146465] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1127), 1, + STATE(998), 1, sym_member_declarations, - STATE(4108), 1, + STATE(4346), 1, sym_implements_clause, - STATE(5500), 1, + STATE(5383), 1, sym_where_clause, - [144923] = 7, + [146487] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4360), 1, + STATE(1031), 1, + sym_member_declarations, + STATE(4296), 1, sym_implements_clause, - STATE(4698), 1, + 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(5217), 1, + STATE(5325), 1, sym_where_clause, - [144945] = 7, + [146531] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5767), 1, - sym_variable, - ACTIONS(5769), 1, - anon_sym_COMMA, - ACTIONS(5771), 1, - anon_sym_RPAREN, - STATE(4653), 1, - aux_sym_tuple_type_specifier_repeat1, - STATE(6027), 1, - sym_variadic_modifier, - [144967] = 7, + 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(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1126), 1, + STATE(1034), 1, sym_member_declarations, - STATE(4111), 1, + STATE(4289), 1, sym_extends_clause, - STATE(5516), 1, + STATE(5551), 1, sym_where_clause, - [144989] = 5, + [146575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5773), 1, - anon_sym_RBRACE, - STATE(3921), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [145007] = 7, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1410), 1, + STATE(4410), 1, + sym_implements_clause, + STATE(4715), 1, sym_member_declarations, - STATE(4207), 1, + STATE(5339), 1, + sym_where_clause, + [146619] = 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(4406), 1, sym_implements_clause, - STATE(5254), 1, + STATE(4716), 1, + sym_member_declarations, + STATE(5273), 1, sym_where_clause, - [145029] = 5, + [146641] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [145047] = 7, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_member_declarations, + STATE(4398), 1, + sym_implements_clause, + STATE(5598), 1, + sym_where_clause, + [146685] = 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(1703), 1, + sym_member_declarations, + STATE(4467), 1, + sym_implements_clause, + STATE(5426), 1, + sym_where_clause, + [146707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5775), 1, + ACTIONS(5885), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [145069] = 2, + [146729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 6, - anon_sym_SEMI, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 1, + anon_sym_LT, + ACTIONS(5623), 1, + anon_sym_RPAREN, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(2868), 3, + sym_variable, anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [145081] = 2, + anon_sym_DOT_DOT_DOT, + [146783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 6, - anon_sym_SEMI, + ACTIONS(2931), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [145093] = 7, + [146795] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1249), 1, + STATE(1626), 1, sym_member_declarations, - STATE(4162), 1, + STATE(4428), 1, sym_implements_clause, - STATE(5337), 1, + STATE(5314), 1, + sym_where_clause, + [146817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 1, + anon_sym_LT, + ACTIONS(5638), 1, + anon_sym_RPAREN, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(2868), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [146835] = 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(1064), 1, + sym_member_declarations, + STATE(4311), 1, + sym_implements_clause, + STATE(5401), 1, sym_where_clause, - [145115] = 5, + [146857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(5857), 1, anon_sym_case, - ACTIONS(5765), 1, + ACTIONS(5859), 1, anon_sym_default, - ACTIONS(5777), 1, + ACTIONS(5891), 1, anon_sym_RBRACE, - STATE(3878), 3, + STATE(3975), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [145133] = 7, + [146875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5857), 1, + anon_sym_case, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(751), 1, + STATE(1658), 1, sym_member_declarations, - STATE(4262), 1, + STATE(4411), 1, sym_implements_clause, - STATE(5620), 1, + STATE(5428), 1, sym_where_clause, - [145155] = 2, + [146915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [145167] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_member_declarations, + STATE(4300), 1, + sym_implements_clause, + STATE(5404), 1, + sym_where_clause, + [146937] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [145179] = 4, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5895), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [146959] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - STATE(2922), 1, - sym_type_arguments, - ACTIONS(2826), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [145195] = 7, + 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(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1254), 1, + STATE(4367), 1, + sym_implements_clause, + STATE(4740), 1, sym_member_declarations, - STATE(4170), 1, + STATE(5368), 1, + sym_where_clause, + [147003] = 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(5273), 1, + STATE(5591), 1, sym_where_clause, - [145217] = 4, + [147025] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [145233] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1481), 1, + sym_member_declarations, + STATE(4172), 1, + sym_implements_clause, + STATE(5348), 1, + sym_where_clause, + [147047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1571), 1, + STATE(1067), 1, sym_member_declarations, - STATE(4329), 1, + STATE(4291), 1, sym_implements_clause, - STATE(5346), 1, + STATE(5409), 1, sym_where_clause, - [145255] = 5, + [147069] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 3, + ACTIONS(5310), 1, sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [145273] = 7, + 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(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(753), 1, + STATE(1585), 1, sym_member_declarations, - STATE(4260), 1, - sym_implements_clause, - STATE(5611), 1, + STATE(4232), 1, + sym_extends_clause, + STATE(5587), 1, sym_where_clause, - [145295] = 7, + [147113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1572), 1, + STATE(4364), 1, + sym_extends_clause, + STATE(4743), 1, sym_member_declarations, - STATE(4333), 1, - sym_implements_clause, - STATE(5341), 1, + STATE(5369), 1, sym_where_clause, - [145317] = 7, + [147135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1555), 1, - sym_member_declarations, - STATE(4290), 1, + STATE(4362), 1, sym_implements_clause, - STATE(5498), 1, + STATE(4744), 1, + sym_member_declarations, + STATE(5370), 1, sym_where_clause, - [145339] = 7, + [147157] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1667), 1, + STATE(1068), 1, sym_member_declarations, - STATE(4373), 1, + STATE(4290), 1, sym_extends_clause, - STATE(5269), 1, + STATE(5410), 1, sym_where_clause, - [145361] = 5, + [147179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(5857), 1, anon_sym_case, - ACTIONS(5765), 1, + ACTIONS(5859), 1, anon_sym_default, - ACTIONS(5779), 1, + ACTIONS(5899), 1, anon_sym_RBRACE, - STATE(3878), 3, + STATE(3861), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [145379] = 7, + [147197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1656), 1, - sym_member_declarations, - STATE(4130), 1, - sym_implements_clause, - STATE(5453), 1, - sym_where_clause, - [145401] = 7, + ACTIONS(5901), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147209] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5781), 1, + ACTIONS(5903), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [145423] = 7, + [147231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(2942), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147243] = 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(4288), 1, + sym__namespace_identifier, + [147265] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(1176), 1, sym_member_declarations, - STATE(4269), 1, + STATE(4193), 1, sym_implements_clause, - STATE(5590), 1, + STATE(5609), 1, sym_where_clause, - [145445] = 7, + [147287] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5783), 1, + ACTIONS(5905), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [145467] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_function, - STATE(4087), 1, - sym_parameters, - STATE(5650), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [145489] = 7, + [147309] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4351), 1, - sym_implements_clause, - STATE(4732), 1, + STATE(1584), 1, sym_member_declarations, - STATE(5281), 1, + STATE(4206), 1, + sym_implements_clause, + STATE(5582), 1, sym_where_clause, - [145511] = 7, + [147331] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1017), 1, + STATE(1624), 1, sym_member_declarations, - STATE(4105), 1, + STATE(4462), 1, sym_implements_clause, - STATE(5612), 1, + STATE(5432), 1, sym_where_clause, - [145533] = 7, + [147353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4348), 1, - sym_implements_clause, - STATE(4734), 1, + STATE(1178), 1, sym_member_declarations, - STATE(5298), 1, + STATE(4214), 1, + sym_implements_clause, + STATE(5610), 1, sym_where_clause, - [145555] = 7, + [147375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(1112), 1, sym_member_declarations, - STATE(4102), 1, + STATE(4167), 1, sym_implements_clause, - STATE(5625), 1, + STATE(5427), 1, sym_where_clause, - [145577] = 7, + [147397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5785), 1, + ACTIONS(5907), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [145599] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_member_declarations, - STATE(4151), 1, - sym_implements_clause, - STATE(5407), 1, - sym_where_clause, - [145621] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(836), 1, - sym_member_declarations, - STATE(4236), 1, - sym_implements_clause, - STATE(5531), 1, - sym_where_clause, - [145643] = 7, + [147419] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1518), 1, + STATE(1451), 1, sym_member_declarations, - STATE(4249), 1, + STATE(4210), 1, sym_implements_clause, - STATE(5556), 1, + STATE(5343), 1, sym_where_clause, - [145665] = 2, + [147441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 6, - anon_sym_SEMI, + ACTIONS(2946), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [145677] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_member_declarations, - STATE(4225), 1, - sym_implements_clause, - STATE(5398), 1, - sym_where_clause, - [145699] = 7, + [147453] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1157), 1, + STATE(1113), 1, sym_member_declarations, - STATE(4114), 1, + STATE(4278), 1, sym_implements_clause, - STATE(5541), 1, + STATE(5429), 1, sym_where_clause, - [145721] = 5, + [147475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, + ACTIONS(3014), 6, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(5791), 1, sym_xhp_identifier, - ACTIONS(5787), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5793), 2, anon_sym_ATrequired, anon_sym_ATlateinit, - [145739] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5795), 1, - anon_sym_RBRACE, - STATE(3819), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [145757] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_member_declarations, - STATE(4258), 1, - sym_extends_clause, - STATE(5592), 1, - sym_where_clause, - [145779] = 5, + [147487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_LT, - ACTIONS(5568), 1, - anon_sym_RPAREN, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 3, - sym_variable, + ACTIONS(2974), 6, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [145797] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1666), 1, - sym_member_declarations, - STATE(4352), 1, - sym_implements_clause, - STATE(5265), 1, - sym_where_clause, - [145819] = 7, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147499] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5797), 1, + ACTIONS(5909), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [145841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5799), 1, - anon_sym_RBRACE, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [145859] = 2, + [147521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 6, - anon_sym_SEMI, + ACTIONS(2978), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [145871] = 7, + [147533] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5502), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1159), 1, + STATE(1135), 1, sym_member_declarations, - STATE(4159), 1, - sym_extends_clause, - STATE(5511), 1, + STATE(4242), 1, + sym_implements_clause, + STATE(5448), 1, sym_where_clause, - [145893] = 7, + [147555] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(1136), 1, sym_member_declarations, - STATE(4121), 1, + STATE(4236), 1, sym_implements_clause, - STATE(5507), 1, + STATE(5449), 1, sym_where_clause, - [145915] = 7, + [147577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5801), 1, + ACTIONS(5911), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [145937] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(887), 1, - sym_member_declarations, - STATE(4256), 1, - sym_implements_clause, - STATE(5580), 1, - sym_where_clause, - [145959] = 7, + [147599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5803), 1, + ACTIONS(943), 1, anon_sym_namespace, - STATE(3710), 1, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5913), 1, + anon_sym_GT_GT, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(4377), 1, sym_qualified_identifier, - STATE(4203), 1, - sym__namespace_identifier, - [145981] = 7, + [147621] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - STATE(1334), 1, - sym_member_declarations, - STATE(4306), 1, - sym_implements_clause, - STATE(5452), 1, - sym_where_clause, - [146003] = 7, + 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(5494), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(1215), 1, sym_member_declarations, - STATE(4254), 1, + STATE(4271), 1, sym_implements_clause, - STATE(5576), 1, + STATE(5441), 1, sym_where_clause, - [146025] = 2, + [147699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 6, + ACTIONS(3018), 6, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147723] = 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, - [146037] = 7, + [147735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_member_declarations, - STATE(4270), 1, - sym_extends_clause, - STATE(5585), 1, - sym_where_clause, - [146059] = 7, + ACTIONS(3026), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3030), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147759] = 5, + 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(3), 1, sym_comment, - ACTIONS(29), 1, + 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(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5805), 1, + ACTIONS(5923), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [146081] = 7, + [147821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5925), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [147843] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(4376), 1, - sym_implements_clause, - STATE(4666), 1, + STATE(1436), 1, sym_member_declarations, - STATE(5243), 1, + STATE(4359), 1, + sym_implements_clause, + STATE(5701), 1, sym_where_clause, - [146103] = 7, + [147865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(868), 1, + STATE(1164), 1, sym_member_declarations, - STATE(4250), 1, + STATE(4201), 1, sym_implements_clause, - STATE(5560), 1, + STATE(5472), 1, sym_where_clause, - [146125] = 7, + [147905] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(1239), 1, sym_member_declarations, - STATE(4090), 1, + STATE(4260), 1, sym_implements_clause, - STATE(5627), 1, + STATE(5443), 1, sym_where_clause, - [146147] = 7, + [147927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(1242), 1, sym_member_declarations, - STATE(4132), 1, + STATE(4252), 1, sym_implements_clause, - STATE(5443), 1, + STATE(5445), 1, sym_where_clause, - [146169] = 7, + [147949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(4367), 1, - sym_implements_clause, - STATE(4659), 1, + STATE(1170), 1, sym_member_declarations, - STATE(5253), 1, + STATE(4187), 1, + sym_implements_clause, + STATE(5480), 1, sym_where_clause, - [146191] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(5807), 1, - anon_sym_GT_GT, - STATE(1733), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, - sym_qualified_identifier, - [146213] = 2, + [147971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 6, - anon_sym_SEMI, + ACTIONS(3040), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146225] = 7, + [147983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1603), 1, - sym_member_declarations, - STATE(4092), 1, - sym_extends_clause, - STATE(5608), 1, - sym_where_clause, - [146247] = 2, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5927), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [148005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 6, - anon_sym_SEMI, + ACTIONS(3047), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146259] = 7, + [148017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5508), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(1202), 1, sym_member_declarations, - STATE(4079), 1, - sym_extends_clause, - STATE(5552), 1, + STATE(4220), 1, + sym_implements_clause, + STATE(5688), 1, sym_where_clause, - [146281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5809), 1, - anon_sym_RBRACE, - STATE(3766), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146299] = 2, + [148039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [146311] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5929), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [148061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(866), 1, + STATE(1261), 1, sym_member_declarations, - STATE(4248), 1, + STATE(4228), 1, sym_implements_clause, - STATE(5558), 1, + STATE(5456), 1, sym_where_clause, - [146333] = 7, + [148083] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(1262), 1, sym_member_declarations, - STATE(4070), 1, + STATE(4225), 1, sym_implements_clause, - STATE(5520), 1, + STATE(5458), 1, sym_where_clause, - [146355] = 7, + [148105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1062), 1, + STATE(1207), 1, sym_member_declarations, - STATE(4214), 1, + STATE(4222), 1, sym_implements_clause, - STATE(5391), 1, + STATE(5690), 1, sym_where_clause, - [146377] = 2, + [148127] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [146389] = 7, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5921), 1, + anon_sym_function, + STATE(4340), 1, + sym_parameters, + STATE(5773), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [148149] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1282), 1, + STATE(1384), 1, sym_member_declarations, - STATE(4181), 1, + STATE(4174), 1, sym_implements_clause, - STATE(5233), 1, + STATE(5496), 1, sym_where_clause, - [146411] = 7, + [148171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(1519), 1, sym_member_declarations, - STATE(4082), 1, + STATE(4277), 1, sym_implements_clause, - STATE(5563), 1, + STATE(5629), 1, sym_where_clause, - [146433] = 7, + [148193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1463), 1, sym_member_declarations, - STATE(4221), 1, - sym_implements_clause, - STATE(5287), 1, + STATE(4456), 1, + sym_extends_clause, + STATE(5440), 1, sym_where_clause, - [146455] = 2, + [148215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 6, - anon_sym_SEMI, + ACTIONS(3071), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146467] = 7, + [148227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(1455), 1, sym_member_declarations, - STATE(4272), 1, + STATE(4396), 1, sym_implements_clause, - STATE(5583), 1, + STATE(5483), 1, sym_where_clause, - [146489] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(5811), 1, - anon_sym_GT_GT, - STATE(1733), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, - sym_qualified_identifier, - [146511] = 2, + [148249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 6, - anon_sym_SEMI, + ACTIONS(3106), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146523] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_member_declarations, - STATE(4093), 1, - sym_implements_clause, - STATE(5526), 1, - sym_where_clause, - [146545] = 4, + [148261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5817), 1, - anon_sym_as, - ACTIONS(5815), 4, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [146561] = 3, + 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(5819), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5815), 5, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [146575] = 7, + 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(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5803), 1, + ACTIONS(943), 1, anon_sym_namespace, - STATE(3710), 1, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5935), 1, + anon_sym_GT_GT, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(4377), 1, sym_qualified_identifier, - STATE(4193), 1, - sym__namespace_identifier, - [146597] = 7, + [148327] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5803), 1, + ACTIONS(943), 1, anon_sym_namespace, - STATE(3710), 1, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5937), 1, + anon_sym_GT_GT, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(4377), 1, sym_qualified_identifier, - STATE(4068), 1, - sym__namespace_identifier, - [146619] = 5, + [148349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5821), 1, - anon_sym_RBRACE, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146637] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1335), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1471), 1, sym_member_declarations, - STATE(4304), 1, + STATE(4350), 1, sym_implements_clause, - STATE(5454), 1, + STATE(5707), 1, sym_where_clause, - [146659] = 5, + [148371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5823), 1, - anon_sym_RBRACE, - STATE(3783), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146677] = 2, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5939), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [148393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 6, - anon_sym_SEMI, + ACTIONS(3082), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146689] = 7, + [148405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4325), 1, - sym_extends_clause, - STATE(4816), 1, - sym_member_declarations, - STATE(5368), 1, - sym_where_clause, - [146711] = 7, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4323), 1, - sym_implements_clause, - STATE(4817), 1, - sym_member_declarations, - STATE(5369), 1, - sym_where_clause, - [146733] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1630), 1, + STATE(1278), 1, sym_member_declarations, - STATE(4354), 1, - sym_extends_clause, - STATE(5196), 1, + STATE(4194), 1, + sym_implements_clause, + STATE(5482), 1, sym_where_clause, - [146755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5825), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [146767] = 7, + [148445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(1279), 1, sym_member_declarations, - STATE(4282), 1, + STATE(4191), 1, sym_implements_clause, - STATE(5557), 1, + STATE(5484), 1, sym_where_clause, - [146789] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, - anon_sym_BSLASH, - ACTIONS(5803), 1, - anon_sym_namespace, - STATE(3710), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(4117), 1, - sym__namespace_identifier, - [146811] = 7, + [148467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5615), 1, + anon_sym_LT, + ACTIONS(5640), 1, + anon_sym_RPAREN, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(2868), 3, sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5827), 1, - anon_sym_function, - STATE(4311), 1, - sym_parameters, - STATE(5917), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [146833] = 7, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [148485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1196), 1, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1438), 1, sym_member_declarations, - STATE(4334), 1, + STATE(4363), 1, sym_implements_clause, - STATE(5340), 1, + STATE(5490), 1, sym_where_clause, - [146855] = 7, + [148507] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4357), 1, - sym_implements_clause, - STATE(4632), 1, + STATE(1520), 1, sym_member_declarations, - STATE(5261), 1, + STATE(4279), 1, + sym_implements_clause, + STATE(5324), 1, sym_where_clause, - [146877] = 2, + [148529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5829), 6, - anon_sym_SEMI, + ACTIONS(3094), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146889] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1631), 1, - sym_member_declarations, - STATE(4363), 1, - sym_implements_clause, - STATE(5198), 1, - sym_where_clause, - [146911] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, - anon_sym_BSLASH, - ACTIONS(5803), 1, - anon_sym_namespace, - STATE(3710), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(4116), 1, - sym__namespace_identifier, - [146933] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1628), 1, - sym_member_declarations, - STATE(4134), 1, - sym_implements_clause, - STATE(5437), 1, - sym_where_clause, - [146955] = 7, + [148541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1623), 1, - sym_member_declarations, - STATE(4146), 1, - sym_extends_clause, - STATE(5435), 1, - sym_where_clause, - [146977] = 7, + ACTIONS(3102), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, - anon_sym_BSLASH, - ACTIONS(5803), 1, - anon_sym_namespace, - STATE(3710), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(4192), 1, - sym__namespace_identifier, - [146999] = 5, + 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(3), 1, sym_comment, - ACTIONS(5831), 1, - anon_sym_RBRACE, - ACTIONS(5833), 1, + ACTIONS(5857), 1, anon_sym_case, - ACTIONS(5836), 1, + ACTIONS(5859), 1, anon_sym_default, - STATE(3878), 3, + ACTIONS(5943), 1, + anon_sym_RBRACE, + STATE(3970), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [147017] = 7, + [148593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_member_declarations, - STATE(4167), 1, - sym_implements_clause, - STATE(5376), 1, - sym_where_clause, - [147039] = 7, + ACTIONS(5945), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148605] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1032), 1, + STATE(742), 1, sym_member_declarations, - STATE(4244), 1, + STATE(4269), 1, sym_implements_clause, - STATE(5143), 1, + STATE(5552), 1, sym_where_clause, - [147061] = 7, + [148627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(3086), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148639] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4316), 1, - sym_implements_clause, - STATE(4824), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + STATE(739), 1, sym_member_declarations, - STATE(5420), 1, + STATE(4270), 1, + sym_extends_clause, + STATE(5555), 1, sym_where_clause, - [147083] = 7, + [148661] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(5508), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(944), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(766), 1, sym_member_declarations, - STATE(4178), 1, - sym_extends_clause, - STATE(5373), 1, + STATE(4169), 1, + sym_implements_clause, + STATE(5673), 1, sym_where_clause, - [147105] = 7, + [148683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1440), 1, sym_member_declarations, - STATE(4259), 1, + STATE(4320), 1, sym_implements_clause, - STATE(5594), 1, + STATE(5491), 1, sym_where_clause, - [147127] = 2, + [148705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 6, - anon_sym_SEMI, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5947), 1, + anon_sym_COLON, + STATE(1772), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 3, anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147139] = 7, + anon_sym_GT_GT, + anon_sym_LPAREN, + [148723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(1271), 1, sym_member_declarations, - STATE(4185), 1, + STATE(4343), 1, sym_implements_clause, - STATE(5362), 1, + STATE(5706), 1, sym_where_clause, - [147161] = 7, + [148745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1028), 1, + STATE(734), 1, sym_member_declarations, - STATE(4349), 1, + STATE(4284), 1, sym_implements_clause, - STATE(5147), 1, + STATE(5565), 1, sym_where_clause, - [147183] = 2, + [148767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 6, - anon_sym_SEMI, + ACTIONS(3090), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147195] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5839), 1, - anon_sym_function, - STATE(4137), 1, - sym_parameters, - STATE(5891), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [147217] = 7, + [148779] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5841), 1, + ACTIONS(5949), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [147239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5843), 1, - anon_sym_RBRACE, - STATE(3859), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [147257] = 2, + [148801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 6, - anon_sym_SEMI, + ACTIONS(3078), 6, anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 6, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147281] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - anon_sym_function, - STATE(4212), 1, - sym_parameters, - STATE(6071), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [147303] = 7, + [148813] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_member_declarations, - STATE(4239), 1, - sym_implements_clause, - STATE(5543), 1, - sym_where_clause, - [147325] = 7, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(1286), 1, sym_member_declarations, - STATE(4368), 1, + STATE(4474), 1, sym_implements_clause, - STATE(5295), 1, + STATE(5709), 1, sym_where_clause, - [147347] = 7, + [148857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1700), 1, - sym_member_declarations, - STATE(4189), 1, - sym_implements_clause, - STATE(5155), 1, - sym_where_clause, - [147369] = 7, + ACTIONS(5857), 1, + anon_sym_case, + ACTIONS(5859), 1, + anon_sym_default, + ACTIONS(5953), 1, + anon_sym_RBRACE, + STATE(3840), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [148875] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - STATE(1187), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1344), 1, sym_member_declarations, - STATE(4335), 1, + STATE(4339), 1, sym_extends_clause, - STATE(5335), 1, + STATE(5506), 1, sym_where_clause, - [147391] = 7, + [148897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1635), 1, + STATE(921), 1, sym_member_declarations, - STATE(4372), 1, + STATE(4171), 1, sym_implements_clause, - STATE(5205), 1, + STATE(5509), 1, sym_where_clause, - [147413] = 7, + [148919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1359), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1347), 1, sym_member_declarations, - STATE(4296), 1, + STATE(4179), 1, sym_implements_clause, - STATE(5481), 1, + STATE(5513), 1, sym_where_clause, - [147435] = 7, + [148941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1688), 1, + STATE(1348), 1, sym_member_declarations, - STATE(4188), 1, + STATE(4199), 1, sym_implements_clause, - STATE(5158), 1, + STATE(5514), 1, sym_where_clause, - [147457] = 7, + [148963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, - anon_sym_BSLASH, - ACTIONS(5803), 1, - anon_sym_namespace, - STATE(3710), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, - sym_qualified_identifier, - STATE(4299), 1, - sym__namespace_identifier, - [147479] = 7, + 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(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1182), 1, + STATE(741), 1, sym_member_declarations, - STATE(4337), 1, + STATE(4347), 1, sym_implements_clause, - STATE(5390), 1, + STATE(5628), 1, sym_where_clause, - [147501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147513] = 7, + [149003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1358), 1, + STATE(750), 1, sym_member_declarations, - STATE(4297), 1, + STATE(4354), 1, sym_implements_clause, - STATE(5487), 1, + STATE(5639), 1, sym_where_clause, - [147535] = 5, + [149025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(5857), 1, anon_sym_case, - ACTIONS(5765), 1, + ACTIONS(5859), 1, anon_sym_default, - ACTIONS(5845), 1, + ACTIONS(5957), 1, anon_sym_RBRACE, - STATE(3924), 3, + STATE(3840), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [147553] = 7, + [149043] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5847), 1, + ACTIONS(5959), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [147575] = 7, + [149065] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1380), 1, + STATE(796), 1, sym_member_declarations, - STATE(4292), 1, + STATE(4389), 1, sym_implements_clause, - STATE(5496), 1, + STATE(5652), 1, sym_where_clause, - [147597] = 7, + [149087] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5512), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4271), 1, - sym_implements_clause, - STATE(4861), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + STATE(801), 1, sym_member_declarations, - STATE(5591), 1, + STATE(4390), 1, + sym_extends_clause, + STATE(5656), 1, sym_where_clause, - [147619] = 7, + [149109] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5390), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5803), 1, + ACTIONS(943), 1, anon_sym_namespace, - STATE(3710), 1, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5961), 1, + anon_sym_GT_GT, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3856), 1, + STATE(4377), 1, sym_qualified_identifier, - STATE(4327), 1, - sym__namespace_identifier, - [147641] = 2, + [149131] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147653] = 5, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5963), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [149153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(5857), 1, anon_sym_case, - ACTIONS(5765), 1, + ACTIONS(5859), 1, anon_sym_default, - ACTIONS(5851), 1, + ACTIONS(5965), 1, anon_sym_RBRACE, - STATE(3796), 3, + STATE(3907), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [147671] = 7, + [149171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - ACTIONS(5853), 1, - anon_sym_GT_GT, - STATE(1733), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, - sym_qualified_identifier, - [147693] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1375), 1, + sym_member_declarations, + STATE(4257), 1, + sym_implements_clause, + STATE(5548), 1, + sym_where_clause, + [149193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5512), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4273), 1, - sym_extends_clause, - STATE(4860), 1, + STATE(1376), 1, sym_member_declarations, - STATE(5588), 1, + STATE(4265), 1, + sym_extends_clause, + STATE(5553), 1, sym_where_clause, - [147715] = 7, + [149215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5967), 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, + [149233] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1007), 1, + STATE(1377), 1, sym_member_declarations, - STATE(4330), 1, + STATE(4268), 1, sym_implements_clause, - STATE(5152), 1, + STATE(5561), 1, sym_where_clause, - [147737] = 7, + [149255] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1411), 1, + STATE(1714), 1, sym_member_declarations, - STATE(4168), 1, + STATE(4394), 1, sym_implements_clause, - STATE(5268), 1, + STATE(5354), 1, sym_where_clause, - [147759] = 7, + [149277] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1668), 1, + STATE(848), 1, sym_member_declarations, - STATE(4156), 1, + STATE(4415), 1, sym_implements_clause, - STATE(5277), 1, + STATE(5713), 1, sym_where_clause, - [147781] = 7, + [149299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4276), 1, + STATE(844), 1, + sym_member_declarations, + STATE(4418), 1, sym_implements_clause, - STATE(4857), 1, + STATE(5700), 1, + sym_where_clause, + [149339] = 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(785), 1, sym_member_declarations, - STATE(5584), 1, + STATE(4253), 1, + sym_implements_clause, + STATE(5699), 1, sym_where_clause, - [147803] = 2, + [149361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 6, + ACTIONS(2814), 6, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147815] = 7, + [149385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(1333), 1, sym_member_declarations, - STATE(4237), 1, + STATE(4457), 1, sym_implements_clause, - STATE(5525), 1, + STATE(5730), 1, sym_where_clause, - [147837] = 7, + [149429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(809), 1, + STATE(813), 1, sym_member_declarations, - STATE(4233), 1, + STATE(4450), 1, sym_implements_clause, - STATE(5517), 1, + STATE(5735), 1, sym_where_clause, - [147859] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5855), 1, - anon_sym_RBRACE, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [147877] = 7, + [149475] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1383), 1, + STATE(782), 1, sym_member_declarations, - STATE(4289), 1, + STATE(4217), 1, sym_implements_clause, - STATE(5501), 1, + STATE(5693), 1, sym_where_clause, - [147899] = 2, + [149497] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147911] = 5, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5979), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [149519] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_case, - ACTIONS(5765), 1, - anon_sym_default, - ACTIONS(5857), 1, - anon_sym_RBRACE, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [147929] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1732), 1, + sym_member_declarations, + STATE(4285), 1, + sym_implements_clause, + STATE(5413), 1, + sym_where_clause, + [149541] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 1, - anon_sym_RPAREN, - ACTIONS(5537), 1, - anon_sym_LT, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(2808), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [147947] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1474), 1, + sym_member_declarations, + STATE(4335), 1, + sym_extends_clause, + STATE(5684), 1, + sym_where_clause, + [149563] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, + ACTIONS(5570), 1, anon_sym_implements, - STATE(1366), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1721), 1, sym_member_declarations, - STATE(4286), 1, + STATE(4327), 1, sym_implements_clause, - STATE(5509), 1, + STATE(5372), 1, sym_where_clause, - [147969] = 7, + [149585] = 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(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - ACTIONS(5859), 1, + ACTIONS(5983), 1, anon_sym_GT_GT, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4377), 1, sym_qualified_identifier, - [147991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148003] = 2, + [149629] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148015] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(723), 1, + sym_member_declarations, + STATE(4448), 1, + sym_implements_clause, + STATE(5737), 1, + sym_where_clause, + [149651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 6, - anon_sym_SEMI, + 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_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148027] = 7, + anon_sym_GT_GT, + anon_sym_LPAREN, + [149669] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5514), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1493), 1, + STATE(1724), 1, sym_member_declarations, - STATE(4217), 1, - sym_implements_clause, - STATE(5330), 1, + STATE(4283), 1, + sym_extends_clause, + STATE(5420), 1, sym_where_clause, - [148049] = 2, + [149691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 6, - anon_sym_SEMI, + ACTIONS(2822), 6, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [148061] = 2, + [149703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148073] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5987), 1, + anon_sym_GT_GT, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4377), 1, + sym_qualified_identifier, + [149725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5498), 1, - anon_sym_implements, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4312), 1, - sym_implements_clause, - STATE(4826), 1, - sym_member_declarations, - STATE(5426), 1, - sym_where_clause, - [148095] = 6, + 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(4059), 1, + sym_qualified_identifier, + [149744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(5989), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(5473), 1, + STATE(4125), 1, sym_qualified_identifier, - [148114] = 6, + [149763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5991), 1, + anon_sym_enum, + ACTIONS(5149), 4, anon_sym_class, - ACTIONS(5863), 1, anon_sym_abstract, - ACTIONS(5865), 1, sym_final_modifier, - ACTIONS(5867), 1, sym_xhp_modifier, - STATE(5539), 1, - sym_abstract_modifier, - [148133] = 3, + [149776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, - anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5993), 1, anon_sym_class, + ACTIONS(5995), 1, anon_sym_abstract, + ACTIONS(5997), 1, sym_final_modifier, + ACTIONS(5999), 1, sym_xhp_modifier, - [148146] = 3, + STATE(5592), 1, + sym_abstract_modifier, + [149795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5871), 1, + ACTIONS(6001), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148159] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - ACTIONS(5873), 1, - anon_sym_COLON, - STATE(2662), 1, - sym_compound_statement, - STATE(5356), 1, - sym__anonymous_function_use_clause, - [148178] = 3, + [149808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(6003), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148191] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5877), 1, - anon_sym_catch, - ACTIONS(5879), 1, - anon_sym_finally, - STATE(784), 1, - sym_catch_clause, - STATE(984), 1, - sym_finally_clause, - STATE(3943), 1, - aux_sym_try_statement_repeat1, - [148210] = 3, + [149821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5881), 1, + ACTIONS(6005), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148223] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5877), 1, - anon_sym_catch, - ACTIONS(5879), 1, - anon_sym_finally, - STATE(840), 1, - sym_catch_clause, - STATE(1172), 1, - sym_finally_clause, - STATE(4072), 1, - aux_sym_try_statement_repeat1, - [148242] = 3, + [149834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5883), 1, + ACTIONS(6007), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148255] = 3, + [149847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(6009), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148268] = 3, + [149860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5887), 1, - anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5356), 1, anon_sym_class, + ACTIONS(5364), 1, + sym_xhp_modifier, + ACTIONS(5995), 1, anon_sym_abstract, + ACTIONS(6011), 1, sym_final_modifier, - sym_xhp_modifier, - [148281] = 6, + STATE(5568), 1, + sym_abstract_modifier, + [149879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 1, - anon_sym_catch, - ACTIONS(5891), 1, - anon_sym_finally, - STATE(1268), 1, - sym_catch_clause, - STATE(1671), 1, - sym_finally_clause, - STATE(4072), 1, - aux_sym_try_statement_repeat1, - [148300] = 3, + ACTIONS(6013), 1, + anon_sym_enum, + ACTIONS(5149), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [149892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5893), 1, + ACTIONS(6015), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148313] = 6, + [149905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - ACTIONS(5674), 1, - anon_sym_COLON, - STATE(2643), 1, - sym_compound_statement, - STATE(5280), 1, - sym__anonymous_function_use_clause, - [148332] = 3, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(5165), 1, + anon_sym_EQ, + STATE(2221), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [149922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5895), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, + anon_sym_COMMA, + ACTIONS(6019), 1, + anon_sym_GT_GT, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + STATE(5144), 1, + sym_arguments, + [149941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148345] = 3, + [149954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5897), 1, - anon_sym_enum, - ACTIONS(5060), 4, - anon_sym_class, + 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(4085), 1, + sym_qualified_identifier, + [149973] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5995), 1, anon_sym_abstract, + ACTIONS(6023), 1, + anon_sym_class, + ACTIONS(6025), 1, sym_final_modifier, + ACTIONS(6027), 1, sym_xhp_modifier, - [148358] = 3, + STATE(5562), 1, + sym_abstract_modifier, + [149992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(6029), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148371] = 6, + [150005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5901), 1, + ACTIONS(6031), 1, anon_sym_catch, - ACTIONS(5903), 1, + ACTIONS(6033), 1, anon_sym_finally, - STATE(1289), 1, + STATE(929), 1, sym_catch_clause, - STATE(1496), 1, + STATE(1647), 1, sym_finally_clause, - STATE(3955), 1, + STATE(4034), 1, aux_sym_try_statement_repeat1, - [148390] = 3, + [150024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4910), 1, + anon_sym_RPAREN, + ACTIONS(6035), 1, + anon_sym_COMMA, + STATE(4984), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4986), 1, + sym_variadic_modifier, + [150043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6037), 1, anon_sym_enum, - ACTIONS(5060), 4, + ACTIONS(5149), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [148403] = 6, + [150056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5901), 1, + ACTIONS(6031), 1, anon_sym_catch, - ACTIONS(5903), 1, + ACTIONS(6033), 1, anon_sym_finally, - STATE(1311), 1, + STATE(1265), 1, sym_catch_clause, - STATE(1491), 1, + STATE(1535), 1, sym_finally_clause, - STATE(4072), 1, + STATE(4215), 1, aux_sym_try_statement_repeat1, - [148422] = 6, + [150075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(5382), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_LBRACK, - STATE(1795), 1, - sym_arguments, - STATE(4437), 1, - sym_type_arguments, - [148441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3983), 1, + STATE(4101), 1, sym_qualified_identifier, - [148460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(1862), 1, - sym_compound_statement, - ACTIONS(5907), 3, - sym_variable, - anon_sym_LPAREN, - anon_sym_function, - [148475] = 3, + [150094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - anon_sym_enum, - ACTIONS(5060), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [148488] = 6, + 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, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4772), 1, - anon_sym_RPAREN, - ACTIONS(5911), 1, + STATE(4119), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6039), 2, anon_sym_COMMA, - STATE(4384), 1, - sym_variadic_modifier, - STATE(4386), 1, - aux_sym_function_type_specifier_repeat1, - [148507] = 6, + anon_sym_GT, + ACTIONS(6041), 2, + anon_sym_as, + anon_sym_super, + [150128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, + ACTIONS(5324), 1, anon_sym_class, - ACTIONS(5260), 1, + ACTIONS(5332), 1, sym_xhp_modifier, - ACTIONS(5863), 1, + ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(5913), 1, + ACTIONS(6043), 1, sym_final_modifier, - STATE(5276), 1, + STATE(5761), 1, sym_abstract_modifier, - [148526] = 6, + [150147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4774), 1, - anon_sym_RPAREN, - ACTIONS(5915), 1, + STATE(4146), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6045), 2, anon_sym_COMMA, - STATE(4387), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4388), 1, - sym_variadic_modifier, - [148545] = 6, + anon_sym_GT, + [150162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4778), 1, - anon_sym_RPAREN, - ACTIONS(5917), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6047), 1, anon_sym_COMMA, - STATE(4389), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4390), 1, - sym_variadic_modifier, - [148564] = 5, + ACTIONS(6049), 1, + anon_sym_GT_GT, + STATE(4914), 1, + aux_sym_module_attribute_repeat1, + STATE(4917), 1, + sym_arguments, + [150181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(5919), 1, - anon_sym_LBRACK, - STATE(2343), 1, - sym_arguments, - ACTIONS(2826), 2, - anon_sym_COMMA, - anon_sym_GT, - [148581] = 6, + 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(4128), 1, + sym_qualified_identifier, + [150200] = 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(4040), 1, + sym_qualified_identifier, + [150219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5921), 1, - anon_sym_COMMA, - ACTIONS(5923), 1, - anon_sym_GT_GT, - STATE(4507), 1, - aux_sym_attribute_modifier_repeat1, - STATE(4513), 1, - sym_arguments, - [148600] = 6, + 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(5925), 1, + 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, - ACTIONS(5927), 1, anon_sym_finally, - STATE(791), 1, - sym_catch_clause, - STATE(963), 1, - sym_finally_clause, - STATE(3980), 1, - aux_sym_try_statement_repeat1, - [148619] = 6, + [150270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(5931), 1, - anon_sym_GT_GT, - STATE(4438), 1, + ACTIONS(6053), 1, + anon_sym_LBRACK, + STATE(2261), 1, sym_arguments, - STATE(4439), 1, - aux_sym_attribute_modifier_repeat1, - [148638] = 6, + ACTIONS(2859), 2, + anon_sym_COMMA, + anon_sym_GT, + [150287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 1, + ACTIONS(6055), 1, anon_sym_catch, - ACTIONS(5891), 1, + ACTIONS(6057), 1, anon_sym_finally, - STATE(1274), 1, + STATE(871), 1, sym_catch_clause, - STATE(1696), 1, + STATE(1405), 1, sym_finally_clause, - STATE(3947), 1, + STATE(4066), 1, aux_sym_try_statement_repeat1, - [148657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 1, - anon_sym_LBRACE, - STATE(2658), 1, - sym_compound_statement, - ACTIONS(5907), 3, - sym_variable, - anon_sym_LPAREN, - anon_sym_function, - [148672] = 6, + [150306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4832), 1, + ACTIONS(4834), 1, anon_sym_RPAREN, - ACTIONS(5933), 1, + ACTIONS(6059), 1, anon_sym_COMMA, - STATE(4401), 1, + STATE(4532), 1, sym_variadic_modifier, - STATE(4402), 1, + STATE(4533), 1, aux_sym_function_type_specifier_repeat1, - [148691] = 6, + [150325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4872), 1, + ACTIONS(4836), 1, anon_sym_RPAREN, - ACTIONS(5935), 1, + ACTIONS(6061), 1, anon_sym_COMMA, - STATE(4403), 1, + STATE(4537), 1, aux_sym_function_type_specifier_repeat1, - STATE(4404), 1, + STATE(4538), 1, sym_variadic_modifier, - [148710] = 6, + [150344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4834), 1, - anon_sym_RPAREN, - ACTIONS(5937), 1, + ACTIONS(6063), 1, + anon_sym_catch, + ACTIONS(6065), 1, + anon_sym_finally, + STATE(799), 1, + sym_catch_clause, + STATE(966), 1, + sym_finally_clause, + STATE(4056), 1, + aux_sym_try_statement_repeat1, + [150363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6067), 1, anon_sym_COMMA, - STATE(4413), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4414), 1, - sym_variadic_modifier, - [148729] = 6, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5277), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_implements, + [150378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(5382), 1, - anon_sym_LT, - ACTIONS(5733), 1, - anon_sym_LBRACK, - STATE(2253), 1, - sym_arguments, - STATE(4574), 1, - sym_type_arguments, - [148748] = 3, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6069), 1, + anon_sym_class, + ACTIONS(6071), 1, + sym_final_modifier, + ACTIONS(6073), 1, + sym_xhp_modifier, + STATE(5536), 1, + sym_abstract_modifier, + [150397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, - anon_sym_else, - ACTIONS(1997), 4, - anon_sym_elseif, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [148761] = 6, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4838), 1, + anon_sym_RPAREN, + ACTIONS(6081), 1, + anon_sym_COMMA, + STATE(4540), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4541), 1, + sym_variadic_modifier, + [150450] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6063), 1, anon_sym_catch, - ACTIONS(5941), 1, + ACTIONS(6065), 1, anon_sym_finally, - STATE(702), 1, + STATE(820), 1, sym_catch_clause, - STATE(717), 1, + STATE(991), 1, sym_finally_clause, - STATE(3976), 1, + STATE(4215), 1, aux_sym_try_statement_repeat1, - [148780] = 6, + [150469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 1, + ACTIONS(6083), 1, anon_sym_catch, - ACTIONS(5941), 1, + ACTIONS(6085), 1, anon_sym_finally, - STATE(701), 1, + STATE(926), 1, sym_catch_clause, - STATE(731), 1, + STATE(1483), 1, sym_finally_clause, - STATE(4072), 1, + STATE(4068), 1, aux_sym_try_statement_repeat1, - [148799] = 4, + [150488] = 3, + ACTIONS(3250), 1, + sym_xhp_string, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(3248), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [150501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_else, - ACTIONS(2009), 2, - anon_sym_elseif, - anon_sym_while, - ACTIONS(5943), 2, - anon_sym_catch, - anon_sym_finally, - [148814] = 6, + ACTIONS(3392), 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, + sym_arguments, + STATE(4627), 1, + aux_sym_module_attribute_repeat1, + [150539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4766), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, - ACTIONS(5945), 1, + ACTIONS(6095), 1, anon_sym_COMMA, - STATE(4425), 1, + STATE(4582), 1, sym_variadic_modifier, - STATE(4426), 1, + STATE(4583), 1, aux_sym_function_type_specifier_repeat1, - [148833] = 6, + [150558] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4754), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - ACTIONS(5947), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - STATE(4429), 1, + STATE(4586), 1, aux_sym_function_type_specifier_repeat1, - STATE(4430), 1, + STATE(4587), 1, sym_variadic_modifier, - [148852] = 6, + [150577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 1, - anon_sym_catch, - ACTIONS(5927), 1, - anon_sym_finally, - STATE(834), 1, - sym_catch_clause, - STATE(947), 1, - sym_finally_clause, - STATE(4072), 1, - aux_sym_try_statement_repeat1, - [148871] = 6, + 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(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4748), 1, + ACTIONS(4878), 1, anon_sym_RPAREN, - ACTIONS(5949), 1, + ACTIONS(6099), 1, anon_sym_COMMA, - STATE(4433), 1, + STATE(4589), 1, aux_sym_function_type_specifier_repeat1, - STATE(4434), 1, + STATE(4590), 1, sym_variadic_modifier, - [148890] = 6, + [150615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, - anon_sym_finally, - ACTIONS(5951), 1, + ACTIONS(6101), 1, anon_sym_catch, - STATE(1289), 1, + ACTIONS(6103), 1, + anon_sym_finally, + STATE(864), 1, sym_catch_clause, - STATE(1496), 1, + STATE(989), 1, sym_finally_clause, - STATE(4021), 1, + STATE(4215), 1, aux_sym_try_statement_repeat1, - [148909] = 6, + [150634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(5953), 1, - anon_sym_COMMA, - ACTIONS(5955), 1, - anon_sym_GT_GT, - STATE(4554), 1, - sym_arguments, - STATE(4555), 1, - aux_sym_attribute_modifier_repeat1, - [148928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2013), 1, - anon_sym_else, - ACTIONS(2015), 2, - anon_sym_elseif, - anon_sym_while, - ACTIONS(5943), 2, + ACTIONS(6055), 1, anon_sym_catch, + ACTIONS(6057), 1, anon_sym_finally, - [148943] = 6, + STATE(874), 1, + sym_catch_clause, + STATE(1380), 1, + sym_finally_clause, + STATE(4215), 1, + aux_sym_try_statement_repeat1, + [150653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 1, + ACTIONS(6105), 1, + anon_sym_enum, + ACTIONS(5149), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [150666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6083), 1, anon_sym_catch, - ACTIONS(5959), 1, + ACTIONS(6085), 1, anon_sym_finally, - STATE(3977), 1, - sym_catch_clause, - STATE(4072), 1, - aux_sym_try_statement_repeat1, - STATE(4867), 1, + STATE(1128), 1, + sym_catch_clause, + STATE(1615), 1, sym_finally_clause, - [148962] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4860), 1, - anon_sym_RPAREN, - ACTIONS(5961), 1, - anon_sym_COMMA, - STATE(4442), 1, - sym_variadic_modifier, - STATE(4443), 1, - aux_sym_function_type_specifier_repeat1, - [148981] = 3, - ACTIONS(3254), 1, + STATE(4215), 1, + aux_sym_try_statement_repeat1, + [150685] = 3, + ACTIONS(3344), 1, sym_xhp_string, - ACTIONS(5472), 1, + ACTIONS(5544), 1, sym_comment, - ACTIONS(3256), 4, + ACTIONS(3342), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [148994] = 6, + [150698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4824), 1, - anon_sym_RPAREN, - ACTIONS(5963), 1, - anon_sym_COMMA, - STATE(4446), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4453), 1, - sym_variadic_modifier, - [149013] = 3, - ACTIONS(3234), 1, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6107), 1, + anon_sym_class, + ACTIONS(6109), 1, + sym_final_modifier, + ACTIONS(6111), 1, + sym_xhp_modifier, + STATE(5270), 1, + sym_abstract_modifier, + [150717] = 3, + ACTIONS(3264), 1, sym_xhp_string, - ACTIONS(5472), 1, + ACTIONS(5544), 1, sym_comment, - ACTIONS(3236), 4, + ACTIONS(3262), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [149026] = 3, - ACTIONS(3242), 1, - sym_xhp_string, - ACTIONS(5472), 1, + [150730] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 4, - anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [149039] = 6, + 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(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4866), 1, - anon_sym_RPAREN, - ACTIONS(5965), 1, + 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, + 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(4075), 1, + sym_qualified_identifier, + [150787] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6117), 1, anon_sym_COMMA, - STATE(4457), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4458), 1, - sym_variadic_modifier, - [149058] = 3, - ACTIONS(3082), 1, - sym_xhp_string, - ACTIONS(5472), 1, + ACTIONS(6119), 1, + anon_sym_GT_GT, + STATE(4965), 1, + sym_arguments, + STATE(4967), 1, + aux_sym_module_attribute_repeat1, + [150806] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 4, - anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [149071] = 3, - ACTIONS(3218), 1, + 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(5472), 1, + ACTIONS(5544), 1, sym_comment, - ACTIONS(3220), 4, + ACTIONS(3348), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [149084] = 3, - ACTIONS(3136), 1, - sym_xhp_string, - ACTIONS(5472), 1, + [150838] = 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(3), 1, sym_comment, - ACTIONS(3138), 4, + ACTIONS(6121), 1, + anon_sym_catch, + ACTIONS(6123), 1, + anon_sym_finally, + STATE(4134), 1, + sym_catch_clause, + STATE(4215), 1, + aux_sym_try_statement_repeat1, + STATE(4746), 1, + sym_finally_clause, + [150876] = 3, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(6127), 1, + sym_xhp_string, + ACTIONS(6125), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [149097] = 6, + [150889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3965), 1, + STATE(4026), 1, sym_qualified_identifier, - [149116] = 6, + [150908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + anon_sym_finally, + ACTIONS(6129), 1, + anon_sym_catch, + STATE(1265), 1, + sym_catch_clause, + STATE(1535), 1, + sym_finally_clause, + STATE(4215), 1, + aux_sym_try_statement_repeat1, + [150927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(6131), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4980), 1, + STATE(4125), 1, sym_qualified_identifier, - [149135] = 6, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, + ACTIONS(3392), 1, anon_sym_LPAREN, - ACTIONS(5967), 1, + ACTIONS(6135), 1, anon_sym_COMMA, - ACTIONS(5969), 1, + ACTIONS(6137), 1, anon_sym_GT_GT, - STATE(4895), 1, - aux_sym_attribute_modifier_repeat1, - STATE(4896), 1, + STATE(4839), 1, + aux_sym_module_attribute_repeat1, + STATE(4841), 1, sym_arguments, - [149154] = 6, + [150984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 1, - anon_sym_catch, - ACTIONS(5959), 1, - anon_sym_finally, - STATE(3984), 1, - sym_catch_clause, - STATE(3985), 1, - aux_sym_try_statement_repeat1, - STATE(4893), 1, - sym_finally_clause, - [149173] = 3, - ACTIONS(3), 1, + 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, + sym_xhp_string, + ACTIONS(5544), 1, sym_comment, - ACTIONS(5971), 1, - anon_sym_enum, - ACTIONS(5060), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149186] = 6, + ACTIONS(3057), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [151014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(5973), 1, - anon_sym_class, - ACTIONS(5975), 1, - sym_final_modifier, - ACTIONS(5977), 1, - sym_xhp_modifier, - STATE(5427), 1, - sym_abstract_modifier, - [149205] = 6, + 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(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4848), 1, + ACTIONS(4898), 1, anon_sym_RPAREN, - ACTIONS(5979), 1, + ACTIONS(6145), 1, anon_sym_COMMA, - STATE(4469), 1, + STATE(4621), 1, sym_variadic_modifier, - STATE(4473), 1, + STATE(4622), 1, aux_sym_function_type_specifier_repeat1, - [149224] = 6, + [151052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(4342), 1, - sym_parameters, - STATE(6061), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [149243] = 6, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6147), 1, + anon_sym_SEMI, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6151), 1, + anon_sym_EQ, + STATE(5203), 1, + sym_type_parameters, + [151071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6153), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_as, + [151082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4842), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - ACTIONS(5981), 1, + ACTIONS(6155), 1, anon_sym_COMMA, - STATE(4474), 1, + STATE(4628), 1, aux_sym_function_type_specifier_repeat1, - STATE(4475), 1, + STATE(4637), 1, sym_variadic_modifier, - [149262] = 6, + [151101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_RPAREN, - ACTIONS(5983), 1, + ACTIONS(6157), 1, anon_sym_COMMA, - STATE(4480), 1, + STATE(4759), 1, aux_sym_function_type_specifier_repeat1, - STATE(4481), 1, + STATE(4760), 1, sym_variadic_modifier, - [149281] = 6, + [151120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + 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, + sym_xhp_string, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(3170), 4, + anon_sym_LBRACE, anon_sym_LT, - ACTIONS(5985), 1, - anon_sym_SEMI, - ACTIONS(5987), 1, - anon_sym_as, - ACTIONS(5989), 1, - anon_sym_EQ, - STATE(5028), 1, - sym_type_parameters, - [149300] = 6, + sym_xhp_comment, + anon_sym_LT_SLASH, + [151152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(4137), 1, + STATE(4365), 1, sym_parameters, - STATE(5891), 1, - sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - [149319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5991), 1, - sym_identifier, - STATE(5178), 1, - sym_visibility_modifier, - ACTIONS(5993), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - [149334] = 6, + STATE(6236), 1, + sym__single_parameter_parameters, + [151171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_variable, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(4222), 1, - sym_parameters, - STATE(5732), 1, - sym__single_parameter_parameters, - STATE(6191), 1, - sym__single_parameter, - [149353] = 6, + ACTIONS(5340), 1, + anon_sym_class, + ACTIONS(5348), 1, + sym_xhp_modifier, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6161), 1, + sym_final_modifier, + STATE(5611), 1, + sym_abstract_modifier, + [151190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4760), 1, + ACTIONS(4906), 1, anon_sym_RPAREN, - ACTIONS(5995), 1, + ACTIONS(6163), 1, anon_sym_COMMA, - STATE(5053), 1, - sym_variadic_modifier, - STATE(5056), 1, + STATE(4640), 1, aux_sym_function_type_specifier_repeat1, - [149372] = 6, + STATE(4642), 1, + sym_variadic_modifier, + [151209] = 3, + ACTIONS(3256), 1, + sym_xhp_string, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(3254), 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6165), 1, + anon_sym_COMMA, + ACTIONS(6167), 1, + anon_sym_GT_GT, + STATE(4650), 1, + aux_sym_module_attribute_repeat1, + STATE(4651), 1, + sym_arguments, + [151260] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4150), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6169), 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, + 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(3), 1, + sym_comment, + ACTIONS(1493), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_compound_statement, + ACTIONS(6177), 3, + sym_variable, + anon_sym_LPAREN, + anon_sym_function, + [151326] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(6179), 1, + sym_identifier, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4125), 1, + sym_qualified_identifier, + [151345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4800), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - ACTIONS(5997), 1, + ACTIONS(6181), 1, anon_sym_COMMA, - STATE(4505), 1, + STATE(4675), 1, sym_variadic_modifier, - STATE(4508), 1, + STATE(4678), 1, aux_sym_function_type_specifier_repeat1, - [149391] = 6, + [151364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4798), 1, + ACTIONS(4944), 1, anon_sym_RPAREN, - ACTIONS(5999), 1, + ACTIONS(6183), 1, anon_sym_COMMA, - STATE(4510), 1, + STATE(4684), 1, aux_sym_function_type_specifier_repeat1, - STATE(4511), 1, + STATE(4685), 1, sym_variadic_modifier, - [149410] = 6, + [151383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6001), 1, - anon_sym_catch, - ACTIONS(6003), 1, - anon_sym_finally, - STATE(832), 1, - sym_catch_clause, - STATE(1192), 1, - sym_finally_clause, - STATE(4028), 1, - aux_sym_try_statement_repeat1, - [149429] = 6, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5766), 1, + anon_sym_LBRACK, + STATE(2511), 1, + sym_arguments, + STATE(4959), 1, + sym_type_arguments, + [151402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4788), 1, + ACTIONS(4940), 1, anon_sym_RPAREN, - ACTIONS(6005), 1, + ACTIONS(6185), 1, anon_sym_COMMA, - STATE(4512), 1, + STATE(4687), 1, aux_sym_function_type_specifier_repeat1, - STATE(4514), 1, + STATE(4688), 1, sym_variadic_modifier, - [149448] = 2, + [151421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6007), 5, - anon_sym_RBRACE, - anon_sym_LBRACE, + ACTIONS(5388), 1, + anon_sym_class, + ACTIONS(5396), 1, + sym_xhp_modifier, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6187), 1, + sym_final_modifier, + STATE(5704), 1, + sym_abstract_modifier, + [151440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6189), 1, anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6191), 1, anon_sym_as, - [149459] = 6, + ACTIONS(6193), 1, + anon_sym_EQ, + STATE(4894), 1, + sym_type_parameters, + [151459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(6009), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4922), 1, + anon_sym_RPAREN, + ACTIONS(6195), 1, anon_sym_COMMA, - ACTIONS(6011), 1, - anon_sym_GT_GT, - STATE(5007), 1, - aux_sym_attribute_modifier_repeat1, - STATE(5008), 1, - sym_arguments, - [149478] = 6, + STATE(4710), 1, + sym_variadic_modifier, + STATE(4713), 1, + aux_sym_function_type_specifier_repeat1, + [151478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(929), 1, - anon_sym_namespace, - ACTIONS(1989), 1, - sym_identifier, - STATE(1733), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4015), 1, - sym_qualified_identifier, - [149497] = 6, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4920), 1, + anon_sym_RPAREN, + ACTIONS(6197), 1, + anon_sym_COMMA, + STATE(4717), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4718), 1, + sym_variadic_modifier, + [151497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4822), 1, + ACTIONS(4912), 1, anon_sym_RPAREN, - ACTIONS(6013), 1, + ACTIONS(6199), 1, anon_sym_COMMA, - STATE(5131), 1, + STATE(4721), 1, aux_sym_function_type_specifier_repeat1, - STATE(5133), 1, + STATE(4723), 1, sym_variadic_modifier, - [149516] = 6, + [151516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(5310), 1, sym_variable, - ACTIONS(5242), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(4084), 1, + STATE(4207), 1, sym_parameters, - STATE(5660), 1, + STATE(5851), 1, sym__single_parameter_parameters, - STATE(6191), 1, + STATE(6014), 1, sym__single_parameter, - [149535] = 6, + [151535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(5672), 1, + ACTIONS(5760), 1, anon_sym_use, - ACTIONS(5727), 1, + ACTIONS(5780), 1, anon_sym_COLON, - STATE(1893), 1, + STATE(1903), 1, sym_compound_statement, - STATE(5521), 1, + STATE(5576), 1, sym__anonymous_function_use_clause, - [149554] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6015), 1, - anon_sym_SEMI, - ACTIONS(6017), 1, - anon_sym_as, - ACTIONS(6019), 1, - anon_sym_EQ, - STATE(5084), 1, - sym_type_parameters, - [149573] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5903), 1, - anon_sym_finally, - ACTIONS(5951), 1, - anon_sym_catch, - STATE(1311), 1, - sym_catch_clause, - STATE(1491), 1, - sym_finally_clause, - STATE(4072), 1, - aux_sym_try_statement_repeat1, - [149592] = 3, - ACTIONS(5472), 1, + [151554] = 3, + ACTIONS(5544), 1, sym_comment, - ACTIONS(6023), 1, + ACTIONS(6203), 1, sym_xhp_string, - ACTIONS(6021), 4, + ACTIONS(6201), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [149605] = 4, + [151567] = 4, ACTIONS(3), 1, sym_comment, - STATE(4041), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6025), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - [149620] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4041), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6029), 2, - anon_sym_COMMA, - anon_sym_GT, - [149635] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4041), 1, + STATE(4146), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, + ACTIONS(6041), 2, anon_sym_as, anon_sym_super, - ACTIONS(6031), 2, + ACTIONS(6205), 2, anon_sym_COMMA, anon_sym_GT, - [149650] = 5, + [151582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(6035), 1, - anon_sym_COLON, - STATE(5165), 1, - sym_where_clause, - ACTIONS(6033), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [149667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3967), 1, + STATE(4165), 1, sym_qualified_identifier, - [149686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6001), 1, - anon_sym_catch, - ACTIONS(6003), 1, - anon_sym_finally, - STATE(844), 1, - sym_catch_clause, - STATE(1162), 1, - sym_finally_clause, - STATE(4072), 1, - aux_sym_try_statement_repeat1, - [149705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6039), 1, - anon_sym_EQ, - ACTIONS(6037), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(6041), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [149720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6043), 1, - anon_sym_SEMI, - ACTIONS(6045), 1, - anon_sym_as, - ACTIONS(6047), 1, - anon_sym_EQ, - STATE(5114), 1, - sym_type_parameters, - [149739] = 6, + [151601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(2029), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(3997), 1, + STATE(4125), 1, sym_qualified_identifier, - [149758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4844), 1, - anon_sym_RPAREN, - ACTIONS(6049), 1, - anon_sym_COMMA, - STATE(5089), 1, - sym_variadic_modifier, - STATE(5095), 1, - aux_sym_function_type_specifier_repeat1, - [149777] = 4, + [151620] = 4, ACTIONS(3), 1, sym_comment, - STATE(4023), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6051), 2, + ACTIONS(6209), 1, + anon_sym_EQ, + ACTIONS(6207), 2, anon_sym_COMMA, - anon_sym_GT, - [149792] = 4, + anon_sym_SEMI, + ACTIONS(6211), 2, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [151635] = 6, ACTIONS(3), 1, sym_comment, - STATE(4024), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6053), 2, - anon_sym_COMMA, - anon_sym_GT, - [149807] = 6, + ACTIONS(6101), 1, + anon_sym_catch, + ACTIONS(6103), 1, + anon_sym_finally, + STATE(863), 1, + sym_catch_clause, + STATE(931), 1, + sym_finally_clause, + STATE(4065), 1, + aux_sym_try_statement_repeat1, + [151654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6055), 1, + ACTIONS(6213), 1, + anon_sym_enum, + ACTIONS(5149), 4, anon_sym_class, - ACTIONS(6057), 1, + anon_sym_abstract, sym_final_modifier, - ACTIONS(6059), 1, sym_xhp_modifier, - STATE(5396), 1, - sym_abstract_modifier, - [149826] = 4, + [151667] = 6, ACTIONS(3), 1, sym_comment, - STATE(4025), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6061), 2, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6215), 1, anon_sym_COMMA, - anon_sym_GT, - [149841] = 4, + ACTIONS(6217), 1, + anon_sym_GT_GT, + STATE(5151), 1, + sym_arguments, + STATE(5154), 1, + aux_sym_module_attribute_repeat1, + [151686] = 4, ACTIONS(3), 1, sym_comment, - STATE(4041), 1, + STATE(4147), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, + ACTIONS(6041), 2, anon_sym_as, anon_sym_super, - ACTIONS(6063), 2, + ACTIONS(6219), 2, anon_sym_COMMA, anon_sym_GT, - [149856] = 6, + [151701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, - anon_sym_class, - ACTIONS(5340), 1, - sym_xhp_modifier, - ACTIONS(5863), 1, + ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6065), 1, + ACTIONS(6221), 1, + anon_sym_class, + ACTIONS(6223), 1, sym_final_modifier, - STATE(5408), 1, + ACTIONS(6225), 1, + sym_xhp_modifier, + STATE(5640), 1, sym_abstract_modifier, - [149875] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4041), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6067), 2, - anon_sym_COMMA, - anon_sym_GT, - [149890] = 4, + [151720] = 6, ACTIONS(3), 1, sym_comment, - STATE(4041), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6069), 2, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6227), 1, anon_sym_COMMA, - anon_sym_GT, - [149905] = 4, + ACTIONS(6229), 1, + anon_sym_GT_GT, + STATE(5090), 1, + sym_arguments, + STATE(5091), 1, + aux_sym_module_attribute_repeat1, + [151739] = 6, ACTIONS(3), 1, sym_comment, - STATE(4041), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6071), 2, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6231), 1, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(6073), 2, - anon_sym_as, - anon_sym_super, - [149920] = 5, + ACTIONS(6233), 1, + anon_sym_GT_GT, + STATE(4870), 1, + sym_arguments, + STATE(4871), 1, + aux_sym_module_attribute_repeat1, + [151758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5737), 1, + ACTIONS(5808), 1, anon_sym_COLON, - STATE(5248), 1, + STATE(5335), 1, sym_where_clause, - ACTIONS(5735), 2, + ACTIONS(5810), 2, anon_sym_LBRACE, anon_sym_SEMI, - [149937] = 4, + [151775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5190), 3, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(6235), 1, + sym_identifier, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4125), 1, + sym_qualified_identifier, + [151794] = 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(3), 1, + sym_comment, + ACTIONS(1493), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_implements, - [149952] = 6, + ACTIONS(5760), 1, + anon_sym_use, + ACTIONS(6237), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_compound_statement, + STATE(5478), 1, + sym__anonymous_function_use_clause, + [151832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5863), 1, + ACTIONS(2041), 1, + anon_sym_else, + ACTIONS(2043), 2, + anon_sym_elseif, + anon_sym_while, + ACTIONS(6239), 2, + anon_sym_catch, + anon_sym_finally, + [151847] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6078), 1, + ACTIONS(6241), 1, anon_sym_class, - ACTIONS(6080), 1, + ACTIONS(6243), 1, sym_final_modifier, - ACTIONS(6082), 1, + ACTIONS(6245), 1, sym_xhp_modifier, - STATE(5428), 1, + STATE(5687), 1, sym_abstract_modifier, - [149971] = 5, + [151866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(5172), 1, - anon_sym_EQ, - STATE(2721), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(5170), 2, - anon_sym_SEMI, + 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, - [149988] = 6, + STATE(4755), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4756), 1, + sym_variadic_modifier, + [151904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(929), 1, + ACTIONS(943), 1, anon_sym_namespace, - ACTIONS(1989), 1, + ACTIONS(6251), 1, sym_identifier, - STATE(1733), 1, + STATE(1777), 1, aux_sym_qualified_identifier_repeat1, - STATE(4083), 1, + STATE(4125), 1, sym_qualified_identifier, - [150007] = 6, + [151923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_class, - ACTIONS(5356), 1, - sym_xhp_modifier, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6084), 1, - sym_final_modifier, - STATE(5446), 1, - sym_abstract_modifier, - [150026] = 4, + 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, - STATE(4056), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6086), 2, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4864), 1, + anon_sym_RPAREN, + ACTIONS(6255), 1, anon_sym_COMMA, - anon_sym_GT, - [150041] = 5, + STATE(4476), 1, + sym_variadic_modifier, + STATE(5256), 1, + aux_sym_function_type_specifier_repeat1, + [151953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(6090), 1, + ACTIONS(6257), 1, anon_sym_COLON, - STATE(5357), 1, + STATE(5680), 1, sym_where_clause, - ACTIONS(6088), 2, + ACTIONS(6259), 2, anon_sym_LBRACE, anon_sym_SEMI, - [150058] = 2, + [151970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6092), 5, - sym__heredoc_body, - sym__heredoc_end_newline, - sym__heredoc_end, - sym__embedded_opening_brace, - sym_variable, - [150069] = 4, + 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(4037), 1, + STATE(4149), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, + ACTIONS(6041), 2, anon_sym_as, anon_sym_super, - ACTIONS(6094), 2, + ACTIONS(6261), 2, anon_sym_COMMA, anon_sym_GT, - [150084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6096), 1, - anon_sym_class, - ACTIONS(6098), 1, - sym_final_modifier, - ACTIONS(6100), 1, - sym_xhp_modifier, - STATE(5463), 1, - sym_abstract_modifier, - [150103] = 4, + [152004] = 6, ACTIONS(3), 1, sym_comment, - STATE(4039), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6102), 2, - anon_sym_COMMA, - anon_sym_GT, - [150118] = 6, + 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(3), 1, sym_comment, - ACTIONS(5268), 1, + ACTIONS(5404), 1, anon_sym_class, - ACTIONS(5276), 1, + ACTIONS(5412), 1, sym_xhp_modifier, - ACTIONS(5863), 1, + ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6104), 1, + ACTIONS(6267), 1, sym_final_modifier, - STATE(5470), 1, + STATE(5649), 1, sym_abstract_modifier, - [150137] = 4, + [152042] = 4, ACTIONS(3), 1, sym_comment, - STATE(4040), 1, + STATE(4146), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6106), 2, + ACTIONS(6269), 2, anon_sym_COMMA, anon_sym_GT, - [150152] = 4, + ACTIONS(6271), 2, + anon_sym_as, + anon_sym_super, + [152057] = 4, ACTIONS(3), 1, sym_comment, - STATE(4041), 1, + STATE(4146), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6027), 2, + ACTIONS(6041), 2, anon_sym_as, anon_sym_super, - ACTIONS(6108), 2, + ACTIONS(6274), 2, anon_sym_COMMA, anon_sym_GT, - [150167] = 3, - ACTIONS(3032), 1, - sym_xhp_string, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(3034), 4, - anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [150180] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6110), 1, - anon_sym_class, - ACTIONS(6112), 1, - sym_final_modifier, - ACTIONS(6114), 1, - sym_xhp_modifier, - STATE(5499), 1, - sym_abstract_modifier, - [150199] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - ACTIONS(6116), 1, - anon_sym_COLON, - STATE(1890), 1, - sym_compound_statement, - STATE(5415), 1, - sym__anonymous_function_use_clause, - [150218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5284), 1, - anon_sym_class, - ACTIONS(5292), 1, - sym_xhp_modifier, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6118), 1, - sym_final_modifier, - STATE(5631), 1, - sym_abstract_modifier, - [150237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6076), 1, - anon_sym_COMMA, - STATE(4043), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5220), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_implements, - [150252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6120), 1, - anon_sym_class, - ACTIONS(6122), 1, - sym_final_modifier, - ACTIONS(6124), 1, - sym_xhp_modifier, - STATE(5597), 1, - sym_abstract_modifier, - [150271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5316), 1, - anon_sym_class, - ACTIONS(5324), 1, - sym_xhp_modifier, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6126), 1, - sym_final_modifier, - STATE(5504), 1, - sym_abstract_modifier, - [150290] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5664), 1, - anon_sym_COLON, - STATE(5534), 1, - sym_where_clause, - ACTIONS(5662), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [150307] = 3, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(6130), 1, - sym_xhp_string, - ACTIONS(6128), 4, - anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [150320] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 1, - anon_sym_class, - ACTIONS(5308), 1, - sym_xhp_modifier, - ACTIONS(5863), 1, - anon_sym_abstract, - ACTIONS(6132), 1, - sym_final_modifier, - STATE(5555), 1, - sym_abstract_modifier, - [150339] = 4, + [152072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6136), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [150353] = 4, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(6138), 1, - anon_sym_LBRACE, - ACTIONS(6142), 1, + STATE(4146), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, anon_sym_as, - ACTIONS(6140), 2, - anon_sym_SEMI, + anon_sym_super, + ACTIONS(6276), 2, anon_sym_COMMA, - [150367] = 5, + anon_sym_GT, + [152102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6144), 1, + STATE(4146), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, anon_sym_as, - ACTIONS(6146), 1, - anon_sym_EQ, - STATE(5530), 1, - sym_type_parameters, - [150383] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_member_declarations, - STATE(5625), 1, - sym_where_clause, - [150399] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6148), 1, - anon_sym_RBRACE, - STATE(4141), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [150413] = 4, + anon_sym_super, + ACTIONS(6278), 2, + anon_sym_COMMA, + anon_sym_GT, + [152117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6150), 1, - anon_sym_catch, - ACTIONS(6153), 1, + ACTIONS(6033), 1, anon_sym_finally, - STATE(4072), 2, + 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, - [150427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym_member_declarations, - STATE(5431), 1, - sym_where_clause, - [150443] = 5, + [152136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1017), 1, - sym_member_declarations, - STATE(5612), 1, - sym_where_clause, - [150459] = 5, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 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(3), 1, sym_comment, - ACTIONS(5666), 1, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5617), 1, anon_sym_LBRACK, - ACTIONS(6155), 1, - anon_sym_COLON, - ACTIONS(6157), 1, - anon_sym_EQ_EQ_GT, - STATE(5538), 1, - sym_capability_list, - [150475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6159), 1, - anon_sym_RBRACE, - STATE(4099), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [150489] = 5, + STATE(1814), 1, + sym_arguments, + STATE(5012), 1, + sym_type_arguments, + [152174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1143), 1, - sym_member_declarations, - STATE(5600), 1, - sym_where_clause, - [150505] = 5, + STATE(1949), 1, + sym_compound_statement, + ACTIONS(6177), 3, + sym_variable, + anon_sym_LPAREN, + anon_sym_function, + [152189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6161), 1, + STATE(4160), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, anon_sym_as, - ACTIONS(6163), 1, - anon_sym_EQ, - STATE(5548), 1, - sym_type_parameters, - [150521] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1144), 1, - sym_member_declarations, - STATE(5598), 1, - sym_where_clause, - [150537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6165), 1, - anon_sym_COLON, - ACTIONS(6167), 1, - anon_sym_EQ_EQ_GT, - STATE(5553), 1, - sym_capability_list, - [150553] = 5, + anon_sym_super, + ACTIONS(6280), 2, + anon_sym_COMMA, + anon_sym_GT, + [152204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6169), 1, + STATE(4163), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, anon_sym_as, - ACTIONS(6171), 1, - anon_sym_EQ, - STATE(5459), 1, - sym_type_parameters, - [150569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1099), 1, - sym_member_declarations, - STATE(5629), 1, - sym_where_clause, - [150585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - STATE(5506), 1, - sym_arguments, - ACTIONS(6173), 2, + anon_sym_super, + ACTIONS(6282), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [150599] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_COLON, - ACTIONS(6177), 1, - anon_sym_EQ_EQ_GT, - STATE(5587), 1, - sym_capability_list, - [150615] = 5, + anon_sym_GT, + [152219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6179), 1, + STATE(4039), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, anon_sym_as, - ACTIONS(6181), 1, - anon_sym_EQ, - STATE(5589), 1, - sym_type_parameters, - [150631] = 3, + anon_sym_super, + ACTIONS(6284), 2, + anon_sym_COMMA, + anon_sym_GT, + [152234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, - anon_sym_as, - ACTIONS(6183), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [150643] = 5, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_namespace, + ACTIONS(6286), 1, + sym_identifier, + STATE(1777), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4125), 1, + sym_qualified_identifier, + [152253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6187), 1, - anon_sym_COLON, - ACTIONS(6189), 1, - anon_sym_EQ_EQ_GT, - STATE(5596), 1, - sym_capability_list, - [150659] = 5, + ACTIONS(6263), 1, + anon_sym_catch, + ACTIONS(6265), 1, + anon_sym_finally, + STATE(708), 1, + sym_catch_clause, + STATE(735), 1, + sym_finally_clause, + STATE(4144), 1, + aux_sym_try_statement_repeat1, + [152272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - STATE(1877), 1, - sym_compound_statement, - STATE(5524), 1, - sym__anonymous_function_use_clause, - [150675] = 4, + STATE(4146), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6288), 2, + anon_sym_COMMA, + anon_sym_GT, + [152287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6067), 1, anon_sym_COMMA, - STATE(4127), 1, + STATE(4051), 1, aux_sym_tuple_type_specifier_repeat1, - ACTIONS(6191), 2, - anon_sym_LBRACE, - anon_sym_where, - [150689] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5296), 3, anon_sym_LBRACE, - STATE(1659), 1, - sym_member_declarations, - STATE(5460), 1, - sym_where_clause, - [150705] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, anon_sym_where, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_member_declarations, - STATE(5407), 1, - sym_where_clause, - [150721] = 5, + anon_sym_implements, + [152302] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1657), 1, - sym_member_declarations, - STATE(5458), 1, - sym_where_clause, - [150737] = 5, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6290), 1, + anon_sym_class, + ACTIONS(6292), 1, + sym_final_modifier, + ACTIONS(6294), 1, + sym_xhp_modifier, + STATE(5392), 1, + sym_abstract_modifier, + [152321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1656), 1, - sym_member_declarations, - STATE(5453), 1, - sym_where_clause, - [150753] = 5, + STATE(4146), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6041), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6296), 2, + anon_sym_COMMA, + anon_sym_GT, + [152336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6193), 1, - anon_sym_as, - ACTIONS(6195), 1, - anon_sym_EQ, - STATE(5621), 1, - sym_type_parameters, - [150769] = 5, + ACTIONS(6298), 1, + anon_sym_enum, + ACTIONS(5149), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [152349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6197), 1, - anon_sym_COLON, - ACTIONS(6199), 1, - anon_sym_EQ_EQ_GT, - STATE(5607), 1, - sym_capability_list, - [150785] = 5, + ACTIONS(3392), 1, + anon_sym_LPAREN, + ACTIONS(6300), 1, + anon_sym_COMMA, + ACTIONS(6302), 1, + anon_sym_GT_GT, + STATE(5254), 1, + aux_sym_module_attribute_repeat1, + STATE(5262), 1, + sym_arguments, + [152368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_member_declarations, - STATE(5516), 1, + STATE(5696), 1, sym_where_clause, - [150801] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6201), 1, - anon_sym_as, - ACTIONS(6203), 1, - anon_sym_EQ, - STATE(5503), 1, - sym_type_parameters, - [150817] = 5, + ACTIONS(6304), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [152382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(1134), 1, sym_member_declarations, - STATE(5443), 1, + STATE(5447), 1, sym_where_clause, - [150833] = 4, + [152398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6205), 1, + ACTIONS(6308), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [150847] = 5, + [152412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1127), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(731), 1, sym_member_declarations, - STATE(5500), 1, + STATE(5657), 1, sym_where_clause, - [150863] = 5, + [152428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1628), 1, - sym_member_declarations, - STATE(5437), 1, - sym_where_clause, - [150879] = 5, + 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(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(1276), 1, sym_member_declarations, - STATE(5442), 1, + STATE(5476), 1, sym_where_clause, - [150895] = 5, + [152460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(1479), 1, sym_member_declarations, - STATE(5435), 1, + STATE(5329), 1, sym_where_clause, - [150911] = 5, + [152476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_RBRACE, + STATE(4255), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [152490] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1078), 1, + STATE(980), 1, sym_member_declarations, - STATE(5398), 1, + STATE(5497), 1, sym_where_clause, - [150927] = 5, + [152506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1179), 1, + STATE(1278), 1, sym_member_declarations, - STATE(5319), 1, + STATE(5482), 1, sym_where_clause, - [150943] = 5, + [152536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1131), 1, + STATE(1471), 1, sym_member_declarations, - STATE(5537), 1, + STATE(5707), 1, sym_where_clause, - [150959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6209), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - ACTIONS(6207), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [150973] = 5, + [152552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1076), 1, + STATE(1438), 1, sym_member_declarations, - STATE(5348), 1, + STATE(5490), 1, sym_where_clause, - [150989] = 5, + [152568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1279), 1, sym_member_declarations, - STATE(5436), 1, + STATE(5484), 1, sym_where_clause, - [151005] = 5, + [152584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(6212), 1, + ACTIONS(6318), 1, anon_sym_as, - ACTIONS(6214), 1, + ACTIONS(6320), 1, anon_sym_EQ, - STATE(5497), 1, + STATE(5669), 1, sym_type_parameters, - [151021] = 5, + [152600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, + [152630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1074), 1, + STATE(1455), 1, sym_member_declarations, - STATE(5345), 1, + STATE(5483), 1, sym_where_clause, - [151037] = 5, + [152646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6216), 1, - anon_sym_as, - ACTIONS(6218), 1, - anon_sym_EQ, - STATE(5466), 1, - sym_type_parameters, - [151053] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [152660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6220), 1, + ACTIONS(6330), 1, anon_sym_RBRACE, - STATE(4139), 2, + STATE(4188), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151067] = 5, + [152674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1132), 1, + STATE(1702), 1, sym_member_declarations, - STATE(5547), 1, + STATE(5346), 1, sym_where_clause, - [151083] = 4, + [152690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - ACTIONS(3763), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [151097] = 3, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1384), 1, + sym_member_declarations, + STATE(5496), 1, + sym_where_clause, + [152706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, - anon_sym_as, - ACTIONS(6140), 3, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6332), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [151109] = 4, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [152720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, - anon_sym_as, - ACTIONS(6225), 1, - anon_sym_LBRACE, - ACTIONS(6140), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [151123] = 4, + 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(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(5140), 1, + STATE(5715), 1, sym_where_clause, - ACTIONS(6227), 2, + ACTIONS(6336), 2, anon_sym_LBRACE, anon_sym_SEMI, - [151137] = 4, + [152748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6229), 1, - anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - ACTIONS(3661), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - [151151] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1263), 1, + sym_member_declarations, + STATE(5414), 1, + sym_where_clause, + [152764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6232), 4, + ACTIONS(6067), 1, + anon_sym_COMMA, + STATE(4399), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(6338), 2, anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [151161] = 5, + anon_sym_where, + [152778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1135), 1, + STATE(1200), 1, sym_member_declarations, - STATE(5571), 1, + STATE(5682), 1, sym_where_clause, - [151177] = 5, + [152794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 1, - sym_identifier, - ACTIONS(6236), 1, - anon_sym_PLUS, - ACTIONS(6238), 1, - anon_sym_DASH, - ACTIONS(6240), 1, - anon_sym_reify, - [151193] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1262), 1, + sym_member_declarations, + STATE(5458), 1, + sym_where_clause, + [152810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - anon_sym_COMMA, - ACTIONS(6242), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, anon_sym_LBRACE, - ACTIONS(6244), 1, - anon_sym_SEMI, - STATE(4158), 1, - aux_sym_tuple_type_specifier_repeat1, - [151209] = 4, + STATE(1463), 1, + sym_member_declarations, + STATE(5440), 1, + sym_where_clause, + [152826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, - anon_sym_EQ, - ACTIONS(6246), 1, - sym_identifier, - ACTIONS(5170), 2, - anon_sym_SEMI, + ACTIONS(6342), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, + anon_sym_as, + ACTIONS(6340), 2, anon_sym_COMMA, - [151223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5172), 1, - anon_sym_EQ, - ACTIONS(6248), 1, - anon_sym_LPAREN, - ACTIONS(5170), 2, anon_sym_SEMI, - anon_sym_COMMA, - [151237] = 5, + [152840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_as, - ACTIONS(6252), 1, - anon_sym_EQ, - STATE(5433), 1, - sym_type_parameters, - [151253] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6346), 1, + anon_sym_COLON, + ACTIONS(6348), 1, + anon_sym_EQ_EQ_GT, + STATE(5686), 1, + sym_capability_list, + [152856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(6254), 2, - anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - [151267] = 5, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_member_declarations, + STATE(5456), 1, + sym_where_clause, + [152872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5492), 1, - anon_sym_LT, - STATE(3725), 1, - sym_parameters, - STATE(5604), 1, - sym_type_parameters, - [151283] = 4, + 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(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6256), 1, + ACTIONS(6350), 1, anon_sym_RBRACE, - STATE(4067), 2, + STATE(4184), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151297] = 5, + [152902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1403), 1, + STATE(1341), 1, sym_member_declarations, - STATE(5282), 1, + STATE(5487), 1, sym_where_clause, - [151313] = 4, + [152918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6258), 1, + ACTIONS(6352), 1, anon_sym_RBRACE, - STATE(4166), 2, + STATE(4229), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151327] = 5, + [152932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(6356), 1, anon_sym_LBRACE, - STATE(1411), 1, - sym_member_declarations, - STATE(5268), 1, - sym_where_clause, - [151343] = 5, + ACTIONS(6358), 1, + anon_sym_as, + ACTIONS(6354), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1412), 1, - sym_member_declarations, - STATE(5266), 1, - sym_where_clause, - [151359] = 5, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(6358), 1, + anon_sym_as, + ACTIONS(6362), 1, anon_sym_LBRACE, - STATE(1414), 1, - sym_member_declarations, - STATE(5259), 1, - sym_where_clause, - [151375] = 5, + ACTIONS(6354), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1246), 1, + STATE(1440), 1, sym_member_declarations, - STATE(5338), 1, + STATE(5491), 1, sym_where_clause, - [151391] = 5, + [152990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - STATE(1900), 1, - sym_compound_statement, - STATE(5352), 1, - sym__anonymous_function_use_clause, - [151407] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(6260), 1, + ACTIONS(6364), 1, anon_sym_COLON, - ACTIONS(6262), 1, + ACTIONS(6366), 1, anon_sym_EQ_EQ_GT, - STATE(5605), 1, + STATE(5666), 1, sym_capability_list, - [151423] = 5, + [153006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(2081), 1, + anon_sym_while, + ACTIONS(6322), 1, + anon_sym_elseif, + ACTIONS(6368), 1, + anon_sym_else, + STATE(4181), 1, + aux_sym_if_statement_repeat1, + [153022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6370), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [153036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1249), 1, + STATE(1520), 1, sym_member_declarations, - STATE(5337), 1, + STATE(5324), 1, sym_where_clause, - [151439] = 4, + [153052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6264), 1, + ACTIONS(6372), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4316), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151453] = 2, + [153066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6266), 4, + ACTIONS(6374), 4, anon_sym_COMMA, anon_sym_as, anon_sym_GT, anon_sym_super, - [151463] = 4, + [153076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6268), 1, + ACTIONS(6376), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151477] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_EQ, - STATE(5424), 1, - sym_type_parameters, - [151493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6274), 1, - anon_sym_as, - ACTIONS(6276), 1, - anon_sym_EQ, - STATE(5614), 1, - sym_type_parameters, - [151509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_member_declarations, - STATE(5273), 1, - sym_where_clause, - [151525] = 5, + [153090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(1202), 1, sym_member_declarations, - STATE(5552), 1, + STATE(5688), 1, sym_where_clause, - [151541] = 5, + [153106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1415), 1, - sym_member_declarations, - STATE(5258), 1, - sym_where_clause, - [151557] = 5, + 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(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(6278), 1, + ACTIONS(6383), 1, anon_sym_as, - ACTIONS(6280), 1, + ACTIONS(6385), 1, anon_sym_EQ, - STATE(5405), 1, + STATE(5647), 1, sym_type_parameters, - [151573] = 5, + [153136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1157), 1, - sym_member_declarations, - STATE(5541), 1, - sym_where_clause, - [151589] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(921), 1, + STATE(766), 1, sym_member_declarations, - STATE(5551), 1, + STATE(5673), 1, sym_where_clause, - [151605] = 5, + [153152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1159), 1, - sym_member_declarations, - STATE(5511), 1, - sym_where_clause, - [151621] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1063), 1, + STATE(742), 1, sym_member_declarations, - STATE(5294), 1, + STATE(5552), 1, sym_where_clause, - [151637] = 5, + [153168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1160), 1, - sym_member_declarations, - STATE(5507), 1, - sym_where_clause, - [151653] = 5, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6387), 1, + anon_sym_RBRACE, + STATE(4246), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [153182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1269), 1, sym_member_declarations, - STATE(5526), 1, + STATE(5705), 1, sym_where_clause, - [151669] = 5, + [153198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(924), 1, - sym_member_declarations, - STATE(5520), 1, - sym_where_clause, - [151685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(5216), 1, + STATE(739), 1, + sym_member_declarations, + STATE(5555), 1, sym_where_clause, - ACTIONS(6282), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [151699] = 5, + [153214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1637), 1, + STATE(1271), 1, sym_member_declarations, - STATE(5210), 1, + STATE(5706), 1, sym_where_clause, - [151715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6284), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [151725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5558), 1, - anon_sym_SEMI, - ACTIONS(6076), 1, - anon_sym_COMMA, - ACTIONS(6286), 1, - anon_sym_LBRACE, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [151741] = 5, + [153230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1134), 1, + STATE(1170), 1, sym_member_declarations, - STATE(5562), 1, + STATE(5480), 1, sym_where_clause, - [151757] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6288), 1, - anon_sym_SEMI, - ACTIONS(6290), 1, - anon_sym_as, - ACTIONS(6292), 1, - anon_sym_super, - ACTIONS(6294), 1, - anon_sym_EQ, - [151773] = 5, + [153246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1603), 1, - sym_member_declarations, - STATE(5608), 1, - sym_where_clause, - [151789] = 5, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6389), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [153260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(1243), 1, sym_member_declarations, - STATE(5246), 1, + STATE(5446), 1, sym_where_clause, - [151805] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5172), 1, - anon_sym_EQ, - ACTIONS(6296), 1, - sym_identifier, - ACTIONS(5170), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [151819] = 4, + [153276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6298), 1, + ACTIONS(6391), 1, anon_sym_RBRACE, - STATE(4176), 2, + STATE(4435), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151833] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5492), 1, - anon_sym_LT, - ACTIONS(6300), 1, - anon_sym_as, - ACTIONS(6302), 1, - anon_sym_EQ, - STATE(5382), 1, - sym_type_parameters, - [151849] = 4, + [153290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6304), 1, + ACTIONS(6393), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4264), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151863] = 5, + [153304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(1242), 1, sym_member_declarations, - STATE(5563), 1, + STATE(5445), 1, sym_where_clause, - [151879] = 5, + [153320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1674), 1, - sym_member_declarations, - STATE(5159), 1, - sym_where_clause, - [151895] = 5, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6395), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [153334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_member_declarations, - STATE(5158), 1, + STATE(5577), 1, sym_where_clause, - [151911] = 5, + ACTIONS(6397), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [153348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1282), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(734), 1, sym_member_declarations, - STATE(5233), 1, + STATE(5565), 1, sym_where_clause, - [151927] = 5, + [153364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(1444), 1, sym_member_declarations, - STATE(5155), 1, + STATE(5492), 1, sym_where_clause, - [151943] = 4, + [153380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6399), 1, anon_sym_RBRACE, - STATE(4190), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [151957] = 5, + [153394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1239), 1, sym_member_declarations, - STATE(5287), 1, - sym_where_clause, - [151973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - STATE(5166), 1, + STATE(5443), 1, sym_where_clause, - ACTIONS(6308), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [151987] = 5, + [153410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - STATE(1933), 1, - sym_compound_statement, - STATE(5167), 1, - sym__anonymous_function_use_clause, - [152003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6310), 1, + ACTIONS(6401), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152017] = 5, + [153424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(1164), 1, sym_member_declarations, - STATE(5627), 1, + STATE(5472), 1, sym_where_clause, - [152033] = 5, + [153440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(1446), 1, sym_member_declarations, - STATE(5512), 1, + STATE(5495), 1, sym_where_clause, - [152049] = 2, + [153456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6312), 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5588), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [152059] = 4, + STATE(1286), 1, + sym_member_declarations, + STATE(5709), 1, + sym_where_clause, + [153472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(5184), 1, - sym_where_clause, - ACTIONS(6314), 2, + ACTIONS(5586), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [152073] = 5, + STATE(1509), 1, + sym_member_declarations, + STATE(5630), 1, + sym_where_clause, + [153488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1344), 1, sym_member_declarations, - STATE(5173), 1, + STATE(5506), 1, sym_where_clause, - [152089] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - ACTIONS(2750), 1, - anon_sym_COLON_COLON, - ACTIONS(6316), 1, - anon_sym_as, - STATE(1731), 1, - aux_sym_qualified_identifier_repeat1, - [152105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6318), 1, - anon_sym_COMMA, - STATE(4183), 1, - aux_sym_xhp_children_declaration_repeat1, - ACTIONS(5699), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [152119] = 5, + [153504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 1, - anon_sym_SEMI, - ACTIONS(6323), 1, - anon_sym_as, - ACTIONS(6325), 1, - anon_sym_super, - ACTIONS(6327), 1, - anon_sym_EQ, - [152135] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1436), 1, + sym_member_declarations, + STATE(5701), 1, + sym_where_clause, + [153520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(1160), 1, sym_member_declarations, - STATE(5510), 1, + STATE(5468), 1, sym_where_clause, - [152151] = 4, + [153536] = 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(6329), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6332), 1, + ACTIONS(6405), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152165] = 4, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6334), 1, + ACTIONS(6411), 1, anon_sym_RBRACE, - STATE(4204), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152179] = 5, + [153594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1399), 1, + STATE(921), 1, sym_member_declarations, - STATE(5237), 1, + STATE(5509), 1, sym_where_clause, - [152195] = 5, + [153610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6413), 1, + anon_sym_RBRACE, + STATE(4209), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [153624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1401), 1, + STATE(1347), 1, sym_member_declarations, - STATE(5239), 1, + STATE(5513), 1, sym_where_clause, - [152211] = 4, + [153640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6336), 1, + ACTIONS(6415), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4213), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152225] = 4, + [153654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, + ACTIONS(6358), 1, anon_sym_as, - ACTIONS(6338), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, + ACTIONS(6354), 2, anon_sym_COMMA, - [152239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6142), 1, - anon_sym_as, - ACTIONS(6340), 1, - anon_sym_LBRACE, - ACTIONS(6140), 2, anon_sym_SEMI, - anon_sym_COMMA, - [152253] = 4, + [153668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, - anon_sym_as, - ACTIONS(6342), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(6140), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [152267] = 5, + STATE(1224), 1, + sym_member_declarations, + STATE(5442), 1, + sym_where_clause, + [153684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1410), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(771), 1, sym_member_declarations, - STATE(5254), 1, + STATE(5679), 1, sym_where_clause, - [152283] = 4, + [153700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6344), 1, + ACTIONS(6419), 1, anon_sym_RBRACE, - STATE(4223), 2, + STATE(4266), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - STATE(5350), 1, - sym_where_clause, - ACTIONS(6346), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [152311] = 4, + [153714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6348), 1, + ACTIONS(6421), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152325] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - STATE(5289), 1, - sym_variadic_modifier, - ACTIONS(6350), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152339] = 4, + [153728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(6354), 1, - anon_sym_EQ, - ACTIONS(6352), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152353] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6423), 1, + anon_sym_RBRACE, + STATE(4244), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [153742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(5290), 1, - sym_where_clause, - ACTIONS(6356), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [152367] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6185), 1, - anon_sym_as, - ACTIONS(6358), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [152381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 2, - anon_sym_BSLASH, - anon_sym_RBRACE, - ACTIONS(6360), 2, - sym_identifier, - anon_sym_namespace, - [152393] = 4, + STATE(1348), 1, + sym_member_declarations, + STATE(5514), 1, + sym_where_clause, + [153758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, - anon_sym_as, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6140), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [152407] = 4, + 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(6134), 1, - sym_identifier, - ACTIONS(6364), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152421] = 5, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1483), 1, + STATE(1215), 1, sym_member_declarations, - STATE(5328), 1, + STATE(5441), 1, sym_where_clause, - [152437] = 4, + [153806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6366), 1, + ACTIONS(6433), 1, anon_sym_RBRACE, - STATE(4216), 2, + STATE(4233), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152451] = 5, + [153820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1493), 1, - sym_member_declarations, - STATE(5330), 1, - sym_where_clause, - [152467] = 4, + 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(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - STATE(5331), 1, - sym_where_clause, - ACTIONS(6368), 2, + ACTIONS(6358), 1, + anon_sym_as, + ACTIONS(6439), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [152481] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - STATE(5399), 1, - sym_variadic_modifier, - ACTIONS(6370), 2, + ACTIONS(6354), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [152495] = 4, + anon_sym_SEMI, + [153850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6372), 1, + ACTIONS(6441), 1, anon_sym_RBRACE, - STATE(4197), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152509] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - anon_sym_else, - STATE(4213), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2019), 2, - anon_sym_elseif, - anon_sym_while, - [152523] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6374), 1, - anon_sym_COLON, - ACTIONS(6376), 1, - anon_sym_EQ_EQ_GT, - STATE(5430), 1, - sym_capability_list, - [152539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2033), 1, - anon_sym_while, - ACTIONS(6378), 1, - anon_sym_elseif, - ACTIONS(6380), 1, - anon_sym_else, - STATE(4229), 1, - aux_sym_if_statement_repeat1, - [152555] = 5, + [153864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1033), 1, + STATE(1349), 1, sym_member_declarations, - STATE(5202), 1, + STATE(5515), 1, sym_where_clause, - [152571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2041), 1, - anon_sym_while, - ACTIONS(6378), 1, - anon_sym_elseif, - ACTIONS(6382), 1, - anon_sym_else, - STATE(4213), 1, - aux_sym_if_statement_repeat1, - [152587] = 4, + [153880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6384), 1, + ACTIONS(6443), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152601] = 5, + [153894] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(1493), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_use, + STATE(2772), 1, + sym_compound_statement, + STATE(5523), 1, + sym__anonymous_function_use_clause, + [153910] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(1350), 1, sym_member_declarations, - STATE(5482), 1, + STATE(5518), 1, sym_where_clause, - [152617] = 4, + [153926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - STATE(5404), 1, + STATE(792), 1, + sym_member_declarations, + STATE(5623), 1, sym_where_clause, - ACTIONS(6386), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [152631] = 4, + [153942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, - anon_sym_as, - ACTIONS(6388), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [152645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(943), 1, + STATE(738), 1, sym_member_declarations, - STATE(5376), 1, + STATE(5626), 1, sym_where_clause, - [152661] = 5, + [153958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1032), 1, + STATE(1198), 1, sym_member_declarations, - STATE(5143), 1, - sym_where_clause, - [152677] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6390), 1, - anon_sym_COLON, - ACTIONS(6392), 1, - anon_sym_EQ_EQ_GT, - STATE(5523), 1, - sym_capability_list, - [152693] = 4, + STATE(5438), 1, + sym_where_clause, + [153974] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 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(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6394), 1, + ACTIONS(6445), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4235), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152707] = 5, + [154004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(6344), 1, + anon_sym_as, + ACTIONS(6447), 1, anon_sym_LBRACE, - STATE(944), 1, - sym_member_declarations, - STATE(5373), 1, - sym_where_clause, - [152723] = 5, + ACTIONS(6340), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [154018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1062), 1, + STATE(1136), 1, sym_member_declarations, - STATE(5391), 1, + STATE(5449), 1, sym_where_clause, - [152739] = 5, + [154034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(1571), 1, sym_member_declarations, - STATE(5362), 1, + STATE(5579), 1, sym_where_clause, - [152755] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2033), 1, - anon_sym_while, - ACTIONS(6378), 1, - anon_sym_elseif, - ACTIONS(6396), 1, - anon_sym_else, - STATE(4229), 1, - aux_sym_if_statement_repeat1, - [152771] = 2, + [154066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [152781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - anon_sym_while, - ACTIONS(6398), 1, - anon_sym_elseif, - ACTIONS(6401), 1, - anon_sym_else, - STATE(4229), 1, - aux_sym_if_statement_repeat1, - [152797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2041), 1, - anon_sym_while, - ACTIONS(6378), 1, - anon_sym_elseif, - ACTIONS(6404), 1, - anon_sym_else, - STATE(4227), 1, - aux_sym_if_statement_repeat1, - [152813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - anon_sym_else, - STATE(4227), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2019), 2, - anon_sym_elseif, - anon_sym_while, - [152827] = 5, + STATE(1135), 1, + sym_member_declarations, + STATE(5448), 1, + sym_where_clause, + [154082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1028), 1, + STATE(1607), 1, sym_member_declarations, - STATE(5147), 1, + STATE(5313), 1, sym_where_clause, - [152843] = 5, + [154098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(792), 1, + STATE(1176), 1, sym_member_declarations, - STATE(5508), 1, + STATE(5609), 1, sym_where_clause, - [152859] = 4, + [154114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, + ACTIONS(6358), 1, anon_sym_as, - ACTIONS(6406), 1, + ACTIONS(6449), 1, anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, + ACTIONS(6354), 2, anon_sym_COMMA, - [152873] = 4, + anon_sym_SEMI, + [154128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6408), 1, + ACTIONS(6451), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152887] = 5, + [154142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(1616), 1, sym_member_declarations, - STATE(5517), 1, + STATE(5360), 1, sym_where_clause, - [152903] = 5, + [154158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1477), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(741), 1, sym_member_declarations, - STATE(5490), 1, + STATE(5628), 1, sym_where_clause, - [152919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6410), 1, - anon_sym_RBRACE, - STATE(4235), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152933] = 5, + [154174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(821), 1, + STATE(1617), 1, sym_member_declarations, - STATE(5434), 1, + STATE(5361), 1, sym_where_clause, - [152949] = 5, + [154190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(4861), 1, - sym_member_declarations, - STATE(5591), 1, - sym_where_clause, - [152965] = 4, + 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(6134), 1, - sym_identifier, - ACTIONS(6412), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152979] = 4, + ACTIONS(5566), 1, + anon_sym_where, + STATE(5698), 1, + sym_where_clause, + ACTIONS(6453), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [154220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6414), 1, + ACTIONS(6358), 1, + anon_sym_as, + ACTIONS(6354), 3, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152993] = 5, + anon_sym_SEMI, + [154232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4860), 1, + STATE(1185), 1, sym_member_declarations, - STATE(5588), 1, + STATE(5634), 1, sym_where_clause, - [153009] = 5, + [154248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1012), 1, + STATE(1119), 1, sym_member_declarations, - STATE(5149), 1, + STATE(5434), 1, sym_where_clause, - [153025] = 5, + [154264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(836), 1, + STATE(1115), 1, sym_member_declarations, - STATE(5531), 1, + STATE(5433), 1, sym_where_clause, - [153041] = 4, + [154280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6416), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153055] = 5, + ACTIONS(6455), 1, + anon_sym_SEMI, + ACTIONS(6457), 1, + anon_sym_as, + ACTIONS(6459), 1, + anon_sym_super, + ACTIONS(6461), 1, + anon_sym_EQ, + [154296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(4857), 1, + STATE(1599), 1, sym_member_declarations, - STATE(5584), 1, + STATE(5710), 1, sym_where_clause, - [153071] = 5, + [154312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(713), 1, + STATE(1584), 1, sym_member_declarations, - STATE(5543), 1, + STATE(5582), 1, sym_where_clause, - [153087] = 5, + [154328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(1113), 1, sym_member_declarations, - STATE(5525), 1, + STATE(5429), 1, sym_where_clause, - [153103] = 5, + [154344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(847), 1, + STATE(1183), 1, sym_member_declarations, - STATE(5544), 1, + STATE(5625), 1, sym_where_clause, - [153119] = 4, + [154360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6418), 1, - anon_sym_RBRACE, - STATE(4242), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153133] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_member_declarations, + STATE(5343), 1, + sym_where_clause, + [154376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6420), 1, + ACTIONS(6463), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + ACTIONS(6466), 2, anon_sym_RBRACE, - STATE(4246), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153147] = 5, + anon_sym_SEMI, + [154390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(866), 1, + STATE(1112), 1, sym_member_declarations, - STATE(5558), 1, + STATE(5427), 1, sym_where_clause, - [153163] = 5, + [154422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(6344), 1, + anon_sym_as, + ACTIONS(6340), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [154434] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1624), 1, + sym_member_declarations, + STATE(5432), 1, + sym_where_clause, + [154450] = 5, + 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(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(868), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(750), 1, sym_member_declarations, - STATE(5560), 1, + STATE(5639), 1, sym_where_clause, - [153179] = 4, + [154482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6422), 1, + ACTIONS(6476), 1, anon_sym_RBRACE, - STATE(4241), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153193] = 5, + [154496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(870), 1, - sym_member_declarations, - STATE(5519), 1, - sym_where_clause, - [153209] = 4, + ACTIONS(6478), 1, + anon_sym_SEMI, + ACTIONS(6480), 1, + anon_sym_as, + ACTIONS(6482), 1, + anon_sym_super, + ACTIONS(6484), 1, + anon_sym_EQ, + [154512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6424), 1, + ACTIONS(6486), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153223] = 5, + [154526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6488), 1, + anon_sym_RBRACE, + STATE(4282), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(880), 1, + STATE(1178), 1, sym_member_declarations, - STATE(5567), 1, + STATE(5610), 1, sym_where_clause, - [153239] = 5, + [154556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1505), 1, + STATE(1110), 1, sym_member_declarations, - STATE(5546), 1, + STATE(5419), 1, sym_where_clause, - [153255] = 5, + [154588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(881), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(796), 1, sym_member_declarations, - STATE(5570), 1, + STATE(5652), 1, sym_where_clause, - [153271] = 5, + [154604] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(884), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(801), 1, sym_member_declarations, - STATE(5576), 1, + STATE(5656), 1, sym_where_clause, - [153287] = 5, + [154620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(887), 1, + STATE(1207), 1, sym_member_declarations, - STATE(5580), 1, + STATE(5690), 1, sym_where_clause, - [153303] = 4, + [154636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6426), 1, - anon_sym_RBRACE, - STATE(4257), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153317] = 4, + ACTIONS(6344), 1, + anon_sym_as, + ACTIONS(6494), 1, + anon_sym_LBRACE, + ACTIONS(6340), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [154650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6428), 1, + ACTIONS(6496), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153331] = 5, + [154664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(6358), 1, + anon_sym_as, + ACTIONS(6502), 1, + anon_sym_LBRACE, + ACTIONS(6354), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [154694] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(769), 1, + STATE(1481), 1, sym_member_declarations, - STATE(5582), 1, + STATE(5348), 1, sym_where_clause, - [153347] = 5, + [154710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(754), 1, + STATE(1650), 1, sym_member_declarations, - STATE(5592), 1, + STATE(5436), 1, sym_where_clause, - [153363] = 5, + [154726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(3059), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [154736] = 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(753), 1, + STATE(1173), 1, sym_member_declarations, - STATE(5611), 1, + STATE(5607), 1, sym_where_clause, - [153379] = 5, + [154766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(751), 1, + STATE(1068), 1, sym_member_declarations, - STATE(5620), 1, + STATE(5410), 1, sym_where_clause, - [153395] = 5, + [154782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(1375), 1, sym_member_declarations, - STATE(5141), 1, + STATE(5548), 1, sym_where_clause, - [153411] = 5, + [154798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(749), 1, + STATE(1585), 1, sym_member_declarations, - STATE(5615), 1, + STATE(5587), 1, sym_where_clause, - [153427] = 5, + [154814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(4834), 1, + STATE(1626), 1, sym_member_declarations, - STATE(5448), 1, + STATE(5314), 1, sym_where_clause, - [153443] = 5, + [154830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + STATE(5681), 1, + sym_where_clause, + ACTIONS(6506), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [154844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(748), 1, + STATE(1067), 1, sym_member_declarations, - STATE(5616), 1, + STATE(5409), 1, sym_where_clause, - [153459] = 5, + [154860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4828), 1, + STATE(4744), 1, sym_member_declarations, - STATE(5429), 1, + STATE(5370), 1, sym_where_clause, - [153475] = 5, + [154876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(1376), 1, sym_member_declarations, - STATE(5590), 1, + STATE(5553), 1, sym_where_clause, - [153491] = 5, + [154892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + STATE(5745), 1, + sym_where_clause, + ACTIONS(6508), 2, anon_sym_LBRACE, - STATE(734), 1, + anon_sym_SEMI, + [154906] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4743), 1, sym_member_declarations, - STATE(5585), 1, + STATE(5369), 1, sym_where_clause, - [153507] = 5, + [154922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + sym_identifier, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [154936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(4826), 1, + STATE(1710), 1, sym_member_declarations, - STATE(5426), 1, + STATE(5353), 1, sym_where_clause, - [153523] = 5, + [154952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1518), 1, + STATE(1573), 1, sym_member_declarations, - STATE(5556), 1, + STATE(5591), 1, sym_where_clause, - [153539] = 5, + [154968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5510), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(4740), 1, sym_member_declarations, - STATE(5583), 1, + STATE(5368), 1, sym_where_clause, - [153555] = 5, + [154984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(5492), 1, - anon_sym_LT, - STATE(3719), 1, - sym_parameters, - STATE(5347), 1, - sym_type_parameters, - [153571] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1485), 1, + sym_member_declarations, + STATE(5349), 1, + sym_where_clause, + [155000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4824), 1, + STATE(1275), 1, sym_member_declarations, - STATE(5420), 1, + STATE(5475), 1, sym_where_clause, - [153587] = 4, + [155016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6430), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153601] = 5, + 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(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1065), 1, sym_member_declarations, - STATE(5594), 1, + STATE(5404), 1, sym_where_clause, - [153617] = 4, + [155048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, - anon_sym_as, - ACTIONS(6432), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [153631] = 5, + STATE(1377), 1, + sym_member_declarations, + STATE(5561), 1, + sym_where_clause, + [155064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4817), 1, + STATE(1318), 1, sym_member_declarations, - STATE(5369), 1, + STATE(5725), 1, sym_where_clause, - [153647] = 4, + [155080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, - anon_sym_as, - ACTIONS(6434), 1, - anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, + 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(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + STATE(5674), 1, + sym_variadic_modifier, + ACTIONS(6516), 2, anon_sym_COMMA, - [153661] = 5, + anon_sym_RPAREN, + [155110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1318), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1064), 1, sym_member_declarations, - STATE(5514), 1, + STATE(5401), 1, sym_where_clause, - [153677] = 5, + [155126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4816), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(851), 1, sym_member_declarations, - STATE(5368), 1, + STATE(5694), 1, sym_where_clause, - [153693] = 4, + [155142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6436), 1, + ACTIONS(6518), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4413), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153707] = 5, + [155156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1366), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1062), 1, sym_member_declarations, - STATE(5509), 1, + STATE(5399), 1, sym_where_clause, - [153723] = 5, + [155172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1714), 1, sym_member_declarations, - STATE(5618), 1, + STATE(5354), 1, sym_where_clause, - [153739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6438), 1, - anon_sym_RBRACE, - STATE(4288), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153753] = 5, + [155188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1394), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1061), 1, sym_member_declarations, - STATE(5502), 1, + STATE(5398), 1, sym_where_clause, - [153769] = 4, + [155204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6520), 1, sym_identifier, - ACTIONS(6440), 1, + ACTIONS(6523), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153783] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_where, - STATE(1383), 1, - sym_member_declarations, - STATE(5501), 1, - sym_where_clause, - [153799] = 4, + [155218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6442), 1, + ACTIONS(6525), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4461), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153813] = 5, + [155232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1380), 1, + STATE(848), 1, sym_member_declarations, - STATE(5496), 1, + STATE(5713), 1, sym_where_clause, - [153829] = 5, + [155248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_where, - STATE(1379), 1, - sym_member_declarations, - STATE(5488), 1, - sym_where_clause, - [153845] = 4, + ACTIONS(5760), 1, + anon_sym_use, + STATE(1962), 1, + sym_compound_statement, + STATE(5718), 1, + sym__anonymous_function_use_clause, + [155264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6444), 1, + ACTIONS(6527), 1, anon_sym_RBRACE, - STATE(4293), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153859] = 4, + [155278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, - anon_sym_as, - ACTIONS(6446), 1, + ACTIONS(6529), 4, anon_sym_LBRACE, - ACTIONS(6140), 2, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [155288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5609), 1, anon_sym_SEMI, + ACTIONS(6067), 1, anon_sym_COMMA, - [153873] = 4, + ACTIONS(6531), 1, + anon_sym_LBRACE, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [155304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6448), 1, - anon_sym_RBRACE, - STATE(4264), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153887] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1519), 1, + sym_member_declarations, + STATE(5629), 1, + sym_where_clause, + [155320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 1, - anon_sym_BSLASH, - STATE(3723), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(6450), 2, - sym_identifier, - anon_sym_namespace, - [153901] = 4, + ACTIONS(6344), 1, + anon_sym_as, + ACTIONS(6533), 1, + anon_sym_LBRACE, + ACTIONS(6340), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [155334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6455), 1, - anon_sym_RBRACE, - STATE(4295), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153915] = 5, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + STATE(844), 1, + sym_member_declarations, + STATE(5700), 1, + sym_where_clause, + [155350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1359), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4724), 1, sym_member_declarations, - STATE(5481), 1, + STATE(5345), 1, sym_where_clause, - [153931] = 5, + [155366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + STATE(1658), 1, + sym_member_declarations, + STATE(5428), 1, + sym_where_clause, + [155382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - STATE(1358), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4720), 1, sym_member_declarations, - STATE(5487), 1, + STATE(5341), 1, sym_where_clause, - [153947] = 5, + [155398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(6457), 1, + ACTIONS(6535), 1, anon_sym_COLON, - ACTIONS(6459), 1, + ACTIONS(6537), 1, anon_sym_EQ_EQ_GT, - STATE(5421), 1, + STATE(5617), 1, sym_capability_list, - [153963] = 5, + [155414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_where, - STATE(1357), 1, - sym_member_declarations, - STATE(5479), 1, - sym_where_clause, - [153979] = 5, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - STATE(2573), 1, - sym_compound_statement, - STATE(5630), 1, - sym__anonymous_function_use_clause, - [153995] = 4, + STATE(4716), 1, + sym_member_declarations, + STATE(5273), 1, + sym_where_clause, + [155444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6461), 1, + ACTIONS(6542), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4189), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154009] = 5, + [155458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1703), 1, + sym_member_declarations, + STATE(5426), 1, + sym_where_clause, + [155474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(6463), 1, + ACTIONS(6544), 1, anon_sym_as, - ACTIONS(6465), 1, + ACTIONS(6546), 1, anon_sym_EQ, - STATE(5327), 1, + STATE(5672), 1, sym_type_parameters, - [154025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6185), 1, - anon_sym_as, - ACTIONS(6467), 1, - anon_sym_LBRACE, - ACTIONS(6183), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [154039] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_COLON, - ACTIONS(6471), 1, - anon_sym_EQ_EQ_GT, - STATE(5307), 1, - sym_capability_list, - [154055] = 5, + [155490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4738), 1, + STATE(4715), 1, sym_member_declarations, - STATE(5302), 1, + STATE(5339), 1, sym_where_clause, - [154071] = 4, + [155506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6473), 1, - anon_sym_RBRACE, - STATE(4345), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154085] = 5, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1339), 1, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1034), 1, sym_member_declarations, - STATE(5457), 1, + STATE(5551), 1, sym_where_clause, - [154101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6475), 1, - anon_sym_RBRACE, - STATE(4281), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154115] = 5, + [155538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(4734), 1, + STATE(998), 1, sym_member_declarations, - STATE(5298), 1, + STATE(5383), 1, sym_where_clause, - [154131] = 5, + [155554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1337), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4706), 1, sym_member_declarations, - STATE(5456), 1, + STATE(5380), 1, sym_where_clause, - [154147] = 5, + [155570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1335), 1, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1031), 1, sym_member_declarations, - STATE(5454), 1, + STATE(5550), 1, sym_where_clause, - [154163] = 5, + [155586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_where, - STATE(1334), 1, - sym_member_declarations, - STATE(5452), 1, - sym_where_clause, - [154179] = 5, + ACTIONS(3392), 1, + anon_sym_LPAREN, + STATE(5485), 1, + sym_arguments, + ACTIONS(6550), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [155600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4732), 1, + STATE(4704), 1, sym_member_declarations, - STATE(5281), 1, + STATE(5325), 1, sym_where_clause, - [154195] = 4, + [155616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6477), 1, + ACTIONS(6552), 1, + 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, - STATE(4308), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154209] = 5, + ACTIONS(6555), 2, + sym_identifier, + anon_sym_namespace, + [155642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1332), 1, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(996), 1, sym_member_declarations, - STATE(5447), 1, + STATE(5382), 1, sym_where_clause, - [154225] = 5, + [155658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4726), 1, + STATE(992), 1, sym_member_declarations, - STATE(5163), 1, + STATE(5598), 1, sym_where_clause, - [154241] = 5, + [155674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6479), 1, - anon_sym_COLON, - ACTIONS(6481), 1, - anon_sym_EQ_EQ_GT, - STATE(5285), 1, - sym_capability_list, - [154257] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4725), 1, + STATE(1029), 1, sym_member_declarations, - STATE(5195), 1, + STATE(5530), 1, sym_where_clause, - [154273] = 5, + [155690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(995), 1, sym_member_declarations, - STATE(5557), 1, + STATE(5439), 1, sym_where_clause, - [154289] = 4, + [155706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, + ACTIONS(6358), 1, anon_sym_as, - ACTIONS(6483), 1, + ACTIONS(6557), 1, anon_sym_LBRACE, - ACTIONS(6140), 2, - anon_sym_SEMI, + ACTIONS(6354), 2, anon_sym_COMMA, - [154303] = 5, + anon_sym_SEMI, + [155720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1267), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4524), 1, sym_member_declarations, - STATE(5418), 1, + STATE(5292), 1, sym_where_clause, - [154319] = 5, + [155736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_member_declarations, - STATE(5498), 1, - sym_where_clause, - [154335] = 5, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6559), 1, + anon_sym_RBRACE, + STATE(4356), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1028), 1, sym_member_declarations, - STATE(5153), 1, + STATE(5525), 1, sym_where_clause, - [154351] = 5, + [155766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1261), 1, + STATE(840), 1, sym_member_declarations, - STATE(5412), 1, + STATE(5726), 1, sym_where_clause, - [154367] = 5, + [155782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1250), 1, + STATE(763), 1, sym_member_declarations, - STATE(5371), 1, + STATE(5734), 1, sym_where_clause, - [154383] = 5, + [155798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1027), 1, sym_member_declarations, - STATE(5581), 1, + STATE(5522), 1, sym_where_clause, - [154399] = 5, + [155814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1248), 1, - sym_member_declarations, - STATE(5367), 1, + STATE(5294), 1, sym_where_clause, - [154415] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, + ACTIONS(6561), 2, anon_sym_LBRACE, - ACTIONS(5494), 1, - anon_sym_where, - STATE(1247), 1, - sym_member_declarations, - STATE(5366), 1, - sym_where_clause, - [154431] = 4, + anon_sym_SEMI, + [155828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6485), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154445] = 5, + 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(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - STATE(1245), 1, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1632), 1, sym_member_declarations, - STATE(5364), 1, + STATE(5508), 1, sym_where_clause, - [154461] = 5, + [155858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1668), 1, + STATE(1724), 1, sym_member_declarations, - STATE(5277), 1, + STATE(5420), 1, sym_where_clause, - [154477] = 5, + [155874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1667), 1, + STATE(1705), 1, sym_member_declarations, - STATE(5269), 1, + STATE(5403), 1, sym_where_clause, - [154493] = 5, + [155890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1666), 1, + STATE(1026), 1, sym_member_declarations, - STATE(5265), 1, + STATE(5519), 1, sym_where_clause, - [154509] = 5, + [155922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(6067), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(6569), 2, anon_sym_LBRACE, - ACTIONS(5494), 1, anon_sym_where, - STATE(1196), 1, - sym_member_declarations, - STATE(5340), 1, - sym_where_clause, - [154525] = 5, + [155936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(6487), 1, + ACTIONS(6571), 1, anon_sym_COLON, - ACTIONS(6489), 1, + ACTIONS(6573), 1, anon_sym_EQ_EQ_GT, - STATE(5250), 1, + STATE(5751), 1, sym_capability_list, - [154541] = 5, + [155952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - ACTIONS(5494), 1, + 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - STATE(1187), 1, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(993), 1, sym_member_declarations, - STATE(5335), 1, + STATE(5466), 1, sym_where_clause, - [154557] = 5, + [155984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6580), 4, anon_sym_LBRACE, - ACTIONS(5494), 1, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [156022] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - STATE(1182), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4610), 1, sym_member_declarations, - STATE(5390), 1, + STATE(5299), 1, sym_where_clause, - [154573] = 4, + [156038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6491), 1, + ACTIONS(6582), 1, anon_sym_RBRACE, - STATE(4186), 2, + STATE(4441), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154587] = 4, + [156052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6493), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154601] = 5, + 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(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5586), 1, anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_use, - STATE(2663), 1, - sym_compound_statement, - STATE(5226), 1, - sym__anonymous_function_use_clause, - [154617] = 5, + STATE(1732), 1, + sym_member_declarations, + STATE(5413), 1, + sym_where_clause, + [156084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4606), 1, + sym_member_declarations, + STATE(5296), 1, + sym_where_clause, + [156100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4704), 1, + STATE(1741), 1, sym_member_declarations, - STATE(5214), 1, + STATE(5378), 1, sym_where_clause, - [154633] = 5, + [156116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5502), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1007), 1, + STATE(1433), 1, sym_member_declarations, - STATE(5152), 1, + STATE(5708), 1, sym_where_clause, - [154649] = 4, + [156132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6495), 1, + ACTIONS(6588), 1, anon_sym_RBRACE, - STATE(4358), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154663] = 5, + [156146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4700), 1, + STATE(4605), 1, sym_member_declarations, - STATE(5215), 1, + STATE(5288), 1, sym_where_clause, - [154679] = 5, + [156162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1635), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(817), 1, sym_member_declarations, - STATE(5205), 1, + STATE(5744), 1, sym_where_clause, - [154695] = 5, + [156178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(6067), 1, + anon_sym_COMMA, + ACTIONS(6590), 1, anon_sym_LBRACE, - STATE(1630), 1, - sym_member_declarations, - STATE(5196), 1, - sym_where_clause, - [154711] = 5, + ACTIONS(6592), 1, + anon_sym_SEMI, + STATE(4358), 1, + aux_sym_tuple_type_specifier_repeat1, + [156194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1567), 1, + STATE(4492), 1, sym_member_declarations, - STATE(5419), 1, + STATE(5281), 1, sym_where_clause, - [154727] = 5, + [156210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4698), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(723), 1, sym_member_declarations, - STATE(5217), 1, + STATE(5737), 1, sym_where_clause, - [154743] = 5, + [156226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4674), 1, + STATE(4600), 1, sym_member_declarations, - STATE(5242), 1, + STATE(5280), 1, sym_where_clause, - [154759] = 5, + [156242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4613), 1, + STATE(997), 1, sym_member_declarations, - STATE(5263), 1, + STATE(5469), 1, sym_where_clause, - [154775] = 4, + [156258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(6594), 1, sym_identifier, - ACTIONS(6497), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154789] = 4, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [156272] = 5, + 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(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6600), 1, sym_identifier, - ACTIONS(6499), 1, - anon_sym_RBRACE, - STATE(4361), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154803] = 5, + ACTIONS(6602), 1, + anon_sym_PLUS, + ACTIONS(6604), 1, + anon_sym_DASH, + ACTIONS(6606), 1, + anon_sym_reify, + [156304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4666), 1, + STATE(4485), 1, sym_member_declarations, - STATE(5243), 1, + STATE(5319), 1, sym_where_clause, - [154819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6501), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154833] = 5, + [156320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1493), 1, anon_sym_LBRACE, - ACTIONS(5672), 1, + ACTIONS(5760), 1, anon_sym_use, - STATE(2612), 1, + STATE(2661), 1, sym_compound_statement, - STATE(5333), 1, + STATE(5374), 1, sym__anonymous_function_use_clause, - [154849] = 5, + [156336] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1568), 1, - sym_member_declarations, - STATE(5480), 1, - sym_where_clause, - [154865] = 4, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6608), 1, + anon_sym_as, + ACTIONS(6610), 1, + anon_sym_EQ, + STATE(5755), 1, + sym_type_parameters, + [156352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, - sym_identifier, - ACTIONS(6503), 1, - anon_sym_RBRACE, - STATE(4186), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154879] = 5, + 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(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1631), 1, + STATE(1521), 1, sym_member_declarations, - STATE(5198), 1, + STATE(5622), 1, sym_where_clause, - [154895] = 5, + [156384] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1571), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(813), 1, sym_member_declarations, - STATE(5346), 1, + STATE(5735), 1, sym_where_clause, - [154911] = 5, + [156400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4632), 1, - sym_member_declarations, - STATE(5261), 1, - sym_where_clause, - [154927] = 5, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6616), 1, + anon_sym_RBRACE, + STATE(4454), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6618), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156428] = 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(3), 1, + sym_comment, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1572), 1, + STATE(4497), 1, sym_member_declarations, - STATE(5341), 1, + STATE(5316), 1, sym_where_clause, - [154943] = 5, + [156460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4659), 1, - sym_member_declarations, - STATE(5253), 1, + STATE(5670), 1, sym_where_clause, - [154959] = 4, + ACTIONS(6624), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [156474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6505), 1, + ACTIONS(6626), 1, anon_sym_RBRACE, - STATE(4336), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154973] = 4, + [156488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6507), 1, + ACTIONS(6628), 1, anon_sym_RBRACE, - STATE(4346), 2, + STATE(4307), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154987] = 5, + [156502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1574), 1, + STATE(1477), 1, sym_member_declarations, - STATE(5336), 1, + STATE(5631), 1, sym_where_clause, - [155003] = 5, + [156518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, - anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6630), 1, + anon_sym_RBRACE, + STATE(4431), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6632), 4, anon_sym_LBRACE, - STATE(1636), 1, - sym_member_declarations, - STATE(5624), 1, - sym_where_clause, - [155019] = 5, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [156542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(4502), 1, sym_member_declarations, - STATE(5295), 1, + STATE(5310), 1, sym_where_clause, - [155035] = 4, + [156558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6306), 1, sym_identifier, - ACTIONS(6509), 1, + ACTIONS(6634), 1, anon_sym_RBRACE, - STATE(4364), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [155049] = 5, + [156572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(4639), 1, + STATE(1721), 1, sym_member_declarations, - STATE(5257), 1, + STATE(5372), 1, sym_where_clause, - [155065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6511), 1, - anon_sym_COLON, - STATE(6095), 1, - sym_capability_list, - [155078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6513), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3765), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155104] = 4, + [156588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6515), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(6517), 1, - sym_identifier, - STATE(3726), 1, - sym_parameters, - [155130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6521), 1, - sym_xhp_class_identifier, - ACTIONS(6519), 2, + ACTIONS(6306), 1, sym_identifier, - sym_xhp_identifier, - [155141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_RPAREN, - ACTIONS(6523), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155154] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, - anon_sym_RPAREN, - ACTIONS(6525), 1, - anon_sym_COMMA, - STATE(4383), 1, - aux_sym_function_type_specifier_repeat1, - [155167] = 4, + ACTIONS(6636), 1, + anon_sym_RBRACE, + STATE(4305), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, anon_sym_LBRACE, - ACTIONS(6527), 1, - anon_sym_SEMI, - STATE(4689), 1, - sym_compound_statement, - [155180] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, - anon_sym_RPAREN, - ACTIONS(6525), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_RPAREN, - ACTIONS(5911), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_RPAREN, - ACTIONS(5911), 1, - anon_sym_COMMA, - STATE(4386), 1, - aux_sym_function_type_specifier_repeat1, - [155219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, - anon_sym_RPAREN, - ACTIONS(5915), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, - anon_sym_RPAREN, - ACTIONS(5915), 1, - anon_sym_COMMA, - STATE(4387), 1, - aux_sym_function_type_specifier_repeat1, - [155245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155258] = 4, + STATE(4564), 1, + sym_member_declarations, + STATE(5327), 1, + sym_where_clause, + [156618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(6529), 1, - anon_sym_SEMI, - STATE(977), 1, - sym_compound_statement, - [155271] = 4, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6638), 1, + anon_sym_as, + ACTIONS(6640), 1, + anon_sym_EQ, + STATE(5556), 1, + sym_type_parameters, + [156634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6531), 1, - anon_sym_SEMI, - ACTIONS(6533), 1, - anon_sym_COMMA, - STATE(4416), 1, - aux_sym_use_statement_repeat1, - [155284] = 4, + ACTIONS(6644), 1, + anon_sym_BSLASH, + STATE(3788), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(6642), 2, + sym_identifier, + anon_sym_namespace, + [156648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, anon_sym_LBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(1595), 1, - sym_compound_statement, - [155297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6537), 1, - anon_sym_SEMI, - ACTIONS(6539), 1, - anon_sym_COMMA, - STATE(4421), 1, - aux_sym_const_declaration_repeat1, - [155310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 1, - anon_sym_RBRACK, - ACTIONS(6541), 1, - anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - [155323] = 4, + STATE(4563), 1, + sym_member_declarations, + STATE(5728), 1, + sym_where_clause, + [156664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(6543), 1, - anon_sym_SEMI, - STATE(957), 1, - sym_compound_statement, - [155336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6545), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155349] = 4, + 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(4828), 1, - anon_sym_RPAREN, - ACTIONS(6547), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155362] = 4, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(6549), 1, - anon_sym_SEMI, - STATE(1580), 1, - sym_compound_statement, - [155375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COMMA, - STATE(4399), 1, - aux_sym_function_type_specifier_repeat1, - [155388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155401] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - anon_sym_RPAREN, - ACTIONS(5933), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - anon_sym_RPAREN, - ACTIONS(5933), 1, - anon_sym_COMMA, - STATE(4402), 1, - aux_sym_function_type_specifier_repeat1, - [155427] = 4, + ACTIONS(5566), 1, + anon_sym_where, + STATE(785), 1, + sym_member_declarations, + STATE(5699), 1, + sym_where_clause, + [156712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, anon_sym_LBRACE, - ACTIONS(6553), 1, - anon_sym_SEMI, - STATE(1550), 1, - sym_compound_statement, - [155440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 1, - anon_sym_RPAREN, - ACTIONS(6555), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [155453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_RPAREN, - ACTIONS(6557), 1, - anon_sym_COMMA, - STATE(4487), 1, - aux_sym_shape_type_specifier_repeat1, - [155466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6559), 1, - anon_sym_COMMA, - ACTIONS(6561), 1, - anon_sym_RPAREN, - STATE(4486), 1, - aux_sym_shape_type_specifier_repeat1, - [155479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 1, - anon_sym_GT, - ACTIONS(6563), 1, - anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [155492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_RPAREN, - ACTIONS(6557), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [155505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1345), 1, - anon_sym_RPAREN, - ACTIONS(6566), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [155531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4872), 1, - anon_sym_RPAREN, - ACTIONS(5935), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4872), 1, - anon_sym_RPAREN, - ACTIONS(5935), 1, - anon_sym_COMMA, - STATE(4403), 1, - aux_sym_function_type_specifier_repeat1, - [155557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5767), 1, - sym_variable, - STATE(6027), 1, - sym_variadic_modifier, - [155570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5460), 1, - anon_sym_SEMI, - ACTIONS(6568), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [155583] = 3, + STATE(4562), 1, + sym_member_declarations, + STATE(5272), 1, + sym_where_clause, + [156728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 1, - anon_sym_BSLASH, - ACTIONS(6450), 2, + ACTIONS(6306), 1, sym_identifier, - anon_sym_namespace, - [155594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 1, - anon_sym_COMMA, - ACTIONS(6574), 1, - anon_sym_RPAREN, - STATE(4485), 1, - aux_sym_tuple_type_specifier_repeat1, - [155607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6576), 1, - anon_sym_SEMI, - ACTIONS(6578), 1, - anon_sym_COMMA, - STATE(4524), 1, - aux_sym_use_statement_repeat1, - [155620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6580), 1, - anon_sym_SEMI, - STATE(4499), 1, - aux_sym_const_declaration_repeat1, - [155633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6582), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [155646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4784), 1, - anon_sym_RPAREN, - ACTIONS(6584), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 1, - anon_sym_RPAREN, - ACTIONS(6586), 1, - anon_sym_COMMA, - STATE(4424), 1, - aux_sym_function_type_specifier_repeat1, - [155698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 1, - anon_sym_RPAREN, - ACTIONS(6586), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, + ACTIONS(6651), 1, anon_sym_RBRACE, - ACTIONS(6588), 1, - anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - [155724] = 4, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - ACTIONS(5222), 1, + ACTIONS(5165), 1, anon_sym_EQ, - STATE(2721), 1, - aux_sym_qualified_identifier_repeat1, - [155737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - anon_sym_RPAREN, - ACTIONS(5945), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - anon_sym_RPAREN, - ACTIONS(5945), 1, - anon_sym_COMMA, - STATE(4426), 1, - aux_sym_function_type_specifier_repeat1, - [155763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6590), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [155776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6592), 1, - anon_sym_SEMI, - STATE(4538), 1, - aux_sym_const_declaration_repeat1, - [155789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - anon_sym_RPAREN, - ACTIONS(5947), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - anon_sym_RPAREN, - ACTIONS(5947), 1, - anon_sym_COMMA, - STATE(4429), 1, - aux_sym_function_type_specifier_repeat1, - [155815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 1, - anon_sym_COMMA, - ACTIONS(6596), 1, - anon_sym_RPAREN, - STATE(4521), 1, - aux_sym_arguments_repeat1, - [155828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6598), 1, - anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_GT, - STATE(4526), 1, - aux_sym_tuple_type_specifier_repeat1, - [155841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, + ACTIONS(6653), 1, anon_sym_LPAREN, - ACTIONS(5636), 1, - anon_sym_LBRACK, - STATE(1789), 1, - sym_arguments, - [155854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5841), 1, - anon_sym_GT_GT, - ACTIONS(6602), 1, - anon_sym_COMMA, - STATE(4527), 1, - aux_sym_attribute_modifier_repeat1, - [155867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5841), 1, - anon_sym_GT_GT, - ACTIONS(6602), 1, + ACTIONS(5163), 2, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [155880] = 3, + anon_sym_SEMI, + [156756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - sym_xhp_class_identifier, - ACTIONS(6604), 2, + ACTIONS(6306), 1, sym_identifier, - sym_xhp_identifier, - [155891] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 1, - anon_sym_RPAREN, - ACTIONS(6608), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 1, - anon_sym_RPAREN, - ACTIONS(6610), 1, - anon_sym_COMMA, - STATE(4441), 1, - aux_sym_function_type_specifier_repeat1, - [155917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 1, - anon_sym_RPAREN, - ACTIONS(6610), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155930] = 4, + ACTIONS(6655), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5853), 1, - anon_sym_GT_GT, - ACTIONS(6612), 1, - anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [155943] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6657), 1, + anon_sym_RBRACE, + STATE(4468), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, anon_sym_LBRACE, - ACTIONS(6614), 1, - anon_sym_SEMI, - STATE(1024), 1, - sym_compound_statement, - [155956] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4860), 1, - anon_sym_RPAREN, - ACTIONS(5961), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [155969] = 4, + STATE(1706), 1, + sym_member_declarations, + STATE(5402), 1, + sym_where_clause, + [156800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5588), 1, anon_sym_LBRACE, - ACTIONS(6616), 1, - anon_sym_SEMI, - STATE(930), 1, - sym_compound_statement, - [155982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6620), 1, - anon_sym_RPAREN, - STATE(4745), 1, - aux_sym_list_expression_repeat1, - [155995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(4396), 1, - aux_sym_array_repeat1, - [156008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - [156021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, - anon_sym_GT, - ACTIONS(6622), 1, - anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [156034] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1275), 1, - anon_sym_RPAREN, - ACTIONS(6624), 1, - anon_sym_COMMA, - STATE(4894), 1, - aux_sym_arguments_repeat1, - [156047] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4860), 1, - anon_sym_RPAREN, - ACTIONS(5961), 1, - anon_sym_COMMA, - STATE(4443), 1, - aux_sym_function_type_specifier_repeat1, - [156060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6626), 1, - anon_sym_SEMI, - ACTIONS(6628), 1, - anon_sym_COMMA, - STATE(4468), 1, - aux_sym_use_statement_repeat1, - [156073] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6630), 1, - anon_sym_SEMI, - STATE(4472), 1, - aux_sym_const_declaration_repeat1, - [156086] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6632), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [156099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4824), 1, - anon_sym_RPAREN, - ACTIONS(5963), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156112] = 4, + STATE(1359), 1, + sym_member_declarations, + STATE(5732), 1, + sym_where_clause, + [156816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, - anon_sym_RPAREN, - ACTIONS(5963), 1, - anon_sym_COMMA, - STATE(4446), 1, - aux_sym_function_type_specifier_repeat1, - [156125] = 2, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 3, - sym_variable, + ACTIONS(5314), 1, anon_sym_LPAREN, - anon_sym_function, - [156134] = 4, + ACTIONS(5564), 1, + anon_sym_LT, + STATE(3773), 1, + sym_parameters, + STATE(5615), 1, + sym_type_parameters, + [156848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_RPAREN, - ACTIONS(6634), 1, - anon_sym_COMMA, - STATE(4406), 1, - aux_sym_tuple_type_specifier_repeat1, - [156147] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4513), 1, + sym_member_declarations, + STATE(5302), 1, + sym_where_clause, + [156864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_RPAREN, - ACTIONS(6634), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [156160] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6663), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5586), 1, anon_sym_LBRACE, - ACTIONS(6636), 1, - anon_sym_SEMI, - STATE(1051), 1, - sym_compound_statement, - [156173] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 1, - anon_sym_RPAREN, - ACTIONS(6638), 1, - anon_sym_COMMA, - STATE(4410), 1, - aux_sym_shape_type_specifier_repeat1, - [156186] = 4, + STATE(1518), 1, + sym_member_declarations, + STATE(5627), 1, + sym_where_clause, + [156894] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6640), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [156199] = 4, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, anon_sym_LBRACE, - ACTIONS(6642), 1, - anon_sym_SEMI, - STATE(979), 1, - sym_compound_statement, - [156212] = 4, + STATE(1744), 1, + sym_member_declarations, + STATE(5376), 1, + sym_where_clause, + [156926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, - anon_sym_RPAREN, - ACTIONS(6644), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156225] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1474), 1, + sym_member_declarations, + STATE(5684), 1, + sym_where_clause, + [156942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, - anon_sym_COMMA, - ACTIONS(6648), 1, - anon_sym_RPAREN, - STATE(4412), 1, - aux_sym_shape_type_specifier_repeat1, - [156238] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1517), 1, + sym_member_declarations, + STATE(5635), 1, + sym_where_clause, + [156958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 1, - anon_sym_SEMI, - ACTIONS(6650), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [156251] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1742), 1, + sym_member_declarations, + STATE(5377), 1, + sym_where_clause, + [156974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, - anon_sym_RPAREN, - ACTIONS(6652), 1, - anon_sym_COMMA, - STATE(4466), 1, - aux_sym_function_type_specifier_repeat1, - [156264] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6669), 1, + anon_sym_RBRACE, + STATE(4352), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 1, - anon_sym_COMMA, - ACTIONS(6656), 1, - anon_sym_RPAREN, - STATE(4496), 1, - aux_sym_tuple_type_specifier_repeat1, - [156277] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4522), 1, + sym_member_declarations, + STATE(5295), 1, + sym_where_clause, + [157004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6658), 1, - anon_sym_SEMI, - STATE(4500), 1, - aux_sym_const_declaration_repeat1, - [156290] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_RBRACE, + STATE(4168), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [157018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(6344), 1, + anon_sym_as, + ACTIONS(6673), 1, + anon_sym_LBRACE, + ACTIONS(6340), 2, anon_sym_COMMA, - ACTIONS(6660), 1, anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [156303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4850), 1, - anon_sym_RPAREN, - ACTIONS(6652), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156316] = 4, + [157032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_RPAREN, - ACTIONS(5979), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156329] = 4, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6675), 1, + anon_sym_RBRACE, + STATE(4452), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [157046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_RPAREN, - ACTIONS(5979), 1, - anon_sym_COMMA, - STATE(4473), 1, - aux_sym_function_type_specifier_repeat1, - [156342] = 4, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + STATE(782), 1, + sym_member_declarations, + STATE(5693), 1, + sym_where_clause, + [157062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 1, - anon_sym_COMMA, - ACTIONS(6664), 1, - anon_sym_GT, - STATE(4506), 1, - aux_sym_tuple_type_specifier_repeat1, - [156355] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_member_declarations, + STATE(5730), 1, + sym_where_clause, + [157078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, - anon_sym_RPAREN, - ACTIONS(6666), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [156368] = 4, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6677), 1, + anon_sym_as, + ACTIONS(6679), 1, + anon_sym_EQ, + STATE(5507), 1, + sym_type_parameters, + [157094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(4910), 1, anon_sym_RPAREN, - ACTIONS(6668), 1, + ACTIONS(6035), 1, anon_sym_COMMA, - STATE(4823), 1, - aux_sym_shape_repeat1, - [156381] = 4, + STATE(4984), 1, + aux_sym_function_type_specifier_repeat1, + [157107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(6670), 1, + ACTIONS(6681), 1, anon_sym_SEMI, - STATE(1408), 1, + STATE(1495), 1, sym_compound_statement, - [156394] = 4, + [157120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, - anon_sym_RPAREN, - ACTIONS(5981), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156407] = 4, + ACTIONS(2413), 1, + anon_sym_else, + ACTIONS(2415), 2, + anon_sym_elseif, + anon_sym_while, + [157131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, - anon_sym_RPAREN, - ACTIONS(5981), 1, - anon_sym_COMMA, - STATE(4474), 1, - aux_sym_function_type_specifier_repeat1, - [156420] = 4, + ACTIONS(2437), 1, + anon_sym_else, + ACTIONS(2439), 2, + anon_sym_elseif, + anon_sym_while, + [157142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 1, - anon_sym_COMMA, - ACTIONS(6674), 1, - anon_sym_RPAREN, - STATE(4573), 1, - aux_sym_shape_type_specifier_repeat1, - [156433] = 4, + ACTIONS(2205), 1, + anon_sym_else, + ACTIONS(2207), 2, + anon_sym_elseif, + anon_sym_while, + [157153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 1, - anon_sym_RPAREN, - ACTIONS(6676), 1, - anon_sym_COMMA, - STATE(4575), 1, - aux_sym_shape_type_specifier_repeat1, - [156446] = 4, + ACTIONS(2377), 1, + anon_sym_else, + ACTIONS(2379), 2, + anon_sym_elseif, + anon_sym_while, + [157164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - ACTIONS(6678), 1, - sym_identifier, - STATE(3741), 1, - sym_parameters, - [156459] = 4, + ACTIONS(6683), 1, + anon_sym_COMMA, + ACTIONS(6685), 1, + anon_sym_SEMI, + STATE(5009), 1, + aux_sym_xhp_attribute_declaration_repeat1, + [157177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(1609), 1, anon_sym_RPAREN, - ACTIONS(6680), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [156472] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [157190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(6682), 1, + ACTIONS(6687), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [156485] = 4, + ACTIONS(6689), 1, + anon_sym_SEMI, + STATE(5043), 1, + aux_sym_xhp_category_declaration_repeat1, + [157203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1363), 1, - anon_sym_RPAREN, - ACTIONS(6684), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [156498] = 4, + ACTIONS(2121), 1, + anon_sym_else, + ACTIONS(2123), 2, + anon_sym_elseif, + anon_sym_while, + [157214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(6688), 1, - anon_sym_RPAREN, - STATE(4516), 1, - aux_sym_parameters_repeat1, - [156511] = 4, + ACTIONS(6693), 1, + anon_sym_SEMI, + STATE(5046), 1, + aux_sym_property_declaration_repeat1, + [157227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_COMMA, - ACTIONS(6692), 1, - anon_sym_RPAREN, - STATE(4595), 1, - aux_sym_shape_repeat1, - [156524] = 4, + ACTIONS(2153), 1, + anon_sym_else, + ACTIONS(2155), 2, + anon_sym_elseif, + anon_sym_while, + [157238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_RPAREN, - ACTIONS(6680), 1, - anon_sym_COMMA, - STATE(4592), 1, - aux_sym_tuple_type_specifier_repeat1, - [156537] = 4, + ACTIONS(2181), 1, + anon_sym_else, + ACTIONS(2183), 2, + anon_sym_elseif, + anon_sym_while, + [157249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [156550] = 4, + ACTIONS(2193), 1, + anon_sym_else, + ACTIONS(2195), 2, + anon_sym_elseif, + anon_sym_while, + [157260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6694), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [156563] = 4, + ACTIONS(2197), 1, + anon_sym_else, + ACTIONS(2199), 2, + anon_sym_elseif, + anon_sym_while, + [157271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(6698), 1, - anon_sym_RPAREN, - STATE(4529), 1, - aux_sym_shape_type_specifier_repeat1, - [156576] = 4, + ACTIONS(6697), 1, + anon_sym_SEMI, + STATE(4992), 1, + aux_sym__class_const_declaration_repeat1, + [157284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1317), 1, - anon_sym_RPAREN, - ACTIONS(6700), 1, - anon_sym_COMMA, - STATE(4531), 1, - aux_sym_shape_type_specifier_repeat1, - [156589] = 4, + ACTIONS(2509), 1, + anon_sym_else, + ACTIONS(2511), 2, + anon_sym_elseif, + anon_sym_while, + [157295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3663), 1, - anon_sym_RBRACE, - ACTIONS(3665), 1, - anon_sym_COMMA, - STATE(4427), 1, - aux_sym_array_repeat1, - [156602] = 4, + ACTIONS(2497), 1, + anon_sym_else, + ACTIONS(2499), 2, + anon_sym_elseif, + anon_sym_while, + [157306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, - anon_sym_RPAREN, - ACTIONS(6702), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [156615] = 4, + ACTIONS(2221), 1, + anon_sym_else, + ACTIONS(2223), 2, + anon_sym_elseif, + anon_sym_while, + [157317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1625), 1, + ACTIONS(1593), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [156628] = 4, + [157330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, - anon_sym_RPAREN, - ACTIONS(6702), 1, - anon_sym_COMMA, - STATE(4535), 1, - aux_sym_tuple_type_specifier_repeat1, - [156641] = 4, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(6699), 1, + anon_sym_SEMI, + STATE(4550), 1, + sym_compound_statement, + [157343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [156654] = 4, + ACTIONS(2225), 1, + anon_sym_else, + ACTIONS(2227), 2, + anon_sym_elseif, + anon_sym_while, + [157354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6706), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [156667] = 4, - ACTIONS(5472), 1, + ACTIONS(2229), 1, + anon_sym_else, + ACTIONS(2231), 2, + anon_sym_elseif, + anon_sym_while, + [157365] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6710), 1, - aux_sym_function_type_specifier_token1, - STATE(3726), 1, - sym_parameters, - [156680] = 4, + ACTIONS(2233), 1, + anon_sym_else, + ACTIONS(2235), 2, + anon_sym_elseif, + anon_sym_while, + [157376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6712), 1, - sym_variable, - STATE(5810), 1, - sym_variadic_modifier, - [156693] = 4, + ACTIONS(2237), 1, + anon_sym_else, + ACTIONS(2239), 2, + anon_sym_elseif, + anon_sym_while, + [157387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, - anon_sym_RPAREN, - ACTIONS(6714), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156706] = 3, + ACTIONS(2241), 1, + anon_sym_else, + ACTIONS(2243), 2, + anon_sym_elseif, + anon_sym_while, + [157398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 1, - anon_sym_EQ, - ACTIONS(6716), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [156717] = 4, + ACTIONS(2245), 1, + anon_sym_else, + ACTIONS(2247), 2, + anon_sym_elseif, + anon_sym_while, + [157409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_RPAREN, - ACTIONS(6720), 1, - anon_sym_COMMA, - STATE(4503), 1, - aux_sym_function_type_specifier_repeat1, - [156730] = 4, + ACTIONS(2249), 1, + anon_sym_else, + ACTIONS(2251), 2, + anon_sym_elseif, + anon_sym_while, + [157420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, - anon_sym_GT, - ACTIONS(6722), 1, - anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [156743] = 4, + ACTIONS(2257), 1, + anon_sym_else, + ACTIONS(2259), 2, + anon_sym_elseif, + anon_sym_while, + [157431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 1, - anon_sym_GT_GT, - ACTIONS(6724), 1, - anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [156756] = 4, + ACTIONS(2261), 1, + anon_sym_else, + ACTIONS(2263), 2, + anon_sym_elseif, + anon_sym_while, + [157442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - anon_sym_RPAREN, - ACTIONS(6720), 1, + ACTIONS(2265), 1, + anon_sym_else, + ACTIONS(2267), 2, + anon_sym_elseif, + anon_sym_while, + [157453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6691), 1, anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156769] = 4, + ACTIONS(6701), 1, + anon_sym_SEMI, + STATE(5053), 1, + aux_sym_property_declaration_repeat1, + [157466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, + ACTIONS(1643), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [156782] = 4, + [157479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_RPAREN, - ACTIONS(5997), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156795] = 4, + ACTIONS(2273), 1, + anon_sym_else, + ACTIONS(2275), 2, + anon_sym_elseif, + anon_sym_while, + [157490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_RPAREN, - ACTIONS(5997), 1, - anon_sym_COMMA, - STATE(4508), 1, - aux_sym_function_type_specifier_repeat1, - [156808] = 4, + ACTIONS(2277), 1, + anon_sym_else, + ACTIONS(2279), 2, + anon_sym_elseif, + anon_sym_while, + [157501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, - anon_sym_RPAREN, - ACTIONS(5999), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [156821] = 4, + ACTIONS(2281), 1, + anon_sym_else, + ACTIONS(2283), 2, + anon_sym_elseif, + anon_sym_while, + [157512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 1, - anon_sym_GT_GT, - ACTIONS(6724), 1, - anon_sym_COMMA, - STATE(4444), 1, - aux_sym_attribute_modifier_repeat1, - [156834] = 4, + ACTIONS(2285), 1, + anon_sym_else, + ACTIONS(2287), 2, + anon_sym_elseif, + anon_sym_while, + [157523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, - anon_sym_RPAREN, - ACTIONS(5999), 1, - anon_sym_COMMA, - STATE(4510), 1, - aux_sym_function_type_specifier_repeat1, - [156847] = 4, + ACTIONS(2289), 1, + anon_sym_else, + ACTIONS(2291), 2, + anon_sym_elseif, + anon_sym_while, + [157534] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_RPAREN, - STATE(4745), 1, - aux_sym_list_expression_repeat1, - [156860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3644), 1, + ACTIONS(3899), 1, anon_sym_RPAREN, - ACTIONS(6726), 1, - anon_sym_COMMA, - STATE(4642), 1, - aux_sym_parameters_repeat1, - [156873] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [157547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - anon_sym_RBRACK, - ACTIONS(3652), 1, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(5163), 2, anon_sym_COMMA, - STATE(4450), 1, - aux_sym_array_repeat1, - [156886] = 4, + anon_sym_SEMI, + [157558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, + ACTIONS(6703), 1, anon_sym_LBRACE, - ACTIONS(6728), 1, + ACTIONS(6705), 1, anon_sym_SEMI, - STATE(1052), 1, + STATE(2812), 1, sym_compound_statement, - [156899] = 4, + [157571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - anon_sym_COMMA, - ACTIONS(6732), 1, - anon_sym_GT, - STATE(4451), 1, - aux_sym_tuple_type_specifier_repeat1, - [156912] = 4, + ACTIONS(2293), 1, + anon_sym_else, + ACTIONS(2295), 2, + anon_sym_elseif, + anon_sym_while, + [157582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6734), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(6736), 1, - anon_sym_RPAREN, - STATE(4452), 1, - aux_sym_arguments_repeat1, - [156925] = 4, + ACTIONS(6701), 1, + anon_sym_SEMI, + STATE(5087), 1, + aux_sym_property_declaration_repeat1, + [157595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, - anon_sym_RPAREN, - ACTIONS(6738), 1, - anon_sym_COMMA, - STATE(4894), 1, - aux_sym_arguments_repeat1, - [156938] = 4, + ACTIONS(6703), 1, + anon_sym_LBRACE, + ACTIONS(6707), 1, + anon_sym_SEMI, + STATE(2823), 1, + sym_compound_statement, + [157608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(6740), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [156951] = 4, + ACTIONS(2209), 1, + anon_sym_else, + ACTIONS(2211), 2, + anon_sym_elseif, + anon_sym_while, + [157619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, + ACTIONS(1429), 1, anon_sym_RPAREN, - ACTIONS(6742), 1, + ACTIONS(6709), 1, anon_sym_COMMA, - STATE(4997), 1, + STATE(4818), 1, aux_sym_shape_type_specifier_repeat1, - [156964] = 4, + [157632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5406), 1, - anon_sym_SEMI, - ACTIONS(6744), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [156977] = 3, + ACTIONS(2301), 1, + anon_sym_else, + ACTIONS(2303), 2, + anon_sym_elseif, + anon_sym_while, + [157643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - anon_sym_EQ, - ACTIONS(3677), 2, - anon_sym_COMMA, + ACTIONS(1431), 1, anon_sym_RPAREN, - [156988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_GT, - ACTIONS(6748), 1, + ACTIONS(6711), 1, anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [157001] = 4, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [157656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 1, - anon_sym_GT_GT, - ACTIONS(6750), 1, - anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [157014] = 4, + ACTIONS(2313), 1, + anon_sym_else, + ACTIONS(2315), 2, + anon_sym_elseif, + anon_sym_while, + [157667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(5771), 1, + ACTIONS(6713), 1, anon_sym_RPAREN, - STATE(4653), 1, - aux_sym_tuple_type_specifier_repeat1, - [157027] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [157680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 1, - anon_sym_RPAREN, - ACTIONS(6752), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157040] = 4, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(6715), 1, + anon_sym_SEMI, + STATE(1645), 1, + sym_compound_statement, + [157693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6754), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [157053] = 4, + ACTIONS(2317), 1, + anon_sym_else, + ACTIONS(2319), 2, + anon_sym_elseif, + anon_sym_while, + [157704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_RPAREN, - ACTIONS(6756), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157066] = 4, + ACTIONS(2321), 1, + anon_sym_else, + ACTIONS(2323), 2, + anon_sym_elseif, + anon_sym_while, + [157715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6758), 1, - anon_sym_SEMI, - STATE(4456), 1, - aux_sym_const_declaration_repeat1, - [157079] = 4, + ACTIONS(2325), 1, + anon_sym_else, + ACTIONS(2327), 2, + anon_sym_elseif, + anon_sym_while, + [157726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - anon_sym_COMMA, - ACTIONS(6762), 1, + ACTIONS(4830), 1, anon_sym_RPAREN, - STATE(4568), 1, - aux_sym_shape_type_specifier_repeat1, - [157092] = 4, + ACTIONS(6717), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [157739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(2297), 1, + anon_sym_else, + ACTIONS(2299), 2, + anon_sym_elseif, + anon_sym_while, + [157750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, anon_sym_RPAREN, - ACTIONS(6756), 1, + ACTIONS(6719), 1, anon_sym_COMMA, - STATE(4569), 1, - aux_sym_shape_type_specifier_repeat1, - [157105] = 4, + STATE(4530), 1, + aux_sym_function_type_specifier_repeat1, + [157763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(4832), 1, anon_sym_RPAREN, - ACTIONS(6764), 1, + ACTIONS(6719), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [157118] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [157776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(5861), 1, + anon_sym_GT_GT, + ACTIONS(6721), 1, anon_sym_COMMA, - ACTIONS(6766), 1, - anon_sym_SEMI, - STATE(4672), 1, - aux_sym_const_declaration_repeat1, - [157131] = 4, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [157789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, - anon_sym_COMMA, - ACTIONS(6770), 1, - anon_sym_RPAREN, - STATE(4461), 1, - aux_sym_tuple_type_specifier_repeat1, - [157144] = 4, + ACTIONS(2333), 1, + anon_sym_else, + ACTIONS(2335), 2, + anon_sym_elseif, + anon_sym_while, + [157800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(6772), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [157157] = 4, + ACTIONS(2421), 1, + anon_sym_else, + ACTIONS(2423), 2, + anon_sym_elseif, + anon_sym_while, + [157811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(4834), 1, + anon_sym_RPAREN, + ACTIONS(6059), 1, anon_sym_COMMA, - ACTIONS(6774), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157170] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [157824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 1, - anon_sym_SEMI, - ACTIONS(6776), 1, + ACTIONS(4834), 1, + anon_sym_RPAREN, + ACTIONS(6059), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [157183] = 4, + STATE(4533), 1, + aux_sym_function_type_specifier_repeat1, + [157837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6778), 1, - anon_sym_COMMA, - ACTIONS(6780), 1, - anon_sym_RPAREN, - STATE(4694), 1, - aux_sym_arguments_repeat1, - [157196] = 4, + ACTIONS(2341), 1, + anon_sym_else, + ACTIONS(2343), 2, + anon_sym_elseif, + anon_sym_while, + [157848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6782), 1, - anon_sym_COLON, - STATE(5981), 1, - sym_capability_list, - [157209] = 4, + ACTIONS(4836), 1, + anon_sym_RPAREN, + ACTIONS(6061), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [157861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6784), 1, - anon_sym_COLON, - STATE(5979), 1, - sym_capability_list, - [157222] = 4, + ACTIONS(4836), 1, + anon_sym_RPAREN, + ACTIONS(6061), 1, + anon_sym_COMMA, + STATE(4537), 1, + aux_sym_function_type_specifier_repeat1, + [157874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6786), 1, + ACTIONS(6723), 1, anon_sym_SEMI, - STATE(1329), 1, + STATE(942), 1, sym_compound_statement, - [157235] = 4, + [157887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6788), 1, - anon_sym_COLON, - STATE(5977), 1, - sym_capability_list, - [157248] = 4, + ACTIONS(2349), 1, + anon_sym_else, + ACTIONS(2351), 2, + anon_sym_elseif, + anon_sym_while, + [157898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6790), 1, - anon_sym_COLON, - STATE(5975), 1, - sym_capability_list, - [157261] = 4, + ACTIONS(321), 1, + anon_sym_LBRACE, + ACTIONS(6725), 1, + anon_sym_SEMI, + STATE(945), 1, + sym_compound_statement, + [157911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6792), 1, - anon_sym_COLON, - STATE(5974), 1, - sym_capability_list, - [157274] = 4, + ACTIONS(1516), 1, + anon_sym_RBRACK, + ACTIONS(6727), 1, + anon_sym_COMMA, + STATE(4404), 1, + aux_sym_array_repeat1, + [157924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 1, + ACTIONS(4996), 1, + anon_sym_RPAREN, + ACTIONS(6729), 1, anon_sym_COMMA, - ACTIONS(6796), 1, - anon_sym_GT, - STATE(4702), 1, + STATE(3798), 1, aux_sym_tuple_type_specifier_repeat1, - [157287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6798), 1, - anon_sym_COLON, - STATE(5972), 1, - sym_capability_list, - [157300] = 4, + [157937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 1, - anon_sym_RBRACK, - ACTIONS(3654), 1, + ACTIONS(3774), 3, anon_sym_COMMA, - STATE(4703), 1, - aux_sym_array_repeat1, - [157313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6800), 1, - anon_sym_COLON, - STATE(5968), 1, - sym_capability_list, - [157326] = 4, + anon_sym_RBRACE, + anon_sym_RBRACK, + [157946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6802), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157339] = 3, + ACTIONS(2357), 1, + anon_sym_else, + ACTIONS(2359), 2, + anon_sym_elseif, + anon_sym_while, + [157957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6804), 1, - anon_sym_EQ, - ACTIONS(6352), 2, + ACTIONS(6731), 1, anon_sym_COMMA, + ACTIONS(6734), 1, anon_sym_RPAREN, - [157350] = 4, + STATE(4549), 1, + aux_sym_arguments_repeat1, + [157970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - anon_sym_GT_GT, - ACTIONS(6806), 1, - anon_sym_COMMA, - STATE(4746), 1, - aux_sym_attribute_modifier_repeat1, - [157363] = 4, + ACTIONS(2369), 1, + anon_sym_else, + ACTIONS(2371), 2, + anon_sym_elseif, + anon_sym_while, + [157981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - anon_sym_GT_GT, - ACTIONS(6806), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [157376] = 4, + ACTIONS(6738), 1, + anon_sym_SEMI, + STATE(4565), 1, + aux_sym_use_statement_repeat1, + [157994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(6808), 1, + ACTIONS(6742), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6812), 1, - sym_xhp_class_identifier, - ACTIONS(6810), 2, - sym_identifier, - sym_xhp_identifier, - [157400] = 4, + STATE(4569), 1, + aux_sym_const_declaration_repeat1, + [158007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6814), 1, + ACTIONS(6744), 1, anon_sym_COMMA, - ACTIONS(6816), 1, + ACTIONS(6746), 1, anon_sym_RPAREN, - STATE(4478), 1, - aux_sym_shape_repeat1, - [157413] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6818), 1, - anon_sym_COLON, - STATE(5929), 1, - sym_capability_list, - [157426] = 4, + STATE(4859), 1, + aux_sym_shape_type_specifier_repeat1, + [158020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6820), 1, - anon_sym_COLON, - STATE(5927), 1, - sym_capability_list, - [157439] = 4, + ACTIONS(2385), 1, + anon_sym_else, + ACTIONS(2387), 2, + anon_sym_elseif, + anon_sym_while, + [158031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6822), 1, - anon_sym_COLON, - STATE(5925), 1, - sym_capability_list, - [157452] = 4, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(4615), 1, + sym_compound_statement, + [158044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6824), 1, - anon_sym_COLON, - STATE(5923), 1, - sym_capability_list, - [157465] = 4, + ACTIONS(2389), 1, + anon_sym_else, + ACTIONS(2391), 2, + anon_sym_elseif, + anon_sym_while, + [158055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6826), 1, - anon_sym_COLON, - STATE(5922), 1, - sym_capability_list, - [157478] = 4, + ACTIONS(2397), 1, + anon_sym_else, + ACTIONS(2399), 2, + anon_sym_elseif, + anon_sym_while, + [158066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6828), 1, - anon_sym_COLON, - STATE(5920), 1, - sym_capability_list, - [157491] = 4, + ACTIONS(2093), 1, + anon_sym_else, + ACTIONS(2095), 2, + anon_sym_elseif, + anon_sym_while, + [158077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6830), 1, + ACTIONS(6750), 1, anon_sym_SEMI, - STATE(1685), 1, + STATE(974), 1, sym_compound_statement, - [157504] = 4, + [158090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, - anon_sym_RBRACE, - ACTIONS(3675), 1, - anon_sym_COMMA, - STATE(4787), 1, - aux_sym_array_repeat1, - [157517] = 4, + ACTIONS(2405), 1, + anon_sym_else, + ACTIONS(2407), 2, + anon_sym_elseif, + anon_sym_while, + [158101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6832), 1, - anon_sym_COLON, - STATE(5916), 1, - sym_capability_list, - [157530] = 4, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(6752), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [158114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 1, - anon_sym_RPAREN, - ACTIONS(6834), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157543] = 4, + ACTIONS(2409), 1, + anon_sym_else, + ACTIONS(2411), 2, + anon_sym_elseif, + anon_sym_while, + [158125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1303), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157556] = 4, + ACTIONS(2089), 1, + anon_sym_else, + ACTIONS(2091), 2, + anon_sym_elseif, + anon_sym_while, + [158136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, - anon_sym_COMMA, - ACTIONS(3806), 1, - anon_sym_RPAREN, - STATE(4745), 1, - aux_sym_list_expression_repeat1, - [157569] = 4, + ACTIONS(2425), 1, + anon_sym_else, + ACTIONS(2427), 2, + anon_sym_elseif, + anon_sym_while, + [158147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6838), 1, + ACTIONS(5486), 1, + anon_sym_SEMI, + ACTIONS(6754), 1, anon_sym_COMMA, - ACTIONS(6840), 1, - anon_sym_RBRACK, - STATE(4790), 1, - aux_sym_capability_list_repeat1, - [157582] = 4, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [158160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(6842), 1, + ACTIONS(1545), 1, anon_sym_SEMI, - STATE(4115), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [157595] = 4, + [158173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, - anon_sym_RPAREN, - ACTIONS(6844), 1, + ACTIONS(6756), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(5919), 1, - anon_sym_LBRACK, - STATE(2343), 1, - sym_arguments, - [157621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 1, + ACTIONS(6758), 1, anon_sym_RPAREN, - ACTIONS(6846), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157634] = 4, + STATE(4594), 1, + aux_sym_tuple_type_specifier_repeat1, + [158186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(6848), 1, + ACTIONS(6760), 1, anon_sym_SEMI, - STATE(4530), 1, + STATE(4598), 1, aux_sym_const_declaration_repeat1, - [157647] = 4, + [158199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, - anon_sym_SEMI, - ACTIONS(6852), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - STATE(4540), 1, - aux_sym_use_statement_repeat1, - [157660] = 4, + ACTIONS(6762), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [158212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(5026), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(6764), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157673] = 4, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [158225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(6854), 1, - anon_sym_SEMI, - STATE(1711), 1, - sym_compound_statement, - [157686] = 4, + ACTIONS(2433), 1, + anon_sym_else, + ACTIONS(2435), 2, + anon_sym_elseif, + anon_sym_while, + [158236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(1395), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(6766), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157699] = 4, + STATE(4521), 1, + aux_sym_shape_type_specifier_repeat1, + [158249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(6768), 1, anon_sym_COMMA, - ACTIONS(6858), 1, + ACTIONS(6770), 1, + anon_sym_GT, + STATE(4604), 1, + aux_sym_tuple_type_specifier_repeat1, + [158262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6772), 1, + anon_sym_COMMA, + ACTIONS(6774), 1, anon_sym_RPAREN, - STATE(4751), 1, + STATE(4523), 1, aux_sym_shape_type_specifier_repeat1, - [157712] = 4, + [158275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 1, + ACTIONS(1395), 1, anon_sym_RPAREN, - ACTIONS(6846), 1, + ACTIONS(6766), 1, anon_sym_COMMA, - STATE(4753), 1, + STATE(4818), 1, aux_sym_shape_type_specifier_repeat1, - [157725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6860), 1, - anon_sym_COLON, - STATE(5877), 1, - sym_capability_list, - [157738] = 4, + [158288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6862), 1, - anon_sym_COLON, - STATE(5875), 1, - sym_capability_list, - [157751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6864), 1, - anon_sym_COLON, - STATE(5873), 1, - sym_capability_list, - [157764] = 4, + ACTIONS(2137), 1, + anon_sym_else, + ACTIONS(2139), 2, + anon_sym_elseif, + anon_sym_while, + [158299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6866), 1, - anon_sym_COLON, - STATE(5871), 1, - sym_capability_list, - [157777] = 4, + ACTIONS(1393), 1, + anon_sym_RPAREN, + ACTIONS(6776), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [158312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(6868), 1, - anon_sym_SEMI, - STATE(4742), 1, - sym_compound_statement, - [157790] = 4, + ACTIONS(4848), 1, + anon_sym_RPAREN, + ACTIONS(6778), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(6870), 1, - anon_sym_SEMI, - STATE(1537), 1, - sym_compound_statement, - [157803] = 4, + ACTIONS(2465), 1, + anon_sym_else, + ACTIONS(2467), 2, + anon_sym_elseif, + anon_sym_while, + [158336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_SEMI, - STATE(1699), 1, - sym_compound_statement, - [157816] = 4, + ACTIONS(5879), 1, + anon_sym_GT_GT, + ACTIONS(6780), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [158349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6874), 1, - anon_sym_COLON, - STATE(5870), 1, - sym_capability_list, - [157829] = 4, + ACTIONS(5879), 1, + anon_sym_GT_GT, + ACTIONS(6780), 1, + anon_sym_COMMA, + STATE(4534), 1, + aux_sym_module_attribute_repeat1, + [158362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6876), 1, - anon_sym_COLON, - STATE(5868), 1, - sym_capability_list, - [157842] = 4, + ACTIONS(4854), 1, + anon_sym_RPAREN, + ACTIONS(6782), 1, + anon_sym_COMMA, + STATE(4578), 1, + aux_sym_function_type_specifier_repeat1, + [158375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(4854), 1, anon_sym_RPAREN, - ACTIONS(6878), 1, + ACTIONS(6782), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [157855] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6880), 1, - anon_sym_COLON, - STATE(5864), 1, - sym_capability_list, - [157868] = 4, + ACTIONS(2473), 1, + anon_sym_else, + ACTIONS(2475), 2, + anon_sym_elseif, + anon_sym_while, + [158399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6882), 1, - anon_sym_COMMA, - ACTIONS(6884), 1, - anon_sym_GT, - STATE(4798), 1, - aux_sym_type_parameters_repeat1, - [157881] = 4, + ACTIONS(2481), 1, + anon_sym_else, + ACTIONS(2483), 2, + anon_sym_elseif, + anon_sym_while, + [158410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, - ACTIONS(6886), 1, - anon_sym_COMMA, - STATE(4823), 1, - aux_sym_shape_repeat1, - [157894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, + ACTIONS(6095), 1, anon_sym_COMMA, - ACTIONS(6888), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157907] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, - ACTIONS(6890), 1, + ACTIONS(6095), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157920] = 4, + STATE(4583), 1, + aux_sym_function_type_specifier_repeat1, + [158436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, - anon_sym_LBRACE, - ACTIONS(6892), 1, - anon_sym_SEMI, - STATE(1367), 1, - sym_compound_statement, - [157933] = 4, + ACTIONS(2485), 1, + anon_sym_else, + ACTIONS(2487), 2, + anon_sym_elseif, + anon_sym_while, + [158447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - ACTIONS(6894), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [157946] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [157959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3094), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - ACTIONS(6896), 1, - anon_sym_RPAREN, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [157972] = 4, + STATE(4586), 1, + aux_sym_function_type_specifier_repeat1, + [158473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6898), 1, + ACTIONS(6784), 1, anon_sym_COMMA, - ACTIONS(6900), 1, - anon_sym_RPAREN, - STATE(4839), 1, - aux_sym_shape_type_specifier_repeat1, - [157985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, + ACTIONS(6786), 1, anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_COMMA, - STATE(4997), 1, + STATE(4630), 1, aux_sym_shape_type_specifier_repeat1, - [157998] = 4, + [158486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1287), 1, + ACTIONS(1339), 1, anon_sym_RPAREN, - ACTIONS(6904), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - STATE(4848), 1, + STATE(4632), 1, aux_sym_shape_type_specifier_repeat1, - [158011] = 3, + [158499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, + ACTIONS(2489), 1, anon_sym_else, - ACTIONS(2307), 2, + ACTIONS(2491), 2, anon_sym_elseif, anon_sym_while, - [158022] = 3, + [158510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_else, - ACTIONS(2435), 2, - anon_sym_elseif, - anon_sym_while, - [158033] = 3, + ACTIONS(5018), 1, + anon_sym_RPAREN, + ACTIONS(6790), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [158523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2493), 1, anon_sym_else, - ACTIONS(2263), 2, + ACTIONS(2495), 2, anon_sym_elseif, anon_sym_while, - [158044] = 4, + [158534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1683), 1, + ACTIONS(5018), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(6790), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2265), 1, - anon_sym_else, - ACTIONS(2267), 2, - anon_sym_elseif, - anon_sym_while, - [158068] = 3, + STATE(4636), 1, + aux_sym_tuple_type_specifier_repeat1, + [158547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_else, - ACTIONS(2271), 2, - anon_sym_elseif, - anon_sym_while, - [158079] = 4, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(6792), 1, + anon_sym_LBRACE, + STATE(6186), 1, + sym_extends_clause, + [158560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6906), 1, - anon_sym_COLON, - STATE(5825), 1, - sym_capability_list, - [158092] = 4, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [158573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6908), 1, - anon_sym_COLON, - STATE(5823), 1, - sym_capability_list, - [158105] = 3, + ACTIONS(5014), 1, + anon_sym_GT, + ACTIONS(6796), 1, + anon_sym_COMMA, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [158586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(2213), 1, anon_sym_else, - ACTIONS(2275), 2, + ACTIONS(2215), 2, anon_sym_elseif, anon_sym_while, - [158116] = 3, + [158597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2279), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158127] = 3, + [158608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, + ACTIONS(6798), 1, + anon_sym_COMMA, + ACTIONS(6800), 1, + anon_sym_RPAREN, + STATE(4934), 1, + aux_sym__anonymous_function_use_clause_repeat1, + [158621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, anon_sym_else, - ACTIONS(2283), 2, + ACTIONS(2523), 2, anon_sym_elseif, anon_sym_while, - [158138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6910), 1, - anon_sym_COLON, - STATE(5821), 1, - sym_capability_list, - [158151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6912), 1, - anon_sym_COLON, - STATE(5819), 1, - sym_capability_list, - [158164] = 4, + [158632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6914), 1, - anon_sym_COLON, - STATE(5818), 1, - sym_capability_list, - [158177] = 4, + ACTIONS(4998), 1, + anon_sym_GT, + ACTIONS(6802), 1, + anon_sym_COMMA, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [158645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6916), 1, - anon_sym_COLON, - STATE(5816), 1, - sym_capability_list, - [158190] = 3, + ACTIONS(2525), 1, + anon_sym_else, + ACTIONS(2527), 2, + anon_sym_elseif, + anon_sym_while, + [158656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 1, + ACTIONS(2541), 1, anon_sym_else, - ACTIONS(2287), 2, + ACTIONS(2543), 2, anon_sym_elseif, anon_sym_while, - [158201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - anon_sym_RPAREN, - ACTIONS(6918), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [158214] = 4, + [158667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 1, - anon_sym_RPAREN, - ACTIONS(6920), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - STATE(4522), 1, - aux_sym_shape_type_specifier_repeat1, - [158227] = 3, + ACTIONS(6804), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [158680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2545), 1, anon_sym_else, - ACTIONS(2291), 2, + ACTIONS(2547), 2, anon_sym_elseif, anon_sym_while, - [158238] = 3, + [158691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(4996), 1, + anon_sym_RPAREN, + ACTIONS(6729), 1, + anon_sym_COMMA, + STATE(4570), 1, + aux_sym_tuple_type_specifier_repeat1, + [158704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2553), 1, anon_sym_else, - ACTIONS(2295), 2, + ACTIONS(2555), 2, anon_sym_elseif, anon_sym_while, - [158249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6924), 1, - anon_sym_EQ, - ACTIONS(6922), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [158260] = 3, + [158715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2557), 1, anon_sym_else, - ACTIONS(2303), 2, + ACTIONS(2559), 2, anon_sym_elseif, anon_sym_while, - [158271] = 4, + [158726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, + ACTIONS(1381), 1, anon_sym_RPAREN, - STATE(4523), 1, + ACTIONS(6806), 1, + anon_sym_COMMA, + STATE(4575), 1, aux_sym_shape_type_specifier_repeat1, - [158284] = 3, + [158739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_EQ, - ACTIONS(6930), 2, + ACTIONS(6808), 1, anon_sym_COMMA, + ACTIONS(6810), 1, anon_sym_RPAREN, - [158295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - STATE(5812), 1, - sym_capability_list, - [158308] = 3, + STATE(4577), 1, + aux_sym_shape_type_specifier_repeat1, + [158752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, + ACTIONS(2569), 1, anon_sym_else, - ACTIONS(2507), 2, + ACTIONS(2571), 2, anon_sym_elseif, anon_sym_while, - [158319] = 3, + [158763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2573), 1, anon_sym_else, - ACTIONS(2055), 2, + ACTIONS(2575), 2, anon_sym_elseif, anon_sym_while, - [158330] = 3, + [158774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_else, - ACTIONS(2315), 2, - anon_sym_elseif, - anon_sym_while, - [158341] = 3, + ACTIONS(5895), 1, + anon_sym_GT_GT, + ACTIONS(6812), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [158787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2577), 1, anon_sym_else, - ACTIONS(2319), 2, + ACTIONS(2579), 2, anon_sym_elseif, anon_sym_while, - [158352] = 3, + [158798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2327), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158363] = 4, + [158809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(4894), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(6814), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158376] = 3, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2331), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158387] = 3, + [158833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_else, - ACTIONS(2335), 2, - anon_sym_elseif, - anon_sym_while, - [158398] = 3, + 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(6938), 1, - anon_sym_EQ, - ACTIONS(6936), 2, - anon_sym_COMMA, + ACTIONS(4896), 1, anon_sym_RPAREN, - [158409] = 3, + ACTIONS(6816), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, - anon_sym_else, - ACTIONS(2343), 2, - anon_sym_elseif, - anon_sym_while, - [158420] = 3, + ACTIONS(6818), 1, + anon_sym_COMMA, + ACTIONS(6820), 1, + anon_sym_GT, + STATE(4599), 1, + aux_sym_tuple_type_specifier_repeat1, + [158872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2345), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2347), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158431] = 3, + [158883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2351), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158442] = 4, + [158894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(5903), 1, + anon_sym_GT_GT, + ACTIONS(6822), 1, anon_sym_COMMA, - ACTIONS(6943), 1, + STATE(4667), 1, + aux_sym_module_attribute_repeat1, + [158907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5903), 1, + anon_sym_GT_GT, + ACTIONS(6822), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [158920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, anon_sym_RPAREN, - STATE(4642), 1, - aux_sym_parameters_repeat1, - [158455] = 4, + ACTIONS(6145), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [158933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6945), 1, - sym_variable, - STATE(5715), 1, - sym_variadic_modifier, - [158468] = 4, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(6824), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [158946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 1, + ACTIONS(1343), 1, anon_sym_RPAREN, - ACTIONS(6920), 1, + ACTIONS(6826), 1, anon_sym_COMMA, - STATE(4997), 1, + STATE(4818), 1, aux_sym_shape_type_specifier_repeat1, - [158481] = 4, + [158959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(6947), 1, + ACTIONS(6828), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158494] = 4, + STATE(4607), 1, + aux_sym_const_declaration_repeat1, + [158972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(1345), 1, anon_sym_RPAREN, - ACTIONS(6949), 1, + ACTIONS(6830), 1, anon_sym_COMMA, - STATE(4875), 1, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [158985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COMMA, + ACTIONS(6834), 1, + anon_sym_RPAREN, + STATE(4546), 1, aux_sym_tuple_type_specifier_repeat1, - [158507] = 3, + [158998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, - anon_sym_else, - ACTIONS(2355), 2, - anon_sym_elseif, - anon_sym_while, - [158518] = 3, + ACTIONS(6836), 1, + anon_sym_COMMA, + ACTIONS(6838), 1, + anon_sym_RPAREN, + STATE(4671), 1, + aux_sym_shape_type_specifier_repeat1, + [159011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_else, - ACTIONS(2359), 2, - anon_sym_elseif, - anon_sym_while, - [158529] = 3, + ACTIONS(1345), 1, + anon_sym_RPAREN, + ACTIONS(6830), 1, + anon_sym_COMMA, + STATE(4672), 1, + aux_sym_shape_type_specifier_repeat1, + [159024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_else, - ACTIONS(2367), 2, - anon_sym_elseif, - anon_sym_while, - [158540] = 2, + ACTIONS(4994), 1, + anon_sym_RPAREN, + ACTIONS(6840), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [159037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6207), 3, - anon_sym_RBRACE, + ACTIONS(4898), 1, + anon_sym_RPAREN, + ACTIONS(6145), 1, + anon_sym_COMMA, + STATE(4622), 1, + aux_sym_function_type_specifier_repeat1, + [159050] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, anon_sym_SEMI, + ACTIONS(6842), 1, anon_sym_COMMA, - [158549] = 3, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [159063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2371), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158560] = 4, + [159074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - ACTIONS(6951), 1, + ACTIONS(6155), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [158573] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [159087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_RPAREN, - ACTIONS(6949), 1, + ACTIONS(5516), 1, + anon_sym_RBRACE, + ACTIONS(6844), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [158586] = 4, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [159100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3784), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158599] = 3, + ACTIONS(6155), 1, + anon_sym_COMMA, + STATE(4628), 1, + aux_sym_function_type_specifier_repeat1, + [159113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2379), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158610] = 3, + [159124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2383), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158621] = 4, + [159135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6953), 1, + ACTIONS(6846), 1, anon_sym_SEMI, - STATE(1079), 1, + STATE(1105), 1, sym_compound_statement, - [158634] = 4, + [159148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6955), 1, - anon_sym_RBRACE, - ACTIONS(6957), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4882), 1, - aux_sym_use_statement_repeat1, - [158647] = 3, + ACTIONS(6848), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [159161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2387), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158658] = 3, + [159172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2391), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158669] = 3, + [159183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2395), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6959), 1, - anon_sym_COLON, - STATE(5772), 1, - sym_capability_list, - [158693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6961), 1, - anon_sym_COLON, - STATE(5770), 1, - sym_capability_list, - [158706] = 4, + [159194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_COLON, - STATE(5768), 1, - sym_capability_list, - [158719] = 4, + ACTIONS(5905), 1, + anon_sym_GT_GT, + ACTIONS(6850), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [159207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5905), 1, + anon_sym_GT_GT, + ACTIONS(6850), 1, anon_sym_COMMA, - ACTIONS(6965), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158732] = 3, + STATE(4616), 1, + aux_sym_module_attribute_repeat1, + [159220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2051), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158743] = 4, + [159231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6967), 1, - anon_sym_COLON, - STATE(5766), 1, - sym_capability_list, - [158756] = 4, + 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(5666), 1, - anon_sym_LBRACK, - ACTIONS(6969), 1, - anon_sym_COLON, - STATE(5765), 1, - sym_capability_list, - [158769] = 2, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(6854), 1, + anon_sym_SEMI, + STATE(4629), 1, + aux_sym_const_declaration_repeat1, + [159257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(6856), 1, anon_sym_COMMA, - [158778] = 4, + ACTIONS(6858), 1, + anon_sym_SEMI, + STATE(4638), 1, + aux_sym_use_statement_repeat1, + [159270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_COLON, - STATE(5763), 1, - sym_capability_list, - [158791] = 4, + ACTIONS(2529), 1, + anon_sym_else, + ACTIONS(2531), 2, + anon_sym_elseif, + anon_sym_while, + [159281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(6975), 1, - anon_sym_COLON, - STATE(5759), 1, - sym_capability_list, - [158804] = 4, + ACTIONS(2529), 1, + anon_sym_else, + ACTIONS(2531), 2, + anon_sym_elseif, + anon_sym_while, + [159292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(1502), 1, + anon_sym_RBRACE, + ACTIONS(6860), 1, anon_sym_COMMA, - ACTIONS(6977), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [158817] = 4, + STATE(4404), 1, + aux_sym_array_repeat1, + [159305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_SEMI, - ACTIONS(6981), 1, + ACTIONS(6862), 1, anon_sym_COMMA, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [158830] = 3, + ACTIONS(6865), 1, + anon_sym_RBRACK, + STATE(4659), 1, + aux_sym_capability_list_repeat1, + [159318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2411), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158841] = 3, + [159329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 1, + 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(2415), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158852] = 3, + [159353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2419), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158863] = 3, + [159364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(6869), 1, + anon_sym_SEMI, + STATE(4791), 1, + sym_compound_statement, + [159377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2423), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158874] = 4, + [159388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(2529), 1, + anon_sym_else, + ACTIONS(2531), 2, + anon_sym_elseif, + anon_sym_while, + [159399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5909), 1, + anon_sym_GT_GT, + ACTIONS(6871), 1, anon_sym_COMMA, - ACTIONS(6984), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158887] = 4, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [159412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6873), 3, anon_sym_COMMA, - ACTIONS(6986), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158900] = 3, + [159421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1313), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [159460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(6879), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [159473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 1, + anon_sym_RPAREN, + ACTIONS(6881), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [159486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2427), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158911] = 4, + [159497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(4934), 1, + anon_sym_RPAREN, + ACTIONS(6883), 1, anon_sym_COMMA, - ACTIONS(6988), 1, - anon_sym_SEMI, STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [158924] = 4, + aux_sym_function_type_specifier_repeat1, + [159510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_LBRACE, - ACTIONS(6990), 1, - anon_sym_SEMI, - STATE(861), 1, - sym_compound_statement, - [158937] = 4, + ACTIONS(1461), 1, + anon_sym_RPAREN, + ACTIONS(6885), 1, + anon_sym_COMMA, + STATE(4860), 1, + aux_sym_shape_type_specifier_repeat1, + [159523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6889), 1, + anon_sym_EQ, + ACTIONS(6887), 2, anon_sym_COMMA, - ACTIONS(6992), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [158950] = 4, + [159534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_SEMI, - STATE(763), 1, - sym_compound_statement, - [158963] = 3, + 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(2545), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6891), 1, + sym_variable, + STATE(6076), 1, + sym_variadic_modifier, + [159560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2547), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158974] = 3, + [159571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [159584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2439), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158985] = 3, + [159595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(6895), 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, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2443), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [158996] = 3, + [159643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(4944), 1, + anon_sym_RPAREN, + ACTIONS(6183), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [159656] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, + anon_sym_RPAREN, + ACTIONS(6183), 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(2447), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [159007] = 3, + [159680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2451), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [159018] = 3, + [159691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2453), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2455), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [159029] = 4, + [159702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, - anon_sym_SEMI, - ACTIONS(6998), 1, - anon_sym_COMMA, - STATE(4705), 1, - aux_sym_use_statement_repeat1, - [159042] = 4, + ACTIONS(2529), 1, + anon_sym_else, + ACTIONS(2531), 2, + anon_sym_elseif, + anon_sym_while, + [159713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - ACTIONS(7000), 1, - anon_sym_SEMI, - STATE(4709), 1, - aux_sym_const_declaration_repeat1, - [159055] = 3, + ACTIONS(2565), 1, + anon_sym_else, + ACTIONS(2567), 2, + anon_sym_elseif, + anon_sym_while, + [159724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2459), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [159066] = 4, + [159735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 1, - anon_sym_RPAREN, - ACTIONS(7002), 1, - anon_sym_COMMA, - STATE(4894), 1, - aux_sym_arguments_repeat1, - [159079] = 3, + ACTIONS(2529), 1, + anon_sym_else, + ACTIONS(2531), 2, + anon_sym_elseif, + anon_sym_while, + [159746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2463), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [159090] = 3, + [159757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(2461), 1, anon_sym_else, - ACTIONS(2471), 2, + ACTIONS(2463), 2, anon_sym_elseif, anon_sym_while, - [159101] = 3, + [159768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2457), 1, anon_sym_else, - ACTIONS(2475), 2, + ACTIONS(2459), 2, anon_sym_elseif, anon_sym_while, - [159112] = 3, + [159779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2337), 1, anon_sym_else, - ACTIONS(2479), 2, + ACTIONS(2339), 2, anon_sym_elseif, anon_sym_while, - [159123] = 4, + [159790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [159803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(7004), 1, + ACTIONS(6899), 1, anon_sym_SEMI, - STATE(722), 1, + STATE(1145), 1, sym_compound_statement, - [159136] = 3, + [159816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2373), 1, anon_sym_else, - ACTIONS(2487), 2, + ACTIONS(2375), 2, anon_sym_elseif, anon_sym_while, - [159147] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(7006), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [159160] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - anon_sym_GT, - ACTIONS(7008), 1, - anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [159173] = 4, + [159827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_RBRACK, - ACTIONS(3650), 1, - anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - [159186] = 3, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(6901), 1, + sym_identifier, + STATE(3780), 1, + sym_parameters, + [159840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2361), 1, anon_sym_else, - ACTIONS(2495), 2, + ACTIONS(2363), 2, anon_sym_elseif, anon_sym_while, - [159197] = 4, + [159851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, - anon_sym_SEMI, - ACTIONS(7010), 1, + ACTIONS(6905), 1, + anon_sym_EQ, + ACTIONS(6903), 2, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [159210] = 3, + anon_sym_RPAREN, + [159862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2345), 1, anon_sym_else, - ACTIONS(2499), 2, + ACTIONS(2347), 2, anon_sym_elseif, anon_sym_while, - [159221] = 4, + [159873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7012), 1, - anon_sym_COMMA, - ACTIONS(7014), 1, + ACTIONS(4926), 1, anon_sym_RPAREN, - STATE(4733), 1, - aux_sym_tuple_type_specifier_repeat1, - [159234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, + ACTIONS(6907), 1, anon_sym_COMMA, - ACTIONS(7016), 1, - anon_sym_SEMI, - STATE(4737), 1, - aux_sym_const_declaration_repeat1, - [159247] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [159886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7018), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [159260] = 3, + ACTIONS(3928), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [159899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2305), 1, anon_sym_else, - ACTIONS(2503), 2, + ACTIONS(2307), 2, anon_sym_elseif, anon_sym_while, - [159271] = 4, + [159910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7020), 1, - anon_sym_COLON, - STATE(5702), 1, - sym_capability_list, - [159284] = 4, + ACTIONS(4924), 1, + anon_sym_RPAREN, + ACTIONS(6909), 1, + anon_sym_COMMA, + STATE(4707), 1, + aux_sym_function_type_specifier_repeat1, + [159923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7022), 1, - anon_sym_COLON, - STATE(5700), 1, - sym_capability_list, - [159297] = 4, + 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, ACTIONS(3), 1, sym_comment, - ACTIONS(7024), 1, + ACTIONS(4924), 1, + anon_sym_RPAREN, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7026), 1, - anon_sym_GT, - STATE(4743), 1, - aux_sym_tuple_type_specifier_repeat1, - [159310] = 3, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [159962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(1459), 1, + anon_sym_RPAREN, + ACTIONS(6911), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [159975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2175), 2, anon_sym_elseif, anon_sym_while, - [159321] = 3, + [159986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2509), 1, + ACTIONS(2157), 1, anon_sym_else, - ACTIONS(2511), 2, + ACTIONS(2159), 2, anon_sym_elseif, anon_sym_while, - [159332] = 4, + [159997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7028), 1, - anon_sym_COLON, - STATE(5698), 1, - sym_capability_list, - [159345] = 4, + ACTIONS(4922), 1, + anon_sym_RPAREN, + ACTIONS(6195), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [160010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7030), 1, - anon_sym_COLON, - STATE(5696), 1, - sym_capability_list, - [159358] = 3, + ACTIONS(4922), 1, + anon_sym_RPAREN, + ACTIONS(6195), 1, + anon_sym_COMMA, + STATE(4713), 1, + aux_sym_function_type_specifier_repeat1, + [160023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 1, + 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, anon_sym_else, - ACTIONS(2515), 2, + ACTIONS(2147), 2, anon_sym_elseif, anon_sym_while, - [159369] = 4, + [160045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7032), 1, - anon_sym_COLON, - STATE(5695), 1, - sym_capability_list, - [159382] = 4, + ACTIONS(4920), 1, + anon_sym_RPAREN, + ACTIONS(6197), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [160058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_RBRACK, - ACTIONS(3650), 1, + ACTIONS(1795), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4901), 1, - aux_sym_array_repeat1, - [159395] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [160071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 1, + ACTIONS(4920), 1, + anon_sym_RPAREN, + ACTIONS(6197), 1, + anon_sym_COMMA, + STATE(4717), 1, + aux_sym_function_type_specifier_repeat1, + [160084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, anon_sym_else, - ACTIONS(2519), 2, + ACTIONS(2331), 2, anon_sym_elseif, anon_sym_while, - [159406] = 4, + [160095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_COLON, - STATE(5693), 1, - sym_capability_list, - [159419] = 3, + ACTIONS(2605), 1, + anon_sym_else, + ACTIONS(2607), 2, + anon_sym_elseif, + anon_sym_while, + [160106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2537), 1, anon_sym_else, - ACTIONS(2523), 2, + ACTIONS(2539), 2, anon_sym_elseif, anon_sym_while, - [159430] = 4, + [160117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7036), 1, - anon_sym_LBRACE, - ACTIONS(7038), 1, - sym_string, - STATE(4120), 1, - sym_braced_expression, - [159443] = 3, + ACTIONS(2501), 1, + anon_sym_else, + ACTIONS(2503), 2, + anon_sym_elseif, + anon_sym_while, + [160128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, + ACTIONS(2449), 1, anon_sym_else, - ACTIONS(2527), 2, + ACTIONS(2451), 2, anon_sym_elseif, anon_sym_while, - [159454] = 3, + [160139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2309), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2311), 2, anon_sym_elseif, anon_sym_while, - [159465] = 3, + [160150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2269), 1, anon_sym_else, - ACTIONS(2539), 2, + ACTIONS(2271), 2, anon_sym_elseif, anon_sym_while, - [159476] = 4, + [160161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(7040), 1, - anon_sym_SEMI, - STATE(1085), 1, - sym_compound_statement, - [159489] = 4, + ACTIONS(2253), 1, + anon_sym_else, + ACTIONS(2255), 2, + anon_sym_elseif, + anon_sym_while, + [160172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - anon_sym_COMMA, - ACTIONS(7044), 1, - anon_sym_RPAREN, - STATE(4745), 1, - aux_sym_list_expression_repeat1, - [159502] = 4, + ACTIONS(2217), 1, + anon_sym_else, + ACTIONS(2219), 2, + anon_sym_elseif, + anon_sym_while, + [160183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7046), 1, - anon_sym_COMMA, - ACTIONS(7048), 1, - anon_sym_RPAREN, - STATE(4766), 1, - aux_sym_shape_type_specifier_repeat1, - [159515] = 4, + ACTIONS(2613), 1, + anon_sym_else, + ACTIONS(2615), 2, + anon_sym_elseif, + anon_sym_while, + [160194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 1, + ACTIONS(3552), 1, anon_sym_RPAREN, - ACTIONS(7050), 1, + ACTIONS(6917), 1, anon_sym_COMMA, - STATE(4768), 1, - aux_sym_shape_type_specifier_repeat1, - [159528] = 3, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [160207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 1, + ACTIONS(2581), 1, anon_sym_else, - ACTIONS(2543), 2, + ACTIONS(2583), 2, anon_sym_elseif, anon_sym_while, - [159539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4912), 1, - anon_sym_RPAREN, - ACTIONS(7052), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [159552] = 3, + [160218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2141), 1, anon_sym_else, - ACTIONS(2555), 2, + ACTIONS(2143), 2, anon_sym_elseif, anon_sym_while, - [159563] = 4, + [160229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_RPAREN, - ACTIONS(7052), 1, - anon_sym_COMMA, - STATE(4772), 1, - aux_sym_tuple_type_specifier_repeat1, - [159576] = 3, + ACTIONS(2593), 1, + anon_sym_else, + ACTIONS(2595), 2, + anon_sym_elseif, + anon_sym_while, + [160240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(2585), 1, anon_sym_else, - ACTIONS(2311), 2, + ACTIONS(2587), 2, anon_sym_elseif, anon_sym_while, - [159587] = 4, + [160251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(1667), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7054), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [159600] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [160264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 1, + ACTIONS(2133), 1, anon_sym_else, - ACTIONS(2247), 2, + ACTIONS(2135), 2, anon_sym_elseif, anon_sym_while, - [159611] = 4, + [160275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7056), 1, - anon_sym_COLON, - STATE(5689), 1, - sym_capability_list, - [159624] = 3, + 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(2297), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(6920), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [160301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, anon_sym_else, - ACTIONS(2299), 2, + ACTIONS(2151), 2, anon_sym_elseif, anon_sym_while, - [159635] = 3, + [160312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2161), 1, anon_sym_else, - ACTIONS(2235), 2, + ACTIONS(2163), 2, anon_sym_elseif, anon_sym_while, - [159646] = 3, + [160323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 1, + ACTIONS(2165), 1, anon_sym_else, - ACTIONS(2239), 2, + ACTIONS(2167), 2, anon_sym_elseif, anon_sym_while, - [159657] = 4, + [160334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, - anon_sym_GT, - ACTIONS(7058), 1, - anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [159670] = 3, + ACTIONS(2041), 1, + anon_sym_else, + ACTIONS(2043), 2, + anon_sym_elseif, + anon_sym_while, + [160345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2609), 1, anon_sym_else, - ACTIONS(2251), 2, + ACTIONS(2611), 2, anon_sym_elseif, anon_sym_while, - [159681] = 4, + [160356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 1, - anon_sym_RPAREN, - ACTIONS(7060), 1, - anon_sym_COMMA, - STATE(4745), 1, - aux_sym_list_expression_repeat1, - [159694] = 4, + ACTIONS(863), 1, + anon_sym_LBRACE, + ACTIONS(6922), 1, + anon_sym_SEMI, + STATE(1254), 1, + sym_compound_statement, + [160369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 1, - anon_sym_GT_GT, - ACTIONS(7063), 1, + ACTIONS(4874), 1, + anon_sym_RPAREN, + ACTIONS(6924), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [159707] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [160382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6173), 1, - anon_sym_GT_GT, - ACTIONS(7065), 1, - anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [159720] = 3, + ACTIONS(2601), 1, + anon_sym_else, + ACTIONS(2603), 2, + anon_sym_elseif, + anon_sym_while, + [160393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7070), 1, - anon_sym_EQ, - ACTIONS(7068), 2, - anon_sym_SEMI, + ACTIONS(4872), 1, + anon_sym_RPAREN, + ACTIONS(6926), 1, anon_sym_COMMA, - [159731] = 4, + STATE(4749), 1, + aux_sym_function_type_specifier_repeat1, + [160406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(4872), 1, + anon_sym_RPAREN, + ACTIONS(6926), 1, anon_sym_COMMA, - ACTIONS(7072), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [159744] = 3, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [160419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2589), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2591), 2, anon_sym_elseif, anon_sym_while, - [159755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(7074), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [159768] = 3, + [160430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2393), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2395), 2, anon_sym_elseif, anon_sym_while, - [159779] = 4, + [160441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - ACTIONS(7076), 1, + ACTIONS(6247), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [159792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [159803] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [160454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - ACTIONS(7078), 1, + ACTIONS(6247), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [159816] = 3, + STATE(4752), 1, + aux_sym_function_type_specifier_repeat1, + [160467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2441), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2443), 2, anon_sym_elseif, anon_sym_while, - [159827] = 3, + [160478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [159838] = 4, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3948), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [160491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7080), 1, - anon_sym_LBRACE, - ACTIONS(7082), 1, - anon_sym_SEMI, - STATE(2792), 1, - sym_compound_statement, - [159851] = 4, + ACTIONS(4868), 1, + anon_sym_RPAREN, + ACTIONS(6249), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [160504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5859), 1, - anon_sym_GT_GT, - ACTIONS(7084), 1, + ACTIONS(4868), 1, + anon_sym_RPAREN, + ACTIONS(6249), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [159864] = 3, + STATE(4755), 1, + aux_sym_function_type_specifier_repeat1, + [160517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(2097), 1, anon_sym_else, - ACTIONS(2075), 2, + ACTIONS(2099), 2, anon_sym_elseif, anon_sym_while, - [159875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7086), 1, - anon_sym_SEMI, - ACTIONS(7088), 1, - anon_sym_COMMA, - STATE(4955), 1, - aux_sym_property_declaration_repeat1, - [159888] = 2, + [160528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 3, - anon_sym_as, - anon_sym_super, - anon_sym_EQ, - [159897] = 4, + ACTIONS(2445), 1, + anon_sym_else, + ACTIONS(2447), 2, + anon_sym_elseif, + anon_sym_while, + [160539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 1, + ACTIONS(1821), 1, anon_sym_RPAREN, - ACTIONS(7092), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4599), 1, - aux_sym_shape_type_specifier_repeat1, - [159910] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [160552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7094), 1, + ACTIONS(6928), 1, anon_sym_COMMA, - ACTIONS(7096), 1, - anon_sym_RPAREN, - STATE(4603), 1, - aux_sym_shape_type_specifier_repeat1, - [159923] = 3, + ACTIONS(6931), 1, + anon_sym_GT, + STATE(4764), 1, + aux_sym_type_parameters_repeat1, + [160565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2105), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2107), 2, anon_sym_elseif, anon_sym_while, - [159934] = 4, + [160576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_RPAREN, - ACTIONS(7098), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [159947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, + ACTIONS(2109), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2111), 2, anon_sym_elseif, anon_sym_while, - [159958] = 4, + [160587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, + ACTIONS(1329), 1, anon_sym_RPAREN, - ACTIONS(7100), 1, + ACTIONS(6933), 1, anon_sym_COMMA, - STATE(4997), 1, + STATE(4818), 1, aux_sym_shape_type_specifier_repeat1, - [159971] = 3, + [160600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2113), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2115), 2, anon_sym_elseif, anon_sym_while, - [159982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7102), 1, - anon_sym_COMMA, - ACTIONS(7104), 1, - anon_sym_RPAREN, - STATE(4805), 1, - aux_sym_shape_type_specifier_repeat1, - [159995] = 4, + [160611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 1, - anon_sym_RPAREN, - ACTIONS(7100), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4806), 1, - aux_sym_shape_type_specifier_repeat1, - [160008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, + ACTIONS(6935), 1, anon_sym_RPAREN, - ACTIONS(7106), 1, - anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [160021] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [160624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 1, + ACTIONS(1331), 1, anon_sym_RPAREN, - ACTIONS(7092), 1, + ACTIONS(6937), 1, anon_sym_COMMA, - STATE(4997), 1, + STATE(4818), 1, aux_sym_shape_type_specifier_repeat1, - [160034] = 3, + [160637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2117), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2119), 2, anon_sym_elseif, anon_sym_while, - [160045] = 3, + [160648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2125), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2127), 2, anon_sym_elseif, anon_sym_while, - [160056] = 3, + [160659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2129), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2131), 2, anon_sym_elseif, anon_sym_while, - [160067] = 3, + [160670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2035), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2037), 2, anon_sym_elseif, anon_sym_while, - [160078] = 3, + [160681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2169), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2171), 2, anon_sym_elseif, anon_sym_while, - [160089] = 3, + [160692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2177), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2179), 2, anon_sym_elseif, anon_sym_while, - [160100] = 3, + [160703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2185), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2187), 2, anon_sym_elseif, anon_sym_while, - [160111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_LBRACE, - ACTIONS(7108), 1, - anon_sym_SEMI, - STATE(767), 1, - sym_compound_statement, - [160124] = 3, + [160714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [160135] = 4, + ACTIONS(5935), 1, + anon_sym_GT_GT, + ACTIONS(6939), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [160727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 1, - anon_sym_RPAREN, - ACTIONS(7110), 1, + ACTIONS(5935), 1, + anon_sym_GT_GT, + ACTIONS(6939), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [160148] = 4, + STATE(4921), 1, + aux_sym_module_attribute_repeat1, + [160740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(5933), 1, + anon_sym_GT_GT, + ACTIONS(6941), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160161] = 3, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [160753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7114), 1, - sym_xhp_class_identifier, - ACTIONS(7112), 2, - sym_identifier, - sym_xhp_identifier, - [160172] = 4, + ACTIONS(6943), 1, + anon_sym_COMMA, + ACTIONS(6946), 1, + anon_sym_RPAREN, + STATE(4781), 1, + aux_sym_shape_repeat1, + [160766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, - anon_sym_GT, - ACTIONS(7116), 1, - anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [160185] = 4, + ACTIONS(2189), 1, + anon_sym_else, + ACTIONS(2191), 2, + anon_sym_elseif, + anon_sym_while, + [160777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, - anon_sym_RBRACE, - ACTIONS(7118), 1, - anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - [160198] = 4, + ACTIONS(2353), 1, + anon_sym_else, + ACTIONS(2355), 2, + anon_sym_elseif, + anon_sym_while, + [160788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(7120), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160211] = 3, + ACTIONS(2381), 1, + anon_sym_else, + ACTIONS(2383), 2, + anon_sym_elseif, + anon_sym_while, + [160799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2417), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2419), 2, anon_sym_elseif, anon_sym_while, - [160222] = 4, + [160810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6838), 1, - anon_sym_COMMA, - ACTIONS(7122), 1, - anon_sym_RBRACK, - STATE(4971), 1, - aux_sym_capability_list_repeat1, - [160235] = 3, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(6948), 1, + anon_sym_SEMI, + STATE(825), 1, + sym_compound_statement, + [160823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2429), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2431), 2, anon_sym_elseif, anon_sym_while, - [160246] = 4, + [160834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3874), 1, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(6950), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160259] = 3, + STATE(811), 1, + sym_compound_statement, + [160847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2401), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2403), 2, anon_sym_elseif, anon_sym_while, - [160270] = 4, + [160858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160283] = 3, + ACTIONS(2101), 1, + anon_sym_else, + ACTIONS(2103), 2, + anon_sym_elseif, + anon_sym_while, + [160869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2453), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2455), 2, anon_sym_elseif, anon_sym_while, - [160294] = 4, + [160880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - ACTIONS(7124), 1, - anon_sym_SEMI, - STATE(1205), 1, - sym_compound_statement, - [160307] = 4, + ACTIONS(2469), 1, + anon_sym_else, + ACTIONS(2471), 2, + anon_sym_elseif, + anon_sym_while, + [160891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7126), 1, + ACTIONS(6952), 1, anon_sym_SEMI, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [160320] = 4, + [160904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 1, + ACTIONS(5670), 1, anon_sym_GT, - ACTIONS(7128), 1, + ACTIONS(6954), 1, anon_sym_COMMA, - STATE(4989), 1, + STATE(4764), 1, aux_sym_type_parameters_repeat1, - [160333] = 4, + [160917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7130), 1, + ACTIONS(6956), 1, anon_sym_COMMA, - ACTIONS(7132), 1, - anon_sym_GT, - STATE(4786), 1, + ACTIONS(6958), 1, + anon_sym_SEMI, + STATE(4809), 1, + aux_sym_use_statement_repeat1, + [160930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(6960), 1, + anon_sym_SEMI, + STATE(4813), 1, + aux_sym_const_declaration_repeat1, + [160943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6964), 1, + sym_xhp_class_identifier, + ACTIONS(6962), 2, + sym_identifier, + sym_xhp_identifier, + [160954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6966), 1, + anon_sym_COLON, + STATE(6104), 1, + sym_capability_list, + [160967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_RPAREN, + ACTIONS(6968), 1, + anon_sym_COMMA, + STATE(3798), 1, aux_sym_tuple_type_specifier_repeat1, - [160346] = 3, + [160980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [160357] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(6102), 1, + sym_capability_list, + [160993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7134), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6972), 1, + anon_sym_COLON, + STATE(6100), 1, + sym_capability_list, + [161006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6974), 1, + anon_sym_COLON, + STATE(6098), 1, + sym_capability_list, + [161019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, anon_sym_LBRACE, - STATE(5661), 1, - sym_extends_clause, - [160370] = 3, + ACTIONS(6976), 1, + anon_sym_SEMI, + STATE(728), 1, + sym_compound_statement, + [161032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [160381] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6978), 1, + anon_sym_COLON, + STATE(6097), 1, + sym_capability_list, + [161045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [160392] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(6980), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [161058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2477), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2479), 2, anon_sym_elseif, anon_sym_while, - [160403] = 4, + [161069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1349), 1, - anon_sym_RPAREN, - ACTIONS(7136), 1, - anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [160416] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6982), 1, + anon_sym_COLON, + STATE(6095), 1, + sym_capability_list, + [161082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 1, - anon_sym_RPAREN, - ACTIONS(7138), 1, + ACTIONS(863), 1, + anon_sym_LBRACE, + ACTIONS(6984), 1, + anon_sym_SEMI, + STATE(1288), 1, + sym_compound_statement, + [161095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, + anon_sym_SEMI, + ACTIONS(6986), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [160429] = 3, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [161108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2505), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2507), 2, anon_sym_elseif, anon_sym_while, - [160440] = 4, + [161119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6988), 1, anon_sym_COMMA, - ACTIONS(3846), 1, + ACTIONS(6990), 1, + anon_sym_RPAREN, + STATE(4838), 1, + aux_sym_tuple_type_specifier_repeat1, + [161132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(6992), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160453] = 3, + STATE(4842), 1, + aux_sym_const_declaration_repeat1, + [161145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_else, - ACTIONS(2211), 2, - anon_sym_elseif, - anon_sym_while, - [160464] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(6994), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [161158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2513), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2515), 2, anon_sym_elseif, anon_sym_while, - [160475] = 3, + [161169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2517), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2519), 2, anon_sym_elseif, anon_sym_while, - [160486] = 3, + [161180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, - anon_sym_else, - ACTIONS(2219), 2, - anon_sym_elseif, - anon_sym_while, - [160497] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_COLON, + STATE(6091), 1, + sym_capability_list, + [161193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(7000), 1, + anon_sym_GT, + STATE(4848), 1, + aux_sym_tuple_type_specifier_repeat1, + [161206] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_COMMA, + ACTIONS(7005), 1, + anon_sym_RPAREN, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [161219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2533), 1, anon_sym_else, - ACTIONS(2215), 2, + ACTIONS(2535), 2, anon_sym_elseif, anon_sym_while, - [160508] = 3, + [161230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2549), 1, anon_sym_else, - ACTIONS(2339), 2, + ACTIONS(2551), 2, anon_sym_elseif, anon_sym_while, - [160519] = 4, + [161241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7007), 1, + anon_sym_COLON, + STATE(6451), 1, + sym_capability_list, + [161254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_EQ, + ACTIONS(7009), 2, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160532] = 3, + anon_sym_RPAREN, + [161265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2561), 1, anon_sym_else, - ACTIONS(2207), 2, + ACTIONS(2563), 2, anon_sym_elseif, anon_sym_while, - [160543] = 3, + [161276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 1, + ACTIONS(2365), 1, anon_sym_else, - ACTIONS(2203), 2, + ACTIONS(2367), 2, anon_sym_elseif, anon_sym_while, - [160554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(7140), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [160567] = 4, + [161287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(5024), 1, anon_sym_RPAREN, - ACTIONS(7142), 1, + ACTIONS(7013), 1, anon_sym_COMMA, - STATE(4621), 1, + STATE(3798), 1, aux_sym_tuple_type_specifier_repeat1, - [160580] = 3, + [161300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2597), 1, anon_sym_else, - ACTIONS(2199), 2, + ACTIONS(2599), 2, anon_sym_elseif, anon_sym_while, - [160591] = 4, + [161311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(7015), 1, anon_sym_COMMA, - ACTIONS(7144), 1, + STATE(4767), 1, + aux_sym_shape_type_specifier_repeat1, + [161324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7017), 1, + anon_sym_COMMA, + ACTIONS(7019), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160604] = 3, + STATE(4770), 1, + aux_sym_shape_type_specifier_repeat1, + [161337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 1, - sym_xhp_class_identifier, - ACTIONS(7146), 2, - sym_identifier, - sym_xhp_identifier, - [160615] = 4, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(7015), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [161350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7150), 1, + ACTIONS(7023), 1, + anon_sym_EQ, + ACTIONS(7021), 2, anon_sym_COMMA, - ACTIONS(7153), 1, anon_sym_RPAREN, - STATE(4823), 1, - aux_sym_shape_repeat1, - [160628] = 3, + [161361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_else, - ACTIONS(2195), 2, - anon_sym_elseif, - anon_sym_while, - [160639] = 4, + ACTIONS(1389), 1, + anon_sym_RPAREN, + ACTIONS(7025), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [161374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, - anon_sym_RPAREN, - ACTIONS(7142), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [160652] = 3, + ACTIONS(7027), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [161387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 1, + ACTIONS(2057), 1, anon_sym_else, - ACTIONS(2191), 2, + ACTIONS(2059), 2, anon_sym_elseif, anon_sym_while, - [160663] = 4, + [161398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7155), 1, - anon_sym_LBRACE, - STATE(5676), 1, - sym_extends_clause, - [160676] = 3, + ACTIONS(7029), 1, + anon_sym_COMMA, + ACTIONS(7032), 1, + anon_sym_SEMI, + STATE(4834), 1, + aux_sym_trait_select_clause_repeat1, + [161411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, - anon_sym_else, - ACTIONS(2187), 2, - anon_sym_elseif, - anon_sym_while, - [160687] = 4, + ACTIONS(7034), 1, + anon_sym_COMMA, + ACTIONS(7036), 1, + anon_sym_RPAREN, + STATE(4874), 1, + aux_sym_shape_type_specifier_repeat1, + [161424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1397), 1, + ACTIONS(1415), 1, anon_sym_RPAREN, - ACTIONS(7157), 1, + ACTIONS(7038), 1, anon_sym_COMMA, - STATE(4644), 1, + STATE(4876), 1, aux_sym_shape_type_specifier_repeat1, - [160700] = 4, + [161437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7040), 1, + anon_sym_COLON, + STATE(6051), 1, + sym_capability_list, + [161450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(7042), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160713] = 4, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [161463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, - anon_sym_RBRACE, - ACTIONS(7159), 1, + ACTIONS(5951), 1, + anon_sym_GT_GT, + ACTIONS(7044), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [160726] = 4, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [161476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(7161), 1, + ACTIONS(7042), 1, anon_sym_COMMA, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [160739] = 4, + STATE(4880), 1, + aux_sym_tuple_type_specifier_repeat1, + [161489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7164), 1, + ACTIONS(5951), 1, + anon_sym_GT_GT, + ACTIONS(7044), 1, anon_sym_COMMA, - ACTIONS(7166), 1, - anon_sym_RPAREN, - STATE(4652), 1, - aux_sym_shape_type_specifier_repeat1, - [160752] = 3, + STATE(4780), 1, + aux_sym_module_attribute_repeat1, + [161502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_else, - ACTIONS(2183), 2, - anon_sym_elseif, - anon_sym_while, - [160763] = 4, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7046), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [161515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_LBRACE, - ACTIONS(7168), 1, - anon_sym_SEMI, - STATE(857), 1, - sym_compound_statement, - [160776] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7048), 1, + anon_sym_COLON, + STATE(6049), 1, + sym_capability_list, + [161528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, - anon_sym_RBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_use_statement_repeat1, - [160789] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7050), 1, + anon_sym_COLON, + STATE(6047), 1, + sym_capability_list, + [161541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, - anon_sym_else, - ACTIONS(2179), 2, - anon_sym_elseif, - anon_sym_while, - [160800] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7052), 1, + anon_sym_COLON, + STATE(6045), 1, + sym_capability_list, + [161554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - anon_sym_else, - ACTIONS(2175), 2, - anon_sym_elseif, - anon_sym_while, - [160811] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7054), 1, + anon_sym_COLON, + STATE(6044), 1, + sym_capability_list, + [161567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, - anon_sym_RPAREN, - ACTIONS(7170), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7056), 1, + anon_sym_COLON, + STATE(6042), 1, + sym_capability_list, + [161580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + anon_sym_GT, + ACTIONS(7058), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [160824] = 3, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [161593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_else, - ACTIONS(2171), 2, - anon_sym_elseif, - anon_sym_while, - [160835] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7060), 1, + anon_sym_COLON, + STATE(6038), 1, + sym_capability_list, + [161606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - anon_sym_else, - ACTIONS(2167), 2, - anon_sym_elseif, - anon_sym_while, - [160846] = 3, + ACTIONS(7062), 1, + anon_sym_COMMA, + ACTIONS(7064), 1, + anon_sym_SEMI, + STATE(4834), 1, + aux_sym_trait_select_clause_repeat1, + [161619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_else, - ACTIONS(2163), 2, - anon_sym_elseif, - anon_sym_while, - [160857] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7066), 1, + anon_sym_COLON, + STATE(6054), 1, + sym_capability_list, + [161632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_else, - ACTIONS(2159), 2, - anon_sym_elseif, - anon_sym_while, - [160868] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7068), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [161645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, - anon_sym_else, - ACTIONS(2155), 2, - anon_sym_elseif, - anon_sym_while, - [160879] = 4, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(7070), 1, + anon_sym_SEMI, + STATE(1541), 1, + sym_compound_statement, + [161658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(7062), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160892] = 3, + ACTIONS(7072), 1, + anon_sym_SEMI, + STATE(4850), 1, + aux_sym_trait_select_clause_repeat1, + [161671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, - anon_sym_else, - ACTIONS(2151), 2, - anon_sym_elseif, - anon_sym_while, - [160903] = 3, + ACTIONS(7076), 1, + anon_sym_EQ, + ACTIONS(7074), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - anon_sym_else, - ACTIONS(2147), 2, - anon_sym_elseif, - anon_sym_while, - [160914] = 4, + 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(1367), 1, + ACTIONS(1273), 1, anon_sym_RPAREN, - ACTIONS(7172), 1, + ACTIONS(7080), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [160927] = 3, + STATE(4549), 1, + aux_sym_arguments_repeat1, + [161708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7176), 1, - sym_xhp_class_identifier, - ACTIONS(7174), 2, - sym_identifier, - sym_xhp_identifier, - [160938] = 3, + 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(2141), 1, - anon_sym_else, - ACTIONS(2143), 2, - anon_sym_elseif, - anon_sym_while, - [160949] = 3, + ACTIONS(1399), 1, + anon_sym_RPAREN, + ACTIONS(7084), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [161734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, - anon_sym_else, - ACTIONS(2139), 2, - anon_sym_elseif, - anon_sym_while, - [160960] = 3, + ACTIONS(1319), 1, + anon_sym_RPAREN, + ACTIONS(7086), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [161747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_else, - ACTIONS(2135), 2, - anon_sym_elseif, - anon_sym_while, - [160971] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_COLON, + STATE(5998), 1, + sym_capability_list, + [161760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(7178), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [160984] = 3, + ACTIONS(7090), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [161773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7182), 1, - anon_sym_EQ, - ACTIONS(7180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160995] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7092), 1, + anon_sym_COLON, + STATE(5996), 1, + sym_capability_list, + [161786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_EQ, - ACTIONS(7184), 2, - anon_sym_COMMA, + ACTIONS(4988), 1, anon_sym_RPAREN, - [161006] = 4, + ACTIONS(6968), 1, + anon_sym_COMMA, + STATE(4825), 1, + aux_sym_tuple_type_specifier_repeat1, + [161799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7188), 1, - anon_sym_RBRACE, - ACTIONS(7190), 1, + ACTIONS(7094), 1, anon_sym_COMMA, - STATE(4831), 1, + ACTIONS(7096), 1, + anon_sym_SEMI, + STATE(4905), 1, aux_sym_use_statement_repeat1, - [161019] = 3, + [161812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_else, - ACTIONS(2131), 2, - anon_sym_elseif, - anon_sym_while, - [161030] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7098), 1, + anon_sym_COLON, + STATE(5994), 1, + sym_capability_list, + [161825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_COMMA, - ACTIONS(7192), 1, + ACTIONS(1403), 1, anon_sym_RPAREN, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [161043] = 3, + ACTIONS(7100), 1, + anon_sym_COMMA, + STATE(4829), 1, + aux_sym_shape_type_specifier_repeat1, + [161838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7196), 1, - anon_sym_EQ, - ACTIONS(7194), 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7102), 1, + anon_sym_COLON, + STATE(5992), 1, + sym_capability_list, + [161851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7104), 1, anon_sym_COMMA, + ACTIONS(7106), 1, anon_sym_RPAREN, - [161054] = 3, + STATE(4831), 1, + aux_sym_shape_type_specifier_repeat1, + [161864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, - anon_sym_else, - ACTIONS(2127), 2, - anon_sym_elseif, - anon_sym_while, - [161065] = 3, + ACTIONS(5961), 1, + anon_sym_GT_GT, + ACTIONS(7108), 1, + anon_sym_COMMA, + STATE(4911), 1, + aux_sym_module_attribute_repeat1, + [161877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - anon_sym_else, - ACTIONS(2123), 2, - anon_sym_elseif, - anon_sym_while, - [161076] = 3, + ACTIONS(5961), 1, + anon_sym_GT_GT, + ACTIONS(7108), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [161890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7200), 1, - sym_xhp_class_identifier, - ACTIONS(7198), 2, - sym_identifier, - sym_xhp_identifier, - [161087] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7110), 1, + anon_sym_COLON, + STATE(5991), 1, + sym_capability_list, + [161903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_else, - ACTIONS(2119), 2, - anon_sym_elseif, - anon_sym_while, - [161098] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7112), 1, + anon_sym_COLON, + STATE(5989), 1, + sym_capability_list, + [161916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, + ACTIONS(1309), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(7114), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [161111] = 4, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [161929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7202), 1, - sym_variable, - STATE(5963), 1, - sym_variadic_modifier, - [161124] = 4, + ACTIONS(5963), 1, + anon_sym_GT_GT, + ACTIONS(7116), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [161942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7204), 1, - anon_sym_COMMA, - ACTIONS(7206), 1, + ACTIONS(1397), 1, anon_sym_RPAREN, - STATE(5003), 1, + ACTIONS(7118), 1, + anon_sym_COMMA, + STATE(4818), 1, aux_sym_shape_type_specifier_repeat1, - [161137] = 3, + [161955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_else, - ACTIONS(2009), 2, - anon_sym_elseif, - anon_sym_while, - [161148] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7120), 1, + anon_sym_COLON, + STATE(5985), 1, + sym_capability_list, + [161968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1367), 1, + ACTIONS(7122), 1, + anon_sym_COMMA, + ACTIONS(7124), 1, anon_sym_RPAREN, - ACTIONS(7172), 1, + STATE(4915), 1, + aux_sym_shape_type_specifier_repeat1, + [161981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1397), 1, + anon_sym_RPAREN, + ACTIONS(7118), 1, anon_sym_COMMA, - STATE(5004), 1, + STATE(4916), 1, aux_sym_shape_type_specifier_repeat1, - [161161] = 3, + [161994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, - anon_sym_else, - ACTIONS(2115), 2, - anon_sym_elseif, - anon_sym_while, - [161172] = 3, + ACTIONS(4984), 1, + anon_sym_RPAREN, + ACTIONS(7126), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [162007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_else, - ACTIONS(2111), 2, - anon_sym_elseif, - anon_sym_while, - [161183] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7128), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_else, - ACTIONS(2107), 2, - anon_sym_elseif, - anon_sym_while, - [161194] = 4, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7130), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(7132), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [161207] = 3, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [162046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, - anon_sym_else, - ACTIONS(2103), 2, - anon_sym_elseif, - anon_sym_while, - [161218] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7134), 1, + anon_sym_COLON, + STATE(5945), 1, + sym_capability_list, + [162059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, - anon_sym_else, - ACTIONS(2099), 2, - anon_sym_elseif, - anon_sym_while, - [161229] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7136), 1, + anon_sym_COLON, + STATE(5943), 1, + sym_capability_list, + [162072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, - anon_sym_RPAREN, - ACTIONS(7208), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7138), 1, + anon_sym_COLON, + STATE(5941), 1, + sym_capability_list, + [162085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7140), 1, + anon_sym_COLON, + STATE(5939), 1, + sym_capability_list, + [162098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7142), 1, + anon_sym_COLON, + STATE(5938), 1, + sym_capability_list, + [162111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(7144), 1, + anon_sym_SEMI, + STATE(858), 1, + sym_compound_statement, + [162124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7146), 1, + anon_sym_COLON, + STATE(5936), 1, + sym_capability_list, + [162137] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7148), 1, + anon_sym_COLON, + STATE(5987), 1, + sym_capability_list, + [162150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7150), 1, + anon_sym_COLON, + STATE(5932), 1, + sym_capability_list, + [162163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [161242] = 3, + ACTIONS(7152), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_else, - ACTIONS(2095), 2, - anon_sym_elseif, - anon_sym_while, - [161253] = 3, + ACTIONS(7154), 1, + anon_sym_SEMI, + ACTIONS(7156), 1, + anon_sym_as, + ACTIONS(7158), 1, + anon_sym_EQ, + [162189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_else, - ACTIONS(2091), 2, - anon_sym_elseif, - anon_sym_while, - [161264] = 3, + ACTIONS(7160), 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(2085), 1, - anon_sym_else, - ACTIONS(2087), 2, - anon_sym_elseif, - anon_sym_while, - [161275] = 4, + ACTIONS(7164), 1, + anon_sym_SEMI, + ACTIONS(7166), 1, + anon_sym_as, + ACTIONS(7168), 1, + anon_sym_EQ, + [162215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 1, - anon_sym_RBRACE, - ACTIONS(7210), 1, + ACTIONS(7170), 1, anon_sym_COMMA, - STATE(5005), 1, - aux_sym_use_statement_repeat1, - [161288] = 2, + ACTIONS(7172), 1, + anon_sym_RPAREN, + STATE(4857), 1, + aux_sym_arguments_repeat1, + [162228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7212), 3, + ACTIONS(7174), 1, + anon_sym_COMMA, + ACTIONS(7177), 1, anon_sym_RBRACE, + STATE(4898), 1, + aux_sym_xhp_enum_type_repeat1, + [162241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6740), 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6740), 1, anon_sym_COMMA, - [161297] = 3, + ACTIONS(7185), 1, + anon_sym_SEMI, + STATE(4862), 1, + aux_sym_const_declaration_repeat1, + [162278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - sym_xhp_class_identifier, - ACTIONS(7214), 2, - sym_identifier, - sym_xhp_identifier, - [161308] = 4, + ACTIONS(7187), 1, + anon_sym_COMMA, + ACTIONS(7189), 1, + anon_sym_RPAREN, + STATE(4799), 1, + aux_sym_tuple_type_specifier_repeat1, + [162291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 1, + ACTIONS(5478), 1, anon_sym_RBRACE, - ACTIONS(7210), 1, + ACTIONS(7191), 1, anon_sym_COMMA, - STATE(4107), 1, + STATE(4298), 1, aux_sym_use_statement_repeat1, - [161321] = 3, + [162304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, - sym_xhp_class_identifier, - ACTIONS(7218), 2, - sym_identifier, - sym_xhp_identifier, - [161332] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7193), 1, + anon_sym_COLON, + STATE(5891), 1, + sym_capability_list, + [162317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, - anon_sym_else, - ACTIONS(2083), 2, - anon_sym_elseif, - anon_sym_while, - [161343] = 3, + ACTIONS(5488), 1, + anon_sym_SEMI, + ACTIONS(7195), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [162330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, - anon_sym_else, - ACTIONS(2079), 2, - anon_sym_elseif, - anon_sym_while, - [161354] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7197), 1, + anon_sym_COLON, + STATE(5889), 1, + sym_capability_list, + [162343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_else, - ACTIONS(2227), 2, - anon_sym_elseif, - anon_sym_while, - [161365] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7199), 1, + anon_sym_COLON, + STATE(5887), 1, + sym_capability_list, + [162356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7201), 1, + anon_sym_COLON, + STATE(5885), 1, + sym_capability_list, + [162369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7203), 1, + anon_sym_COLON, + STATE(5884), 1, + sym_capability_list, + [162382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7205), 1, + anon_sym_COLON, + STATE(5882), 1, + sym_capability_list, + [162395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5979), 1, + anon_sym_GT_GT, + ACTIONS(7207), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [162408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7209), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7211), 1, + anon_sym_COLON, + STATE(5878), 1, + sym_capability_list, + [162434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5983), 1, + anon_sym_GT_GT, + ACTIONS(7213), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [162447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7222), 1, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(7215), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [162460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 1, anon_sym_RPAREN, - STATE(5009), 1, - aux_sym__anonymous_function_use_clause_repeat1, - [161378] = 3, + ACTIONS(7217), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [162473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, - anon_sym_else, - ACTIONS(2071), 2, - anon_sym_elseif, - anon_sym_while, - [161389] = 4, + ACTIONS(5983), 1, + anon_sym_GT_GT, + ACTIONS(7213), 1, + anon_sym_COMMA, + STATE(4875), 1, + aux_sym_module_attribute_repeat1, + [162486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + ACTIONS(3895), 1, + anon_sym_RPAREN, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [161402] = 4, + [162499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(863), 1, anon_sym_LBRACE, - ACTIONS(7226), 1, + ACTIONS(7219), 1, anon_sym_SEMI, - STATE(1419), 1, + STATE(1394), 1, sym_compound_statement, - [161415] = 4, + [162512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3844), 1, - anon_sym_RPAREN, - STATE(4115), 1, + ACTIONS(7221), 1, + anon_sym_SEMI, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [161428] = 3, + [162525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 1, - anon_sym_else, - ACTIONS(2067), 2, - anon_sym_elseif, - anon_sym_while, - [161439] = 3, + ACTIONS(5931), 1, + anon_sym_GT_GT, + ACTIONS(7223), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [162538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, - anon_sym_else, - ACTIONS(2015), 2, - anon_sym_elseif, - anon_sym_while, - [161450] = 4, + ACTIONS(4884), 1, + anon_sym_RPAREN, + ACTIONS(7225), 1, + anon_sym_COMMA, + STATE(4883), 1, + aux_sym_function_type_specifier_repeat1, + [162551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, - anon_sym_COMMA, - ACTIONS(7231), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, - STATE(4894), 1, - aux_sym_arguments_repeat1, - [161463] = 4, + ACTIONS(7225), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [162564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - anon_sym_GT_GT, - ACTIONS(7233), 1, + ACTIONS(7227), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [161476] = 4, + ACTIONS(7229), 1, + anon_sym_RBRACK, + STATE(4659), 1, + aux_sym_capability_list_repeat1, + [162577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - anon_sym_GT_GT, - ACTIONS(7233), 1, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4759), 1, - aux_sym_attribute_modifier_repeat1, - [161489] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 1, - anon_sym_else, - ACTIONS(2063), 2, - anon_sym_elseif, - anon_sym_while, - [161500] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7231), 1, + anon_sym_SEMI, + STATE(4899), 1, + aux_sym_const_declaration_repeat1, + [162603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_else, - ACTIONS(2059), 2, - anon_sym_elseif, - anon_sym_while, - [161511] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7233), 1, + anon_sym_COLON, + STATE(5928), 1, + sym_capability_list, + [162616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 3, - anon_sym_RBRACE, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(7235), 1, + anon_sym_SEMI, + STATE(1539), 1, + sym_compound_statement, + [162629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6516), 1, + anon_sym_RPAREN, + ACTIONS(7237), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [161520] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [162642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(7235), 1, + ACTIONS(7240), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [161533] = 4, + STATE(5162), 1, + aux_sym__class_const_declaration_repeat1, + [162655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, - anon_sym_RBRACK, - ACTIONS(7237), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - STATE(4119), 1, - aux_sym_array_repeat1, - [161546] = 4, + ACTIONS(7242), 1, + anon_sym_SEMI, + STATE(5053), 1, + aux_sym_property_declaration_repeat1, + [162668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(7244), 1, + anon_sym_SEMI, + ACTIONS(7246), 1, + anon_sym_as, + ACTIONS(7248), 1, + anon_sym_EQ, + [162681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7250), 1, + anon_sym_COLON, + STATE(5820), 1, + sym_capability_list, + [162694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7252), 1, anon_sym_COMMA, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [161559] = 3, + STATE(5217), 1, + aux_sym__anonymous_function_use_clause_repeat1, + [162707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 1, - anon_sym_else, - ACTIONS(2491), 2, - anon_sym_elseif, - anon_sym_while, - [161570] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7256), 1, + anon_sym_COLON, + STATE(5818), 1, + sym_capability_list, + [162720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7241), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7258), 1, + anon_sym_COLON, + STATE(5816), 1, + sym_capability_list, + [162733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7260), 1, + anon_sym_COLON, + STATE(5814), 1, + sym_capability_list, + [162746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 1, anon_sym_LBRACE, - STATE(5775), 1, - sym_extends_clause, - [161583] = 4, + ACTIONS(7262), 1, + anon_sym_SEMI, + STATE(1422), 1, + sym_compound_statement, + [162759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - anon_sym_GT_GT, - ACTIONS(7243), 1, - anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [161596] = 4, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7264), 1, + anon_sym_COLON, + STATE(5813), 1, + sym_capability_list, + [162772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(5811), 1, + sym_capability_list, + [162785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(7268), 1, + anon_sym_COLON, + STATE(5807), 1, + sym_capability_list, + [162798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3876), 1, + ACTIONS(7270), 1, anon_sym_SEMI, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [161609] = 4, + [162811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_GT, - ACTIONS(7245), 1, + ACTIONS(863), 1, + anon_sym_LBRACE, + ACTIONS(7272), 1, + anon_sym_SEMI, + STATE(1417), 1, + sym_compound_statement, + [162824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4409), 1, - aux_sym_tuple_type_specifier_repeat1, - [161622] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5448), 1, - anon_sym_RBRACE, - ACTIONS(7247), 1, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(7274), 1, + anon_sym_SEMI, + STATE(803), 1, + sym_compound_statement, + [162850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7276), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [161635] = 4, + ACTIONS(7278), 1, + anon_sym_RBRACE, + STATE(4898), 1, + aux_sym_xhp_enum_type_repeat1, + [162863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + ACTIONS(3910), 1, + anon_sym_SEMI, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [161648] = 3, + [162876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, - anon_sym_EQ, - ACTIONS(5170), 2, - anon_sym_SEMI, + ACTIONS(7278), 1, + anon_sym_RBRACE, + ACTIONS(7183), 2, + sym_integer, + sym_string, + [162887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 1, + anon_sym_RBRACE, + ACTIONS(3778), 1, anon_sym_COMMA, - [161659] = 3, + STATE(4658), 1, + aux_sym_array_repeat1, + [162900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, - anon_sym_else, - ACTIONS(2259), 2, - anon_sym_elseif, - anon_sym_while, - [161670] = 4, + ACTIONS(7280), 1, + anon_sym_SEMI, + ACTIONS(7282), 1, + anon_sym_as, + ACTIONS(7284), 1, + anon_sym_EQ, + [162913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(1518), 1, + anon_sym_RBRACE, + ACTIONS(3778), 1, anon_sym_COMMA, - ACTIONS(7249), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [161683] = 3, + STATE(4404), 1, + aux_sym_array_repeat1, + [162926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 1, + ACTIONS(7288), 1, sym_xhp_class_identifier, - ACTIONS(7251), 2, + ACTIONS(7286), 2, sym_identifier, sym_xhp_identifier, - [161694] = 3, + [162937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 1, - anon_sym_else, - ACTIONS(2255), 2, - anon_sym_elseif, - anon_sym_while, - [161705] = 3, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(7290), 1, + anon_sym_SEMI, + STATE(1750), 1, + sym_compound_statement, + [162950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 1, - anon_sym_else, - ACTIONS(2407), 2, - anon_sym_elseif, - anon_sym_while, - [161716] = 4, + ACTIONS(7292), 1, + anon_sym_COMMA, + ACTIONS(7294), 1, + anon_sym_SEMI, + STATE(4973), 1, + aux_sym_use_statement_repeat1, + [162963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(6067), 1, anon_sym_COMMA, - ACTIONS(7257), 1, - anon_sym_GT, - STATE(4919), 1, + ACTIONS(7296), 1, + anon_sym_SEMI, + STATE(5207), 1, aux_sym_tuple_type_specifier_repeat1, - [161729] = 3, + [162976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, - anon_sym_else, - ACTIONS(2551), 2, - anon_sym_elseif, - anon_sym_while, - [161740] = 3, + ACTIONS(1777), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [162989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 1, - anon_sym_else, - ACTIONS(2559), 2, - anon_sym_elseif, - anon_sym_while, - [161751] = 4, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7298), 1, + anon_sym_SEMI, + STATE(4977), 1, + aux_sym_const_declaration_repeat1, + [163002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, - anon_sym_GT, - ACTIONS(7259), 1, + ACTIONS(6067), 1, anon_sym_COMMA, - STATE(4409), 1, + ACTIONS(7300), 1, + anon_sym_SEMI, + STATE(5086), 1, aux_sym_tuple_type_specifier_repeat1, - [161764] = 3, + [163015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, - anon_sym_else, - ACTIONS(2231), 2, - anon_sym_elseif, - anon_sym_while, - [161775] = 3, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(6053), 1, + anon_sym_LBRACK, + STATE(2261), 1, + sym_arguments, + [163028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 1, - anon_sym_else, - ACTIONS(2483), 2, - anon_sym_elseif, - anon_sym_while, - [161786] = 3, + ACTIONS(1671), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 1, - anon_sym_else, - ACTIONS(2467), 2, - anon_sym_elseif, - anon_sym_while, - [161797] = 3, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(7302), 1, + anon_sym_SEMI, + STATE(1676), 1, + sym_compound_statement, + [163054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 1, - anon_sym_else, - ACTIONS(2535), 2, - anon_sym_elseif, - anon_sym_while, - [161808] = 3, + ACTIONS(7304), 1, + anon_sym_COMMA, + ACTIONS(7306), 1, + anon_sym_RPAREN, + STATE(5014), 1, + aux_sym_shape_repeat1, + [163067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - anon_sym_else, - ACTIONS(2431), 2, - anon_sym_elseif, - anon_sym_while, - [161819] = 3, + ACTIONS(7308), 1, + anon_sym_COMMA, + ACTIONS(7310), 1, + anon_sym_RPAREN, + STATE(5198), 1, + aux_sym_parameters_repeat1, + [163080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 1, - anon_sym_else, - ACTIONS(2403), 2, - anon_sym_elseif, - anon_sym_while, - [161830] = 3, + ACTIONS(7312), 1, + anon_sym_BSLASH, + ACTIONS(6642), 2, + sym_identifier, + anon_sym_namespace, + [163091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_else, - ACTIONS(2399), 2, - anon_sym_elseif, - anon_sym_while, - [161841] = 3, + ACTIONS(5845), 1, + anon_sym_GT_GT, + ACTIONS(7314), 1, + anon_sym_COMMA, + STATE(5017), 1, + aux_sym_module_attribute_repeat1, + [163104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, - anon_sym_else, - ACTIONS(2375), 2, - anon_sym_elseif, - anon_sym_while, - [161852] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7316), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, - anon_sym_else, - ACTIONS(2363), 2, - anon_sym_elseif, - anon_sym_while, - [161863] = 3, + ACTIONS(5845), 1, + anon_sym_GT_GT, + ACTIONS(7314), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [163130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - anon_sym_else, - ACTIONS(2223), 2, - anon_sym_elseif, - anon_sym_while, - [161874] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, - anon_sym_else, - ACTIONS(2323), 2, - anon_sym_elseif, - anon_sym_while, - [161885] = 4, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7318), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7261), 1, - anon_sym_SEMI, - STATE(4937), 1, - aux_sym_const_declaration_repeat1, - [161898] = 3, + ACTIONS(7320), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_else, - ACTIONS(2019), 2, - anon_sym_elseif, - anon_sym_while, - [161909] = 4, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_SEMI, + STATE(5224), 1, + aux_sym_use_statement_repeat1, + [163182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1655), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [161922] = 4, + [163195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, - anon_sym_RPAREN, - ACTIONS(7263), 1, + ACTIONS(5482), 1, + anon_sym_SEMI, + ACTIONS(7326), 1, anon_sym_COMMA, - STATE(4894), 1, - aux_sym_arguments_repeat1, - [161935] = 3, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [163208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_else, - ACTIONS(2243), 2, - anon_sym_elseif, - anon_sym_while, - [161946] = 4, + ACTIONS(7328), 1, + anon_sym_COMMA, + ACTIONS(7330), 1, + anon_sym_RPAREN, + STATE(5023), 1, + aux_sym_tuple_type_specifier_repeat1, + [163221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7265), 1, + ACTIONS(3934), 1, anon_sym_RPAREN, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [161959] = 4, + [163234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(7267), 1, + ACTIONS(7332), 1, anon_sym_SEMI, - STATE(4673), 1, + STATE(5026), 1, aux_sym_const_declaration_repeat1, - [161972] = 4, + [163247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - ACTIONS(7269), 1, + ACTIONS(7334), 1, anon_sym_SEMI, - STATE(4681), 1, + STATE(5075), 1, aux_sym_const_declaration_repeat1, - [161985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7271), 1, - anon_sym_LBRACE, - STATE(5785), 1, - sym_extends_clause, - [161998] = 4, + [163260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 1, + ACTIONS(7336), 1, anon_sym_COMMA, - ACTIONS(7275), 1, + ACTIONS(7338), 1, anon_sym_RPAREN, - STATE(4825), 1, - aux_sym_tuple_type_specifier_repeat1, - [162011] = 4, + STATE(5033), 1, + aux_sym_arguments_repeat1, + [163273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(7340), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162024] = 4, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(5038), 1, + aux_sym_tuple_type_specifier_repeat1, + [163286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + ACTIONS(7344), 1, + anon_sym_SEMI, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [162037] = 4, + [163299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, - anon_sym_SEMI, - ACTIONS(7277), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [162050] = 4, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5971), 1, + sym_variable, + STATE(6254), 1, + sym_variadic_modifier, + [163312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 1, - anon_sym_SEMI, - ACTIONS(7281), 1, + ACTIONS(1489), 1, + anon_sym_RBRACK, + ACTIONS(3770), 1, anon_sym_COMMA, - STATE(5024), 1, - aux_sym__class_const_declaration_repeat1, - [162063] = 4, + STATE(5041), 1, + aux_sym_array_repeat1, + [163325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5440), 1, - anon_sym_RBRACE, - ACTIONS(7283), 1, + ACTIONS(1779), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [162076] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5440), 1, - anon_sym_RBRACE, - ACTIONS(7283), 1, + ACTIONS(4890), 1, + anon_sym_RPAREN, + ACTIONS(6159), 1, anon_sym_COMMA, - STATE(4908), 1, - aux_sym_use_statement_repeat1, - [162089] = 4, + STATE(4929), 1, + aux_sym_function_type_specifier_repeat1, + [163351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_SEMI, - ACTIONS(7287), 1, - anon_sym_COMMA, - STATE(5037), 1, - aux_sym_xhp_attribute_declaration_repeat1, - [162102] = 4, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7346), 1, + anon_sym_LBRACE, + STATE(5830), 1, + sym_extends_clause, + [163364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 1, - anon_sym_SEMI, - ACTIONS(7291), 1, + ACTIONS(4890), 1, + anon_sym_RPAREN, + ACTIONS(6159), 1, anon_sym_COMMA, - STATE(5042), 1, - aux_sym_xhp_category_declaration_repeat1, - [162115] = 4, + STATE(4923), 1, + aux_sym_function_type_specifier_repeat1, + [163377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, + ACTIONS(1649), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [162128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7295), 1, - sym_xhp_class_identifier, - ACTIONS(7293), 2, - sym_identifier, - sym_xhp_identifier, - [162139] = 4, + [163390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5126), 1, + anon_sym_EQ, + ACTIONS(5124), 2, anon_sym_COMMA, - ACTIONS(7297), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162152] = 4, + anon_sym_SEMI, + [163401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(3872), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162165] = 4, + ACTIONS(7348), 1, + anon_sym_SEMI, + STATE(5170), 1, + aux_sym__class_const_declaration_repeat1, + [163414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7299), 1, + ACTIONS(3940), 1, anon_sym_SEMI, - STATE(5043), 1, - aux_sym_property_declaration_repeat1, - [162178] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(7301), 1, + ACTIONS(3973), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162191] = 4, + STATE(5050), 1, + aux_sym_list_expression_repeat1, + [163440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(7303), 1, + ACTIONS(7350), 1, anon_sym_SEMI, - STATE(5046), 1, - aux_sym_property_declaration_repeat1, - [162204] = 4, + STATE(5162), 1, + aux_sym__class_const_declaration_repeat1, + [163453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, + ACTIONS(5510), 1, anon_sym_RBRACE, - ACTIONS(7307), 1, + ACTIONS(7352), 1, anon_sym_COMMA, - STATE(4945), 1, + STATE(4298), 1, aux_sym_use_statement_repeat1, - [162217] = 4, + [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, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(7356), 1, anon_sym_SEMI, - ACTIONS(7311), 1, - anon_sym_COMMA, - STATE(4957), 1, - aux_sym_trait_select_clause_repeat1, - [162230] = 4, + STATE(1727), 1, + sym_compound_statement, + [163492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7314), 1, + ACTIONS(7358), 1, anon_sym_RPAREN, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [162243] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(7362), 1, sym_xhp_class_identifier, - ACTIONS(7316), 2, + ACTIONS(7360), 2, sym_identifier, sym_xhp_identifier, - [162254] = 4, + [163516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7080), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7364), 1, anon_sym_LBRACE, - ACTIONS(7320), 1, - anon_sym_SEMI, - STATE(2807), 1, - sym_compound_statement, - [162267] = 4, + STATE(5840), 1, + sym_extends_clause, + [163529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(1478), 1, + anon_sym_RBRACE, + ACTIONS(3768), 1, anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_SEMI, - STATE(5050), 1, - aux_sym_property_declaration_repeat1, - [162280] = 4, + STATE(5080), 1, + aux_sym_array_repeat1, + [163542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7080), 1, - anon_sym_LBRACE, - ACTIONS(7322), 1, + ACTIONS(1685), 1, anon_sym_SEMI, - STATE(2764), 1, - sym_compound_statement, - [162293] = 4, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(5502), 1, + anon_sym_RBRACE, + ACTIONS(7366), 1, anon_sym_COMMA, - ACTIONS(7324), 1, - anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [162306] = 3, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [163568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3893), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + anon_sym_RBRACE, + ACTIONS(7366), 1, + anon_sym_COMMA, + STATE(4993), 1, + aux_sym_use_statement_repeat1, + [163594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7370), 1, sym_xhp_class_identifier, - ACTIONS(7326), 2, + ACTIONS(7368), 2, sym_identifier, sym_xhp_identifier, - [162317] = 4, + [163605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, - anon_sym_SEMI, - ACTIONS(7332), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4957), 1, - aux_sym_trait_select_clause_repeat1, - [162330] = 4, + ACTIONS(7372), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7334), 1, - anon_sym_COLON, - STATE(5833), 1, - sym_capability_list, - [162343] = 4, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7374), 1, + anon_sym_SEMI, + STATE(5248), 1, + aux_sym_const_declaration_repeat1, + [163631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, - anon_sym_RPAREN, - ACTIONS(7336), 1, + ACTIONS(7376), 1, anon_sym_COMMA, - STATE(4755), 1, - aux_sym_tuple_type_specifier_repeat1, - [162356] = 4, + ACTIONS(7378), 1, + anon_sym_RBRACE, + STATE(5001), 1, + aux_sym_use_statement_repeat1, + [163644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(1613), 1, anon_sym_RPAREN, - ACTIONS(7336), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [162369] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7338), 1, - anon_sym_LBRACE, - STATE(6180), 1, - sym_extends_clause, - [162382] = 3, + ACTIONS(6683), 1, + anon_sym_COMMA, + ACTIONS(7380), 1, + anon_sym_SEMI, + STATE(5156), 1, + aux_sym_xhp_attribute_declaration_repeat1, + [163670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7342), 1, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(7382), 1, + anon_sym_RPAREN, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [163683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7386), 1, sym_xhp_class_identifier, - ACTIONS(7340), 2, + ACTIONS(7384), 2, sym_identifier, sym_xhp_identifier, - [162393] = 4, + [163694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, + 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(7347), 1, - anon_sym_RBRACK, - STATE(4971), 1, - aux_sym_capability_list_repeat1, - [162406] = 4, + ACTIONS(7388), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(5442), 1, anon_sym_RPAREN, - ACTIONS(7349), 1, + ACTIONS(7390), 1, anon_sym_COMMA, - STATE(4773), 1, - aux_sym_shape_type_specifier_repeat1, - [162419] = 4, + STATE(4781), 1, + aux_sym_shape_repeat1, + [163733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(7394), 1, + sym_xhp_class_identifier, + ACTIONS(7392), 2, + sym_identifier, + sym_xhp_identifier, + [163744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1647), 1, + anon_sym_RPAREN, + ACTIONS(7396), 1, anon_sym_COMMA, - ACTIONS(7351), 1, - anon_sym_SEMI, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [162432] = 3, + [163757] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5959), 1, + anon_sym_GT_GT, + ACTIONS(7398), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [163770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 1, + ACTIONS(7402), 1, sym_xhp_class_identifier, - ACTIONS(7353), 2, + ACTIONS(7400), 2, sym_identifier, sym_xhp_identifier, - [162443] = 4, + [163781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(5895), 1, - sym_extends_clause, - [162456] = 4, + ACTIONS(7406), 1, + sym_xhp_class_identifier, + ACTIONS(7404), 2, + sym_identifier, + sym_xhp_identifier, + [163792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 1, + ACTIONS(7408), 1, anon_sym_COMMA, - ACTIONS(7361), 1, + ACTIONS(7410), 1, anon_sym_RPAREN, - STATE(4783), 1, + STATE(5092), 1, aux_sym_shape_type_specifier_repeat1, - [162469] = 4, + [163805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(1455), 1, + anon_sym_RPAREN, + ACTIONS(7412), 1, anon_sym_COMMA, - ACTIONS(3861), 1, + STATE(5094), 1, + aux_sym_shape_type_specifier_repeat1, + [163818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(7414), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162482] = 4, + STATE(1220), 1, + sym_compound_statement, + [163831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, - anon_sym_RBRACE, - ACTIONS(7363), 1, + ACTIONS(4952), 1, + anon_sym_RPAREN, + ACTIONS(7416), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [162495] = 4, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [163844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(7365), 1, + ACTIONS(4952), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162508] = 4, + ACTIONS(7416), 1, + anon_sym_COMMA, + STATE(5103), 1, + aux_sym_tuple_type_specifier_repeat1, + [163857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7332), 1, + ACTIONS(5716), 1, anon_sym_COMMA, - ACTIONS(7367), 1, + ACTIONS(7418), 1, anon_sym_SEMI, - STATE(4965), 1, - aux_sym_trait_select_clause_repeat1, - [162521] = 4, + STATE(4379), 1, + aux_sym_xhp_children_declaration_repeat1, + [163870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_COLON, - STATE(5872), 1, - sym_capability_list, - [162534] = 4, + 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(3685), 1, + ACTIONS(7422), 1, anon_sym_COMMA, - ACTIONS(7371), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162547] = 3, + ACTIONS(7424), 1, + anon_sym_GT, + STATE(5030), 1, + aux_sym_tuple_type_specifier_repeat1, + [163896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, - sym_xhp_class_identifier, - ACTIONS(7373), 2, - sym_identifier, - sym_xhp_identifier, - [162558] = 4, + ACTIONS(3790), 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(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7377), 1, + ACTIONS(7428), 1, anon_sym_LBRACE, - STATE(5924), 1, + STATE(5926), 1, sym_extends_clause, - [162571] = 4, + [163922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(5002), 1, + anon_sym_GT, + ACTIONS(7430), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162584] = 4, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [163935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_RBRACE, - ACTIONS(7379), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [162597] = 4, + ACTIONS(3914), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [163948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 1, + ACTIONS(5476), 1, anon_sym_RBRACE, - ACTIONS(7379), 1, + ACTIONS(7432), 1, anon_sym_COMMA, - STATE(4978), 1, + STATE(4298), 1, aux_sym_use_statement_repeat1, - [162610] = 4, + [163961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3776), 1, + ACTIONS(1285), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162623] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7381), 1, + ACTIONS(7434), 1, anon_sym_COMMA, - ACTIONS(7384), 1, - anon_sym_GT, - STATE(4989), 1, - aux_sym_type_parameters_repeat1, - [162636] = 3, + STATE(4549), 1, + aux_sym_arguments_repeat1, + [163974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, - sym_xhp_class_identifier, - ACTIONS(7386), 2, - sym_identifier, - sym_xhp_identifier, - [162647] = 4, + ACTIONS(7436), 3, + anon_sym_as, + anon_sym_super, + anon_sym_EQ, + [163983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7390), 1, + ACTIONS(7438), 1, anon_sym_RPAREN, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [162660] = 4, + [163996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, - anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162673] = 4, + ACTIONS(7442), 1, + sym_xhp_class_identifier, + ACTIONS(7440), 2, + sym_identifier, + sym_xhp_identifier, + [164007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7392), 1, - anon_sym_RBRACE, - ACTIONS(7394), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym_use_statement_repeat1, - [162686] = 4, + ACTIONS(7444), 1, + anon_sym_SEMI, + STATE(4507), 1, + aux_sym_property_declaration_repeat1, + [164020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(4962), 1, + anon_sym_GT, + ACTIONS(7446), 1, anon_sym_COMMA, - ACTIONS(7396), 1, - anon_sym_RPAREN, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [162699] = 3, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [164033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 1, - sym_xhp_class_identifier, - ACTIONS(7398), 2, - sym_identifier, - sym_xhp_identifier, - [162710] = 3, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7448), 1, + anon_sym_LBRACE, + STATE(5947), 1, + sym_extends_clause, + [164046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - sym_xhp_class_identifier, - ACTIONS(7402), 2, - sym_identifier, - sym_xhp_identifier, - [162721] = 4, + ACTIONS(6703), 1, + anon_sym_LBRACE, + ACTIONS(7450), 1, + anon_sym_SEMI, + STATE(2817), 1, + sym_compound_statement, + [164059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7406), 1, + ACTIONS(1471), 1, + anon_sym_RBRACK, + ACTIONS(3755), 1, anon_sym_COMMA, - ACTIONS(7409), 1, - anon_sym_RPAREN, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [162734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7411), 1, - anon_sym_COLON, - STATE(6177), 1, - sym_capability_list, - [162747] = 3, + STATE(4404), 1, + aux_sym_array_repeat1, + [164072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 1, - anon_sym_EQ, - ACTIONS(7413), 2, + ACTIONS(1747), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [162758] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 1, - anon_sym_EQ, - ACTIONS(7417), 2, + ACTIONS(6687), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [162769] = 3, + ACTIONS(7452), 1, + anon_sym_SEMI, + STATE(5124), 1, + aux_sym_xhp_category_declaration_repeat1, + [164098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 1, - anon_sym_EQ, - ACTIONS(7421), 2, - anon_sym_COMMA, + ACTIONS(1785), 1, anon_sym_RPAREN, - [162780] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7427), 1, - sym_xhp_class_identifier, - ACTIONS(7425), 2, - sym_identifier, - sym_xhp_identifier, - [162791] = 4, + ACTIONS(1611), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(7429), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [162804] = 4, + ACTIONS(7454), 1, + anon_sym_SEMI, + STATE(5053), 1, + aux_sym_property_declaration_repeat1, + [164137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 1, - anon_sym_RPAREN, - ACTIONS(7431), 1, + ACTIONS(1471), 1, + anon_sym_RBRACK, + ACTIONS(3755), 1, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_shape_type_specifier_repeat1, - [162817] = 4, + STATE(5132), 1, + aux_sym_array_repeat1, + [164150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 1, + ACTIONS(5474), 1, anon_sym_RBRACE, - ACTIONS(7433), 1, + ACTIONS(7456), 1, anon_sym_COMMA, - STATE(4107), 1, + STATE(4298), 1, aux_sym_use_statement_repeat1, - [162830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - sym_xhp_class_identifier, - ACTIONS(7435), 2, - sym_identifier, - sym_xhp_identifier, - [162841] = 4, + [164163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_GT_GT, - ACTIONS(7439), 1, + ACTIONS(7460), 1, + anon_sym_EQ, + ACTIONS(7458), 2, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_attribute_modifier_repeat1, - [162854] = 4, + anon_sym_SEMI, + [164174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - anon_sym_GT_GT, - ACTIONS(7439), 1, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(7462), 1, anon_sym_COMMA, - STATE(4905), 1, - aux_sym_attribute_modifier_repeat1, - [162867] = 4, + STATE(5050), 1, + aux_sym_list_expression_repeat1, + [164187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(7465), 1, anon_sym_COMMA, - ACTIONS(7443), 1, + ACTIONS(7467), 1, anon_sym_RPAREN, - STATE(5109), 1, - aux_sym__anonymous_function_use_clause_repeat1, - [162880] = 4, + STATE(5050), 1, + aux_sym_list_expression_repeat1, + [164200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(1791), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7445), 1, - anon_sym_SEMI, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [162893] = 4, + [164213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(7469), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162906] = 4, + ACTIONS(7472), 1, + anon_sym_SEMI, + STATE(5053), 1, + aux_sym_property_declaration_repeat1, + [164226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5474), 1, + anon_sym_RBRACE, + ACTIONS(7456), 1, anon_sym_COMMA, - ACTIONS(7447), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [162919] = 4, + STATE(5032), 1, + aux_sym_use_statement_repeat1, + [164239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, - anon_sym_RPAREN, - ACTIONS(7449), 1, + ACTIONS(7474), 1, + anon_sym_LBRACE, + ACTIONS(7476), 1, + sym_string, + STATE(4405), 1, + sym_braced_expression, + [164252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1525), 1, + anon_sym_RBRACK, + ACTIONS(3782), 1, anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [162932] = 4, + STATE(4545), 1, + aux_sym_array_repeat1, + [164265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, + ACTIONS(1525), 1, + anon_sym_RBRACK, + ACTIONS(3782), 1, anon_sym_COMMA, - ACTIONS(7453), 1, + STATE(4404), 1, + aux_sym_array_repeat1, + [164278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, anon_sym_GT, - STATE(4907), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + STATE(5096), 1, aux_sym_tuple_type_specifier_repeat1, - [162945] = 4, + [164291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7455), 1, - anon_sym_COLON, - STATE(5936), 1, - sym_capability_list, - [162958] = 4, + ACTIONS(7480), 1, + anon_sym_COMMA, + ACTIONS(7482), 1, + anon_sym_RPAREN, + STATE(5050), 1, + aux_sym_list_expression_repeat1, + [164304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7457), 1, - anon_sym_SEMI, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [162971] = 4, + [164317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, - anon_sym_COMMA, - ACTIONS(7461), 1, + ACTIONS(1305), 1, anon_sym_RPAREN, - STATE(4934), 1, + ACTIONS(7484), 1, + anon_sym_COMMA, + STATE(4549), 1, aux_sym_arguments_repeat1, - [162984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7463), 1, - anon_sym_LBRACE, - STATE(6014), 1, - sym_extends_clause, - [162997] = 3, + [164330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - anon_sym_EQ, - ACTIONS(5160), 2, - anon_sym_SEMI, + ACTIONS(3790), 1, anon_sym_COMMA, - [163008] = 4, + ACTIONS(7486), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3782), 1, - anon_sym_SEMI, - STATE(4115), 1, + ACTIONS(3881), 1, + anon_sym_RPAREN, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [163021] = 4, + [164356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(7465), 1, - anon_sym_SEMI, - STATE(4884), 1, - sym_compound_statement, - [163034] = 4, + ACTIONS(7490), 1, + sym_xhp_class_identifier, + ACTIONS(7488), 2, + sym_identifier, + sym_xhp_identifier, + [164367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7467), 1, - anon_sym_SEMI, - STATE(5115), 1, - aux_sym__class_const_declaration_repeat1, - [163047] = 4, + ACTIONS(7492), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_RBRACE, - ACTIONS(7469), 1, + ACTIONS(1425), 1, + anon_sym_RPAREN, + ACTIONS(7494), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [163060] = 4, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [164393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7496), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7471), 1, + ACTIONS(7498), 1, anon_sym_SEMI, - STATE(5117), 1, - aux_sym__class_const_declaration_repeat1, - [163073] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(7473), 1, + ACTIONS(7500), 1, anon_sym_SEMI, - STATE(5118), 1, - aux_sym_tuple_type_specifier_repeat1, - [163086] = 3, + STATE(5053), 1, + aux_sym_property_declaration_repeat1, + [164432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, - sym_xhp_class_identifier, - ACTIONS(7475), 2, - sym_identifier, - sym_xhp_identifier, - [163097] = 4, + ACTIONS(7502), 1, + anon_sym_COMMA, + ACTIONS(7504), 1, + anon_sym_RBRACE, + STATE(5048), 1, + aux_sym_use_statement_repeat1, + [164445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(7479), 1, + ACTIONS(7506), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163110] = 4, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [164458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, - anon_sym_SEMI, - ACTIONS(7483), 1, - anon_sym_as, - ACTIONS(7485), 1, - anon_sym_EQ, - [163123] = 3, + ACTIONS(1433), 1, + anon_sym_RPAREN, + ACTIONS(7508), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [164471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, + ACTIONS(7512), 1, sym_xhp_class_identifier, - ACTIONS(7487), 2, + ACTIONS(7510), 2, sym_identifier, sym_xhp_identifier, - [163134] = 4, + [164482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - anon_sym_COMMA, - ACTIONS(7491), 1, - anon_sym_SEMI, - STATE(5119), 1, - aux_sym_tuple_type_specifier_repeat1, - [163147] = 4, + ACTIONS(6177), 3, + sym_variable, + anon_sym_LPAREN, + anon_sym_function, + [164491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7493), 1, - anon_sym_LBRACE, - STATE(6031), 1, - sym_extends_clause, - [163160] = 4, + ACTIONS(7514), 1, + anon_sym_COMMA, + ACTIONS(7517), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [164504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7495), 1, - anon_sym_SEMI, - ACTIONS(7497), 1, - anon_sym_as, - ACTIONS(7499), 1, + ACTIONS(2663), 1, + anon_sym_BSLASH, + ACTIONS(5195), 1, anon_sym_EQ, - [163173] = 4, + STATE(2221), 1, + aux_sym_qualified_identifier_repeat1, + [164517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(6740), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163186] = 4, + ACTIONS(7519), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [164530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, - anon_sym_RBRACE, - ACTIONS(7501), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [163199] = 4, + ACTIONS(7521), 1, + anon_sym_SEMI, + STATE(5162), 1, + aux_sym__class_const_declaration_repeat1, + [164543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 1, - anon_sym_RBRACE, - ACTIONS(7505), 1, - anon_sym_COMMA, - STATE(5035), 1, - aux_sym_xhp_enum_type_repeat1, - [163212] = 3, + ACTIONS(7525), 1, + sym_xhp_class_identifier, + ACTIONS(7523), 2, + sym_identifier, + sym_xhp_identifier, + [164554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7508), 1, + ACTIONS(1480), 1, anon_sym_RBRACE, - ACTIONS(7510), 2, - sym_integer, - sym_string, - [163223] = 4, + ACTIONS(3753), 1, + anon_sym_COMMA, + STATE(4404), 1, + aux_sym_array_repeat1, + [164567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(7512), 1, + ACTIONS(7527), 1, anon_sym_SEMI, - STATE(5123), 1, - aux_sym_xhp_attribute_declaration_repeat1, - [163236] = 4, + STATE(5113), 1, + aux_sym_property_declaration_repeat1, + [164580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, - anon_sym_RBRACE, - ACTIONS(7501), 1, + ACTIONS(5911), 1, + anon_sym_GT_GT, + ACTIONS(7529), 1, anon_sym_COMMA, - STATE(5023), 1, - aux_sym_use_statement_repeat1, - [163249] = 4, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [164593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(7514), 1, + ACTIONS(7531), 1, anon_sym_SEMI, - STATE(4183), 1, - aux_sym_xhp_children_declaration_repeat1, - [163262] = 3, + STATE(4930), 1, + aux_sym__class_const_declaration_repeat1, + [164606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7518), 1, + ACTIONS(7535), 1, sym_xhp_class_identifier, - ACTIONS(7516), 2, + ACTIONS(7533), 2, sym_identifier, sym_xhp_identifier, - [163273] = 4, + [164617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(7520), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163286] = 4, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_SEMI, + STATE(1620), 1, + sym_compound_statement, + [164630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, + ACTIONS(6067), 1, anon_sym_COMMA, - ACTIONS(7522), 1, + ACTIONS(7539), 1, anon_sym_SEMI, - STATE(5127), 1, - aux_sym_xhp_category_declaration_repeat1, - [163299] = 4, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [164643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(7524), 1, + ACTIONS(7541), 1, anon_sym_SEMI, - STATE(5046), 1, + STATE(5053), 1, aux_sym_property_declaration_repeat1, - [163312] = 4, + [164656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, - anon_sym_RBRACE, - ACTIONS(7528), 1, + ACTIONS(7543), 3, anon_sym_COMMA, - STATE(5034), 1, - aux_sym_use_statement_repeat1, - [163325] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + [164665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(7545), 1, anon_sym_COMMA, - ACTIONS(7530), 1, - anon_sym_RPAREN, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [163338] = 4, + ACTIONS(7547), 1, + anon_sym_RBRACE, + STATE(4641), 1, + aux_sym_use_statement_repeat1, + [164678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7532), 1, - anon_sym_SEMI, - ACTIONS(7534), 1, + ACTIONS(5925), 1, + anon_sym_GT_GT, + ACTIONS(7549), 1, anon_sym_COMMA, - STATE(5046), 1, - aux_sym_property_declaration_repeat1, - [163351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7539), 1, - sym_xhp_class_identifier, - ACTIONS(7537), 2, - sym_identifier, - sym_xhp_identifier, - [163362] = 4, + STATE(5155), 1, + aux_sym_module_attribute_repeat1, + [164691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(5925), 1, + anon_sym_GT_GT, + ACTIONS(7549), 1, anon_sym_COMMA, - ACTIONS(7541), 1, - anon_sym_SEMI, - STATE(5128), 1, - aux_sym_property_declaration_repeat1, - [163375] = 4, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [164704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3778), 1, + ACTIONS(1449), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163388] = 4, + ACTIONS(7551), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [164717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7543), 1, + ACTIONS(7553), 1, anon_sym_SEMI, - STATE(5046), 1, - aux_sym_property_declaration_repeat1, - [163401] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7080), 1, - anon_sym_LBRACE, - ACTIONS(7545), 1, - anon_sym_SEMI, - STATE(2802), 1, - sym_compound_statement, - [163414] = 4, + ACTIONS(1437), 1, + anon_sym_RPAREN, + ACTIONS(7555), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [164743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(6466), 3, anon_sym_COMMA, - ACTIONS(7543), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(5135), 1, - aux_sym_property_declaration_repeat1, - [163427] = 4, + [164752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_RPAREN, - ACTIONS(7547), 1, + ACTIONS(5266), 1, + anon_sym_GT, + ACTIONS(7557), 1, anon_sym_COMMA, - STATE(5013), 1, - aux_sym_function_type_specifier_repeat1, - [163440] = 4, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [164765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(7560), 1, anon_sym_COMMA, - ACTIONS(7549), 1, - anon_sym_SEMI, - STATE(5137), 1, - aux_sym__class_const_declaration_repeat1, - [163453] = 4, + ACTIONS(7562), 1, + anon_sym_RPAREN, + STATE(5157), 1, + aux_sym_shape_type_specifier_repeat1, + [164778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - ACTIONS(5636), 1, - anon_sym_LBRACK, - STATE(2343), 1, - sym_arguments, - [163466] = 4, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7564), 1, + anon_sym_LBRACE, + STATE(6053), 1, + sym_extends_clause, + [164791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(1437), 1, anon_sym_RPAREN, - ACTIONS(7547), 1, + ACTIONS(7555), 1, anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [163479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7553), 1, - sym_xhp_class_identifier, - ACTIONS(7551), 2, - sym_identifier, - sym_xhp_identifier, - [163490] = 4, + STATE(5158), 1, + aux_sym_shape_type_specifier_repeat1, + [164804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7555), 1, + ACTIONS(3859), 1, anon_sym_SEMI, - STATE(4673), 1, - aux_sym_const_declaration_repeat1, - [163503] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - sym_xhp_class_identifier, - ACTIONS(7557), 2, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(7566), 1, sym_identifier, - sym_xhp_identifier, - [163514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7561), 1, - anon_sym_COLON, - STATE(6024), 1, - sym_capability_list, - [163527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163540] = 4, + STATE(3779), 1, + sym_parameters, + [164830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 1, - anon_sym_SEMI, - ACTIONS(7565), 1, + ACTIONS(5520), 1, + anon_sym_RBRACE, + ACTIONS(7568), 1, anon_sym_COMMA, - STATE(4943), 1, + STATE(4298), 1, aux_sym_use_statement_repeat1, - [163553] = 4, + [164843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(5016), 1, + anon_sym_RPAREN, + ACTIONS(7570), 1, anon_sym_COMMA, - ACTIONS(7567), 1, - anon_sym_SEMI, - STATE(4963), 1, - aux_sym_const_declaration_repeat1, - [163566] = 4, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [164856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(3796), 1, + ACTIONS(7572), 1, anon_sym_RPAREN, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [163579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7569), 1, - anon_sym_COMMA, - ACTIONS(7571), 1, - anon_sym_RPAREN, - STATE(4968), 1, - aux_sym_tuple_type_specifier_repeat1, - [163592] = 4, + [164869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7573), 1, - anon_sym_LBRACE, - STATE(6334), 1, - sym_extends_clause, - [163605] = 4, + ACTIONS(7576), 1, + sym_xhp_class_identifier, + ACTIONS(7574), 2, + sym_identifier, + sym_xhp_identifier, + [164880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5038), 1, + anon_sym_RPAREN, + ACTIONS(7578), 1, anon_sym_COMMA, - ACTIONS(7575), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163618] = 3, + STATE(4670), 1, + aux_sym_tuple_type_specifier_repeat1, + [164893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(7582), 1, sym_xhp_class_identifier, - ACTIONS(7577), 2, + ACTIONS(7580), 2, sym_identifier, sym_xhp_identifier, - [163629] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5392), 1, - anon_sym_SEMI, - ACTIONS(7581), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [163642] = 4, + [164904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7583), 1, + ACTIONS(7584), 1, anon_sym_LBRACE, - STATE(6146), 1, + STATE(6078), 1, sym_extends_clause, - [163655] = 4, + [164917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(3780), 1, + ACTIONS(7586), 1, anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163668] = 4, + STATE(4931), 1, + aux_sym_property_declaration_repeat1, + [164930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(1759), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7585), 1, - anon_sym_RPAREN, - STATE(4832), 1, - aux_sym_unset_statement_repeat1, - [163681] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [164943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 1, + ACTIONS(5464), 1, anon_sym_RBRACE, - ACTIONS(7589), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4298), 1, aux_sym_use_statement_repeat1, - [163694] = 4, + [164956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(7591), 1, - anon_sym_SEMI, - STATE(1653), 1, - sym_compound_statement, - [163707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5394), 1, + ACTIONS(5464), 1, anon_sym_RBRACE, - ACTIONS(7593), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - STATE(4107), 1, + STATE(5102), 1, aux_sym_use_statement_repeat1, - [163720] = 4, + [164969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(7595), 1, - anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163733] = 4, + ACTIONS(7590), 1, + anon_sym_SEMI, + STATE(5053), 1, + aux_sym_property_declaration_repeat1, + [164982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7592), 1, + sym_variable, + STATE(6231), 1, + sym_variadic_modifier, + [164995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6703), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(7594), 1, anon_sym_SEMI, - STATE(1214), 1, + STATE(2887), 1, sym_compound_statement, - [163746] = 4, + [165008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, - anon_sym_COMMA, - ACTIONS(7599), 1, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(7596), 1, anon_sym_SEMI, - STATE(5117), 1, - aux_sym__class_const_declaration_repeat1, - [163759] = 4, + STATE(1165), 1, + sym_compound_statement, + [165021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(7598), 1, anon_sym_COMMA, ACTIONS(7601), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163772] = 3, + STATE(5117), 1, + aux_sym_parameters_repeat1, + [165034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, - sym_xhp_class_identifier, - ACTIONS(7603), 2, - sym_identifier, - sym_xhp_identifier, - [163783] = 3, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(7603), 1, + anon_sym_SEMI, + STATE(1642), 1, + sym_compound_statement, + [165047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(7607), 1, sym_xhp_class_identifier, - ACTIONS(7607), 2, + ACTIONS(7605), 2, sym_identifier, sym_xhp_identifier, - [163794] = 4, + [165058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(6691), 1, anon_sym_COMMA, - ACTIONS(7611), 1, + ACTIONS(7541), 1, anon_sym_SEMI, - STATE(5046), 1, + STATE(5069), 1, aux_sym_property_declaration_repeat1, - [163807] = 4, + [165071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, ACTIONS(7613), 1, - anon_sym_LBRACE, - STATE(6164), 1, - sym_extends_clause, - [163820] = 4, + anon_sym_EQ, + ACTIONS(7611), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [165095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, - anon_sym_SEMI, ACTIONS(7617), 1, - anon_sym_as, - ACTIONS(7619), 1, anon_sym_EQ, - [163833] = 4, + ACTIONS(7615), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [165106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(7619), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163846] = 4, + ACTIONS(7622), 1, + anon_sym_SEMI, + STATE(5124), 1, + aux_sym_xhp_category_declaration_repeat1, + [165119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - ACTIONS(7621), 1, - anon_sym_COLON, - STATE(6241), 1, - sym_capability_list, - [163859] = 4, + ACTIONS(6695), 1, + anon_sym_COMMA, + ACTIONS(7624), 1, + anon_sym_SEMI, + STATE(5078), 1, + aux_sym__class_const_declaration_repeat1, + [165132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, - anon_sym_RBRACE, - ACTIONS(7623), 1, + ACTIONS(7626), 1, anon_sym_COMMA, - STATE(4107), 1, + ACTIONS(7628), 1, + anon_sym_RBRACE, + STATE(5111), 1, aux_sym_use_statement_repeat1, - [163872] = 4, + [165145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5414), 1, - anon_sym_RBRACE, - ACTIONS(7625), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - STATE(5107), 1, - aux_sym_use_statement_repeat1, - [163885] = 4, + ACTIONS(7630), 1, + anon_sym_RPAREN, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [165158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5040), 1, anon_sym_RPAREN, - ACTIONS(6013), 1, + ACTIONS(7632), 1, anon_sym_COMMA, - STATE(5131), 1, - aux_sym_function_type_specifier_repeat1, - [163898] = 4, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [165171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5414), 1, - anon_sym_RBRACE, - ACTIONS(7625), 1, + ACTIONS(1413), 1, + anon_sym_RPAREN, + ACTIONS(7634), 1, anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [163911] = 4, + STATE(5066), 1, + aux_sym_shape_type_specifier_repeat1, + [165184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, - anon_sym_RBRACE, - ACTIONS(7623), 1, + ACTIONS(7636), 1, anon_sym_COMMA, - STATE(5075), 1, - aux_sym_use_statement_repeat1, - [163924] = 4, + ACTIONS(7638), 1, + anon_sym_RPAREN, + STATE(5072), 1, + aux_sym_shape_type_specifier_repeat1, + [165197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - anon_sym_RBRACE, - ACTIONS(7629), 1, + ACTIONS(7642), 1, + anon_sym_EQ, + ACTIONS(7640), 2, anon_sym_COMMA, - STATE(5035), 1, - aux_sym_xhp_enum_type_repeat1, - [163937] = 4, + anon_sym_RPAREN, + [165208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, + ACTIONS(1497), 1, + anon_sym_RBRACK, + ACTIONS(7644), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [163950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7627), 1, - anon_sym_RBRACE, - ACTIONS(7510), 2, - sym_integer, - sym_string, - [163961] = 4, + STATE(4404), 1, + aux_sym_array_repeat1, + [165221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5038), 1, anon_sym_RPAREN, - ACTIONS(6013), 1, + ACTIONS(7578), 1, anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [163974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7631), 1, - anon_sym_LBRACE, - STATE(6208), 1, - sym_extends_clause, - [163987] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, - anon_sym_as, - ACTIONS(7637), 1, - anon_sym_EQ, - [164000] = 3, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [165234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_EQ, - ACTIONS(7639), 2, - anon_sym_COMMA, + ACTIONS(1413), 1, anon_sym_RPAREN, - [164011] = 3, + ACTIONS(7634), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [165247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, + ACTIONS(7648), 1, sym_xhp_class_identifier, - ACTIONS(7643), 2, + ACTIONS(7646), 2, sym_identifier, sym_xhp_identifier, - [164022] = 3, + [165258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1323), 1, + anon_sym_RPAREN, + ACTIONS(7650), 1, + anon_sym_COMMA, + STATE(4711), 1, + aux_sym_shape_type_specifier_repeat1, + [165271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, + ACTIONS(7654), 1, sym_xhp_class_identifier, - ACTIONS(7647), 2, + ACTIONS(7652), 2, sym_identifier, sym_xhp_identifier, - [164033] = 4, + [165282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(7656), 1, anon_sym_COMMA, - ACTIONS(7651), 1, + ACTIONS(7658), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 1, - anon_sym_RBRACE, - ACTIONS(7655), 1, - anon_sym_COMMA, - STATE(5087), 1, - aux_sym_use_statement_repeat1, - [164059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(7657), 1, - anon_sym_SEMI, - STATE(1208), 1, - sym_compound_statement, - [164072] = 4, + STATE(4714), 1, + aux_sym_shape_type_specifier_repeat1, + [165295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(7660), 1, anon_sym_COMMA, - ACTIONS(7659), 1, + ACTIONS(7662), 1, anon_sym_RPAREN, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164085] = 4, + STATE(5153), 1, + aux_sym_shape_repeat1, + [165308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(7661), 1, + ACTIONS(7664), 1, anon_sym_RPAREN, - STATE(4832), 1, + STATE(4734), 1, aux_sym_unset_statement_repeat1, - [164098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(7663), 1, - anon_sym_SEMI, - STATE(4920), 1, - sym_compound_statement, - [164111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5444), 1, - anon_sym_RBRACE, - ACTIONS(7665), 1, - anon_sym_COMMA, - STATE(4107), 1, - aux_sym_use_statement_repeat1, - [164124] = 4, + [165321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1411), 1, anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(7666), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164137] = 4, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [165334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, - anon_sym_COMMA, ACTIONS(7670), 1, - anon_sym_RPAREN, - STATE(5109), 1, - aux_sym__anonymous_function_use_clause_repeat1, - [164150] = 4, + sym_xhp_class_identifier, + ACTIONS(7668), 2, + sym_identifier, + sym_xhp_identifier, + [165345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5883), 1, + anon_sym_GT_GT, + ACTIONS(7672), 1, anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164163] = 3, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [165358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7674), 1, - sym_xhp_class_identifier, - ACTIONS(7672), 2, - sym_identifier, - sym_xhp_identifier, - [164174] = 4, + ACTIONS(5883), 1, + anon_sym_GT_GT, + ACTIONS(7672), 1, + anon_sym_COMMA, + STATE(5082), 1, + aux_sym_module_attribute_repeat1, + [165371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_RPAREN, - ACTIONS(3685), 1, + ACTIONS(1529), 1, + anon_sym_RBRACE, + ACTIONS(7674), 1, anon_sym_COMMA, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164187] = 4, + STATE(4404), 1, + aux_sym_array_repeat1, + [165384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, + ACTIONS(6550), 1, + anon_sym_GT_GT, ACTIONS(7676), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164200] = 4, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [165397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7678), 1, - anon_sym_SEMI, - ACTIONS(7680), 1, - anon_sym_as, - ACTIONS(7682), 1, - anon_sym_EQ, - [164213] = 4, + ACTIONS(5881), 1, + anon_sym_GT_GT, + ACTIONS(7679), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [165410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(1480), 1, + anon_sym_RBRACE, + ACTIONS(3753), 1, anon_sym_COMMA, - ACTIONS(7684), 1, - anon_sym_SEMI, - STATE(5117), 1, - aux_sym__class_const_declaration_repeat1, - [164226] = 4, + STATE(5145), 1, + aux_sym_array_repeat1, + [165423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_extends, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(6246), 1, - sym_extends_clause, - [164239] = 4, + ACTIONS(7683), 1, + sym_xhp_class_identifier, + ACTIONS(7681), 2, + sym_identifier, + sym_xhp_identifier, + [165434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7688), 1, - anon_sym_SEMI, - ACTIONS(7690), 1, + ACTIONS(5716), 1, anon_sym_COMMA, - STATE(5117), 1, - aux_sym__class_const_declaration_repeat1, - [164252] = 4, + ACTIONS(7685), 1, + anon_sym_RPAREN, + STATE(4379), 1, + aux_sym_xhp_children_declaration_repeat1, + [165447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(5865), 1, + anon_sym_GT_GT, + ACTIONS(7687), 1, anon_sym_COMMA, - ACTIONS(7693), 1, - anon_sym_SEMI, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [164265] = 4, + STATE(5147), 1, + aux_sym_module_attribute_repeat1, + [165460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(1797), 1, + anon_sym_RPAREN, + ACTIONS(7689), 1, anon_sym_COMMA, - ACTIONS(7695), 1, - anon_sym_SEMI, - STATE(3702), 1, - aux_sym_tuple_type_specifier_repeat1, - [164278] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, - anon_sym_RBRACE, - ACTIONS(7699), 1, + ACTIONS(5432), 1, + anon_sym_RPAREN, + ACTIONS(7691), 1, anon_sym_COMMA, - STATE(5092), 1, - aux_sym_xhp_enum_type_repeat1, - [164291] = 4, + STATE(4781), 1, + aux_sym_shape_repeat1, + [165486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - ACTIONS(7701), 1, - anon_sym_SEMI, - STATE(4922), 1, - sym_compound_statement, - [164304] = 4, + ACTIONS(5865), 1, + anon_sym_GT_GT, + ACTIONS(7687), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [165499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(5851), 1, + anon_sym_GT_GT, + ACTIONS(7693), 1, anon_sym_COMMA, - ACTIONS(7703), 1, - anon_sym_SEMI, - STATE(4115), 1, - aux_sym_echo_statement_repeat1, - [164317] = 4, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [165512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, - anon_sym_SEMI, - ACTIONS(7707), 1, + ACTIONS(7695), 1, anon_sym_COMMA, - STATE(5123), 1, + ACTIONS(7698), 1, + anon_sym_SEMI, + STATE(5156), 1, aux_sym_xhp_attribute_declaration_repeat1, - [164330] = 4, + [165525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 1, + ACTIONS(1387), 1, anon_sym_RPAREN, - ACTIONS(7710), 1, + ACTIONS(7700), 1, anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [164343] = 4, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [165538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_COMMA, - ACTIONS(7713), 1, + ACTIONS(1391), 1, anon_sym_RPAREN, - STATE(4183), 1, - aux_sym_xhp_children_declaration_repeat1, - [164356] = 4, + ACTIONS(7702), 1, + anon_sym_COMMA, + STATE(4818), 1, + aux_sym_shape_type_specifier_repeat1, + [165551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7715), 1, + ACTIONS(7704), 1, anon_sym_SEMI, - STATE(4115), 1, + STATE(4366), 1, aux_sym_echo_statement_repeat1, - [164369] = 4, + [165564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, - anon_sym_SEMI, - ACTIONS(7719), 1, + ACTIONS(7706), 1, anon_sym_COMMA, - STATE(5127), 1, - aux_sym_xhp_category_declaration_repeat1, - [164382] = 4, + ACTIONS(7708), 1, + anon_sym_RPAREN, + STATE(5141), 1, + aux_sym_shape_type_specifier_repeat1, + [165577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(7710), 1, anon_sym_COMMA, - ACTIONS(7722), 1, - anon_sym_SEMI, - STATE(5046), 1, - aux_sym_property_declaration_repeat1, - [164395] = 4, + ACTIONS(7712), 1, + anon_sym_RBRACE, + STATE(4946), 1, + aux_sym_xhp_enum_type_repeat1, + [165590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(7714), 1, anon_sym_COMMA, - ACTIONS(7724), 1, + ACTIONS(7717), 1, anon_sym_SEMI, - STATE(5082), 1, - aux_sym_property_declaration_repeat1, - [164408] = 4, + STATE(5162), 1, + aux_sym__class_const_declaration_repeat1, + [165603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7726), 1, - anon_sym_SEMI, - ACTIONS(7728), 1, + ACTIONS(5032), 1, + anon_sym_GT, + ACTIONS(7719), 1, anon_sym_COMMA, - STATE(5069), 1, - aux_sym_use_statement_repeat1, - [164421] = 4, + STATE(5096), 1, + aux_sym_tuple_type_specifier_repeat1, + [165616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 1, + ACTIONS(1287), 1, anon_sym_RPAREN, - ACTIONS(5995), 1, + ACTIONS(7721), 1, anon_sym_COMMA, - STATE(5124), 1, - aux_sym_function_type_specifier_repeat1, - [164434] = 3, + STATE(4549), 1, + aux_sym_arguments_repeat1, + [165629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, - sym_xhp_class_identifier, - ACTIONS(7730), 2, - sym_identifier, - sym_xhp_identifier, - [164445] = 4, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7723), 1, + anon_sym_LBRACE, + STATE(6182), 1, + sym_extends_clause, + [165642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 1, - anon_sym_RPAREN, - ACTIONS(5995), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(5056), 1, - aux_sym_function_type_specifier_repeat1, - [164458] = 4, + ACTIONS(3987), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(7725), 1, anon_sym_COMMA, - ACTIONS(7734), 1, - anon_sym_SEMI, - STATE(5058), 1, - aux_sym_const_declaration_repeat1, - [164471] = 4, + ACTIONS(7727), 1, + anon_sym_GT, + STATE(4794), 1, + aux_sym_type_parameters_repeat1, + [165668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(7736), 1, - anon_sym_SEMI, - STATE(5046), 1, - aux_sym_property_declaration_repeat1, - [164484] = 4, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(5504), 1, + anon_sym_RBRACE, + ACTIONS(7729), 1, anon_sym_COMMA, - ACTIONS(7738), 1, - anon_sym_SEMI, - STATE(5078), 1, - aux_sym__class_const_declaration_repeat1, - [164497] = 4, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [165694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(7740), 1, + ACTIONS(7731), 1, anon_sym_SEMI, - STATE(5117), 1, + STATE(5162), 1, aux_sym__class_const_declaration_repeat1, - [164510] = 4, + [165707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(7742), 1, - anon_sym_SEMI, - STATE(1183), 1, - sym_compound_statement, - [164523] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7733), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7746), 1, + ACTIONS(7737), 1, sym_xhp_class_identifier, - ACTIONS(7744), 2, + ACTIONS(7735), 2, sym_identifier, sym_xhp_identifier, - [164534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7748), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [164542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_member_declarations, - [164552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(3953), 1, - sym_compound_statement, - [164562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1012), 1, - sym_member_declarations, - [164572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(90), 1, - sym_parenthesized_expression, - [164582] = 3, + [165731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7739), 1, anon_sym_LBRACE, - STATE(4012), 1, - sym_compound_statement, - [164592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7752), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [164600] = 3, + STATE(6193), 1, + sym_extends_clause, + [165744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_member_declarations, - [164610] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7741), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [165757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4698), 1, - sym_member_declarations, - [164620] = 3, + ACTIONS(5004), 1, + anon_sym_RPAREN, + ACTIONS(7743), 1, + anon_sym_COMMA, + STATE(5128), 1, + aux_sym_tuple_type_specifier_repeat1, + [165770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1003), 1, - sym_member_declarations, - [164630] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7745), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(4926), 1, - sym_compound_statement, - [164640] = 3, - ACTIONS(3), 1, + ACTIONS(1709), 1, + anon_sym_SEMI, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165796] = 4, + ACTIONS(5544), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7747), 1, anon_sym_LPAREN, - STATE(163), 1, - sym_parenthesized_expression, - [164650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(998), 1, - sym_member_declarations, - [164660] = 3, + ACTIONS(7749), 1, + aux_sym_function_type_specifier_token1, + STATE(3780), 1, + sym_parameters, + [165809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(995), 1, - sym_member_declarations, - [164670] = 3, + ACTIONS(5498), 1, + anon_sym_RBRACE, + ACTIONS(7751), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [165822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7754), 1, + ACTIONS(7755), 1, + sym_xhp_class_identifier, + ACTIONS(7753), 2, sym_identifier, - ACTIONS(7756), 1, - anon_sym_class, - [164680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1401), 1, - sym_member_declarations, - [164690] = 3, + sym_xhp_identifier, + [165833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - sym_identifier, - ACTIONS(7760), 1, - anon_sym_class, - [164700] = 3, + ACTIONS(5004), 1, + anon_sym_RPAREN, + ACTIONS(7743), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [165846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - sym_identifier, - ACTIONS(7764), 1, - anon_sym_class, - [164710] = 3, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(7757), 1, + anon_sym_COMMA, + STATE(5134), 1, + aux_sym_shape_type_specifier_repeat1, + [165859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1399), 1, - sym_member_declarations, - [164720] = 3, + ACTIONS(5498), 1, + anon_sym_RBRACE, + ACTIONS(7751), 1, + anon_sym_COMMA, + STATE(5169), 1, + aux_sym_use_statement_repeat1, + [165872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1398), 1, - sym_member_declarations, - [164730] = 3, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(7759), 1, + anon_sym_RPAREN, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [165885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(1670), 1, - sym_compound_statement, - [164740] = 3, + ACTIONS(7761), 1, + anon_sym_COMMA, + ACTIONS(7763), 1, + anon_sym_RBRACE, + STATE(5202), 1, + aux_sym_use_statement_repeat1, + [165898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(7767), 1, + sym_xhp_class_identifier, + ACTIONS(7765), 2, sym_identifier, - ACTIONS(7768), 1, - anon_sym_class, - [164750] = 3, + sym_xhp_identifier, + [165909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7770), 1, - sym_identifier, - STATE(3454), 1, - sym_enumerator, - [164760] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7769), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4696), 1, - sym_member_declarations, - [164770] = 3, + ACTIONS(7771), 1, + anon_sym_EQ, + ACTIONS(6563), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [165933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(162), 1, - sym_parenthesized_expression, - [164780] = 2, + ACTIONS(5849), 1, + anon_sym_GT_GT, + ACTIONS(7773), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [165946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7772), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [164788] = 2, + ACTIONS(7775), 1, + anon_sym_COMMA, + ACTIONS(7777), 1, + anon_sym_RBRACE, + STATE(5179), 1, + aux_sym_use_statement_repeat1, + [165959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [164796] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7779), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [165972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(1868), 1, - sym_compound_statement, - [164806] = 3, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(7781), 1, + anon_sym_RPAREN, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [165985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7776), 1, + ACTIONS(7785), 1, + sym_xhp_class_identifier, + ACTIONS(7783), 2, sym_identifier, - ACTIONS(7778), 1, - anon_sym_class, - [164816] = 3, + sym_xhp_identifier, + [165996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(6132), 1, - sym_parenthesized_expression, - [164826] = 3, + ACTIONS(1527), 1, + anon_sym_RBRACK, + ACTIONS(3776), 1, + anon_sym_COMMA, + STATE(5057), 1, + aux_sym_array_repeat1, + [166009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7782), 1, + ACTIONS(7789), 1, + sym_xhp_class_identifier, + ACTIONS(7787), 2, sym_identifier, - ACTIONS(7784), 1, - anon_sym_class, - [164836] = 3, + sym_xhp_identifier, + [166020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(165), 1, - sym_parenthesized_expression, - [164846] = 3, + 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(7786), 1, - sym_identifier, - ACTIONS(7788), 1, - anon_sym_class, - [164856] = 3, + ACTIONS(7795), 1, + anon_sym_EQ, + ACTIONS(7793), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [166044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_member_declarations, - [164866] = 3, + ACTIONS(3692), 1, + anon_sym_RPAREN, + ACTIONS(7797), 1, + anon_sym_COMMA, + STATE(5117), 1, + aux_sym_parameters_repeat1, + [166057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7790), 1, + ACTIONS(7801), 1, + sym_xhp_class_identifier, + ACTIONS(7799), 2, sym_identifier, - ACTIONS(7792), 1, - anon_sym_class, - [164876] = 2, + sym_xhp_identifier, + [166068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 2, - anon_sym_SEMI, + ACTIONS(5466), 1, + anon_sym_RBRACE, + ACTIONS(7803), 1, anon_sym_COMMA, - [164884] = 3, + STATE(5219), 1, + aux_sym_use_statement_repeat1, + [166081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(3982), 1, - sym_compound_statement, - [164894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7794), 1, - sym_identifier, - ACTIONS(7796), 1, - anon_sym_class, - [164904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7798), 1, - sym_identifier, - ACTIONS(7800), 1, + ACTIONS(7805), 1, anon_sym_SEMI, - [164914] = 2, + STATE(1639), 1, + sym_compound_statement, + [166094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 2, - anon_sym_SEMI, + ACTIONS(5466), 1, + anon_sym_RBRACE, + ACTIONS(7803), 1, anon_sym_COMMA, - [164922] = 2, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [166107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 2, + ACTIONS(7807), 1, anon_sym_SEMI, - anon_sym_COMMA, - [164930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_compound_statement, - [164940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(109), 1, - sym_parenthesized_expression, - [164950] = 2, + ACTIONS(7809), 1, + anon_sym_as, + ACTIONS(7811), 1, + anon_sym_EQ, + [166120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7804), 2, - sym_xhp_identifier, + ACTIONS(7815), 1, sym_xhp_class_identifier, - [164958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7806), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [164966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7808), 1, + ACTIONS(7813), 2, sym_identifier, - ACTIONS(7810), 1, - anon_sym_class, - [164976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - STATE(985), 1, - sym_compound_statement, - [164986] = 2, + sym_xhp_identifier, + [166131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 2, + ACTIONS(1729), 1, anon_sym_SEMI, + ACTIONS(3790), 1, anon_sym_COMMA, - [164994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7814), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [165002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1099), 1, - anon_sym_BSLASH, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - [165012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(6182), 1, - sym_capability_list, - [165022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5097), 1, - sym_capability_list, - [165032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5219), 1, - sym_capability_list, - [165042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - sym_identifier, - ACTIONS(7818), 1, - anon_sym_class, - [165052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7820), 1, - sym_identifier, - ACTIONS(7822), 1, - anon_sym_class, - [165062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4695), 1, - sym_member_declarations, - [165072] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1567), 1, - sym_member_declarations, - [165082] = 3, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7824), 1, - sym_identifier, - ACTIONS(7826), 1, - anon_sym_class, - [165092] = 3, + ACTIONS(6067), 1, + anon_sym_COMMA, + ACTIONS(7817), 1, + anon_sym_SEMI, + STATE(3798), 1, + aux_sym_tuple_type_specifier_repeat1, + [166170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7819), 1, anon_sym_LBRACE, - STATE(1568), 1, - sym_member_declarations, - [165102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(5805), 1, - sym_parenthesized_expression, - [165112] = 3, + STATE(6330), 1, + sym_extends_clause, + [166183] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_compound_statement, - [165122] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7821), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(77), 1, - sym_parenthesized_expression, - [165132] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7823), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1013), 1, - sym_member_declarations, - [165142] = 3, + ACTIONS(1553), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1571), 1, - sym_member_declarations, - [165152] = 3, + ACTIONS(7827), 1, + sym_xhp_class_identifier, + ACTIONS(7825), 2, + sym_identifier, + sym_xhp_identifier, + [166233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(131), 1, - sym_parenthesized_expression, - [165162] = 3, + ACTIONS(1541), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7829), 1, anon_sym_LBRACE, - STATE(1574), 1, - sym_member_declarations, - [165172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - STATE(3723), 1, - aux_sym_qualified_identifier_repeat1, - [165182] = 3, + STATE(6299), 1, + sym_extends_clause, + [166259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7831), 1, anon_sym_LBRACE, - STATE(3974), 1, - sym_compound_statement, - [165192] = 3, + STATE(5863), 1, + sym_extends_clause, + [166272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(64), 1, - sym_parenthesized_expression, - [165202] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7833), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 1, - sym_variable, - ACTIONS(7832), 1, + ACTIONS(7835), 1, + anon_sym_COMMA, + ACTIONS(7838), 1, anon_sym_RPAREN, - [165212] = 3, + STATE(5217), 1, + aux_sym__anonymous_function_use_clause_repeat1, + [166298] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166311] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1578), 1, - sym_member_declarations, - [165222] = 2, + anon_sym_RBRACE, + ACTIONS(7840), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [166324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 1, + anon_sym_RBRACE, + ACTIONS(7842), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [166337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7670), 2, + ACTIONS(3790), 1, anon_sym_COMMA, + ACTIONS(7844), 1, anon_sym_RPAREN, - [165230] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7834), 1, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3897), 1, anon_sym_SEMI, - ACTIONS(7836), 1, - anon_sym_EQ, - [165240] = 3, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - anon_sym_LBRACE, - ACTIONS(7840), 1, - anon_sym_as, - [165250] = 3, + ACTIONS(7848), 1, + sym_xhp_class_identifier, + ACTIONS(7846), 2, + sym_identifier, + sym_xhp_identifier, + [166374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4675), 1, - sym_member_declarations, - [165260] = 3, + ACTIONS(5518), 1, + anon_sym_SEMI, + ACTIONS(7850), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [166387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7852), 1, anon_sym_LBRACE, - STATE(4674), 1, - sym_member_declarations, - [165270] = 2, + STATE(6311), 1, + sym_extends_clause, + [166400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 2, - anon_sym_LBRACE, + ACTIONS(1587), 1, anon_sym_SEMI, - [165278] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4666), 1, - sym_member_declarations, - [165288] = 3, + ACTIONS(5524), 1, + anon_sym_RBRACE, + ACTIONS(7854), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [166426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7856), 1, anon_sym_LBRACE, - ACTIONS(7846), 1, - anon_sym_as, - [165298] = 3, + STATE(6359), 1, + sym_extends_clause, + [166439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - anon_sym_SEMI, - ACTIONS(7850), 1, - anon_sym_EQ, - [165308] = 2, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(7858), 1, + anon_sym_RBRACK, + STATE(4924), 1, + aux_sym_capability_list_repeat1, + [166452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7852), 2, - sym_identifier, - sym_variable, - [165316] = 3, + ACTIONS(5524), 1, + anon_sym_RBRACE, + ACTIONS(7854), 1, + anon_sym_COMMA, + STATE(5220), 1, + aux_sym_use_statement_repeat1, + [166465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(127), 1, - sym_parenthesized_expression, - [165326] = 2, + ACTIONS(7860), 1, + anon_sym_COMMA, + ACTIONS(7862), 1, + anon_sym_GT, + STATE(5163), 1, + aux_sym_tuple_type_specifier_repeat1, + [166478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7854), 2, - anon_sym_SEMI, + ACTIONS(3790), 1, anon_sym_COMMA, - [165334] = 3, + ACTIONS(3967), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, - [165344] = 3, + ACTIONS(7864), 1, + anon_sym_EQ, + ACTIONS(3784), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [166502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5321), 1, - sym_capability_list, - [165354] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7866), 1, + anon_sym_SEMI, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5032), 1, - sym_capability_list, - [165364] = 3, + ACTIONS(7870), 1, + sym_xhp_class_identifier, + ACTIONS(7868), 2, + sym_identifier, + sym_xhp_identifier, + [166526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_compound_statement, - [165374] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7872), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_BSLASH, - STATE(1731), 1, - aux_sym_qualified_identifier_repeat1, - [165384] = 3, + ACTIONS(7874), 1, + anon_sym_COMMA, + ACTIONS(7876), 1, + anon_sym_RBRACE, + STATE(5227), 1, + aux_sym_use_statement_repeat1, + [166552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(6050), 1, - sym_capability_list, - [165394] = 2, + ACTIONS(7878), 1, + anon_sym_COMMA, + ACTIONS(7880), 1, + anon_sym_RPAREN, + STATE(5164), 1, + aux_sym_arguments_repeat1, + [166565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7856), 2, + ACTIONS(3156), 1, anon_sym_COMMA, + ACTIONS(7882), 1, anon_sym_RPAREN, - [165402] = 3, + STATE(4734), 1, + aux_sym_unset_statement_repeat1, + [166578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4659), 1, - sym_member_declarations, - [165412] = 3, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(7884), 1, + anon_sym_RPAREN, + STATE(4366), 1, + aux_sym_echo_statement_repeat1, + [166591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7858), 1, - anon_sym_LBRACE, - ACTIONS(7860), 1, - anon_sym_as, - [165422] = 3, + ACTIONS(5973), 1, + anon_sym_COMMA, + ACTIONS(5975), 1, + anon_sym_RPAREN, + STATE(5133), 1, + aux_sym_tuple_type_specifier_repeat1, + [166604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_BSLASH, - STATE(2721), 1, - aux_sym_qualified_identifier_repeat1, - [165432] = 3, + ACTIONS(7888), 1, + sym_xhp_class_identifier, + ACTIONS(7886), 2, + sym_identifier, + sym_xhp_identifier, + [166615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_member_declarations, - [165442] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7890), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [166628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7862), 1, - anon_sym_LBRACE, - ACTIONS(7864), 1, - anon_sym_as, - [165452] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7892), 1, + anon_sym_SEMI, + STATE(5077), 1, + aux_sym_const_declaration_repeat1, + [166641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(3726), 1, - sym_parameters, - [165462] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7894), 1, + anon_sym_SEMI, + STATE(5174), 1, + aux_sym_const_declaration_repeat1, + [166654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7852), 1, - sym_variable, - ACTIONS(7866), 1, - sym_identifier, - [165472] = 3, + ACTIONS(7896), 1, + anon_sym_COMMA, + ACTIONS(7898), 1, + anon_sym_RPAREN, + STATE(5181), 1, + aux_sym_tuple_type_specifier_repeat1, + [166667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_member_declarations, - [165482] = 3, + ACTIONS(5500), 1, + anon_sym_SEMI, + ACTIONS(7900), 1, + anon_sym_COMMA, + STATE(4298), 1, + aux_sym_use_statement_repeat1, + [166680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(140), 1, - sym_parenthesized_expression, - [165492] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7902), 1, + anon_sym_SEMI, + STATE(5075), 1, + aux_sym_const_declaration_repeat1, + [166693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1483), 1, - sym_member_declarations, - [165502] = 3, + ACTIONS(7904), 1, + anon_sym_COMMA, + ACTIONS(7906), 1, + anon_sym_RPAREN, + STATE(5061), 1, + aux_sym_arguments_repeat1, + [166706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7852), 1, - sym_variable, - ACTIONS(7868), 1, - sym_identifier, - [165512] = 3, + ACTIONS(7908), 1, + anon_sym_COMMA, + ACTIONS(7910), 1, + anon_sym_GT, + STATE(5058), 1, + aux_sym_tuple_type_specifier_repeat1, + [166719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1667), 1, - sym_member_declarations, - [165522] = 3, + 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(5512), 1, - anon_sym_LBRACE, - STATE(4640), 1, - sym_member_declarations, - [165532] = 3, + ACTIONS(7916), 1, + anon_sym_EQ, + ACTIONS(7914), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [166743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4639), 1, - sym_member_declarations, - [165542] = 3, + ACTIONS(1484), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, + anon_sym_COMMA, + STATE(4951), 1, + aux_sym_array_repeat1, + [166756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, - sym_variable, - ACTIONS(6688), 1, + ACTIONS(5907), 1, + anon_sym_GT_GT, + ACTIONS(7918), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_module_attribute_repeat1, + [166769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COMMA, + ACTIONS(3932), 1, anon_sym_RPAREN, - [165552] = 3, + STATE(5050), 1, + aux_sym_list_expression_repeat1, + [166782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(134), 1, - sym_parenthesized_expression, - [165562] = 3, + 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(5508), 1, - anon_sym_LBRACE, - STATE(1304), 1, - sym_member_declarations, - [165572] = 3, + ACTIONS(2201), 1, + anon_sym_else, + ACTIONS(2203), 2, + anon_sym_elseif, + anon_sym_while, + [166806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1028), 1, - sym_member_declarations, - [165582] = 2, + 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(6033), 2, + ACTIONS(805), 1, anon_sym_LBRACE, + ACTIONS(7926), 1, anon_sym_SEMI, - [165590] = 3, + STATE(982), 1, + sym_compound_statement, + [166843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(176), 1, - sym_parenthesized_expression, - [165600] = 3, + ACTIONS(7930), 1, + sym_xhp_class_identifier, + ACTIONS(7928), 2, + sym_identifier, + sym_xhp_identifier, + [166854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7870), 1, - anon_sym_COLON, - ACTIONS(7872), 1, - anon_sym_EQ_EQ_GT, - [165610] = 3, + ACTIONS(5907), 1, + anon_sym_GT_GT, + ACTIONS(7918), 1, + anon_sym_COMMA, + STATE(5189), 1, + aux_sym_module_attribute_repeat1, + [166867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 1, + ACTIONS(805), 1, anon_sym_LBRACE, - STATE(1219), 1, + ACTIONS(7932), 1, + anon_sym_SEMI, + STATE(973), 1, sym_compound_statement, - [165620] = 3, + [166880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(805), 1, anon_sym_LBRACE, - STATE(1630), 1, - sym_member_declarations, - [165630] = 3, + ACTIONS(7934), 1, + anon_sym_SEMI, + STATE(949), 1, + sym_compound_statement, + [166893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4632), 1, - sym_member_declarations, - [165640] = 3, + ACTIONS(7938), 1, + sym_xhp_class_identifier, + ACTIONS(7936), 2, + sym_identifier, + sym_xhp_identifier, + [166904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1493), 1, - sym_member_declarations, - [165650] = 3, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(5652), 1, + anon_sym_LBRACK, + STATE(2261), 1, + sym_arguments, + [166917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1631), 1, - sym_member_declarations, - [165660] = 3, + ACTIONS(6740), 1, + anon_sym_COMMA, + ACTIONS(7940), 1, + anon_sym_SEMI, + STATE(5243), 1, + aux_sym_const_declaration_repeat1, + [166930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, - anon_sym_EQ, - ACTIONS(6248), 1, - anon_sym_LPAREN, - [165670] = 3, + ACTIONS(7942), 1, + anon_sym_COMMA, + ACTIONS(7944), 1, + anon_sym_SEMI, + STATE(5247), 1, + aux_sym_use_statement_repeat1, + [166943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4624), 1, + STATE(782), 1, sym_member_declarations, - [165680] = 3, + [166953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1629), 1, - sym_member_declarations, - [165690] = 3, + ACTIONS(7946), 1, + anon_sym_class, + ACTIONS(7948), 1, + sym_xhp_modifier, + [166963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1701), 1, - sym_member_declarations, - [165700] = 3, + STATE(4031), 1, + sym_compound_statement, + [166973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(4522), 1, sym_member_declarations, - [165710] = 3, + [166983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4613), 1, + STATE(4610), 1, sym_member_declarations, - [165720] = 3, + [166993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(859), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(948), 1, + STATE(4045), 1, sym_compound_statement, - [165730] = 3, + [167003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4607), 1, - sym_member_declarations, - [165740] = 3, + ACTIONS(7950), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [167011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(4513), 1, sym_member_declarations, - [165750] = 3, + [167021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1635), 1, - sym_member_declarations, - [165760] = 3, + ACTIONS(2663), 1, + anon_sym_BSLASH, + STATE(2221), 1, + aux_sym_qualified_identifier_repeat1, + [167031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1688), 1, + STATE(1471), 1, sym_member_declarations, - [165770] = 3, + [167041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(6103), 1, - sym_parenthesized_expression, - [165780] = 3, + ACTIONS(2655), 1, + sym_variable, + STATE(5603), 1, + sym_property_declarator, + [167051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1674), 1, + STATE(4557), 1, sym_member_declarations, - [165790] = 3, + [167061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1636), 1, + STATE(4558), 1, sym_member_declarations, - [165800] = 3, + [167071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1201), 1, - sym_compound_statement, - [165810] = 3, + STATE(1474), 1, + sym_member_declarations, + [167081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(118), 1, + STATE(91), 1, sym_parenthesized_expression, - [165820] = 3, + [167091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(805), 1, anon_sym_LBRACE, - STATE(3966), 1, + STATE(1011), 1, sym_compound_statement, - [165830] = 3, + [167101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1282), 1, + STATE(4562), 1, sym_member_declarations, - [165840] = 2, + [167111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 2, - anon_sym_class, - sym_xhp_modifier, - [165848] = 3, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1477), 1, + sym_member_declarations, + [167121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7954), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [167129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_member_declarations, + [167139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(4123), 1, + sym_compound_statement, + [167149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(89), 1, + STATE(180), 1, sym_parenthesized_expression, - [165858] = 3, + [167159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5973), 1, + ACTIONS(7956), 1, + sym_identifier, + ACTIONS(7958), 1, anon_sym_class, - ACTIONS(5977), 1, - sym_xhp_modifier, - [165868] = 3, + [167169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1637), 1, + STATE(4503), 1, sym_member_declarations, - [165878] = 3, + [167179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym_BSLASH, - STATE(1766), 1, - aux_sym_qualified_identifier_repeat1, - [165888] = 3, + ACTIONS(7960), 1, + sym_identifier, + ACTIONS(7962), 1, + anon_sym_class, + [167189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(7964), 2, anon_sym_LBRACE, - STATE(945), 1, - sym_member_declarations, - [165898] = 3, + anon_sym_SEMI, + [167197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(2662), 1, - sym_compound_statement, - [165908] = 3, + STATE(4502), 1, + sym_member_declarations, + [167207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(4700), 1, + STATE(4564), 1, sym_member_declarations, - [165918] = 3, + [167217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1626), 1, - sym_member_declarations, - [165928] = 3, + ACTIONS(7966), 1, + sym_identifier, + ACTIONS(7968), 1, + anon_sym_class, + [167227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - STATE(1789), 1, - sym_arguments, - [165938] = 3, + ACTIONS(7970), 1, + sym_identifier, + ACTIONS(7972), 1, + anon_sym_class, + [167237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(4579), 1, sym_member_declarations, - [165948] = 3, + [167247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 1, - anon_sym_COLON, - ACTIONS(6376), 1, - anon_sym_EQ_EQ_GT, - [165958] = 3, + ACTIONS(7974), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [167255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_member_declarations, - [165968] = 3, + ACTIONS(7976), 1, + sym_identifier, + ACTIONS(7978), 1, + anon_sym_class, + [167265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1032), 1, + STATE(4497), 1, sym_member_declarations, - [165978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - STATE(1164), 1, - sym_compound_statement, - [165988] = 2, + [167275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [165996] = 2, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_class, + [167285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7874), 2, + ACTIONS(41), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [166004] = 3, + STATE(1537), 1, + sym_compound_statement, + [167295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(2655), 1, sym_variable, - STATE(5129), 1, + STATE(5081), 1, sym_property_declarator, - [166014] = 3, + [167305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(5965), 1, + sym_parenthesized_expression, + [167315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7986), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(7988), 1, anon_sym_class, - [166024] = 3, + [167325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(3717), 1, - sym_parameters, - [166034] = 3, + ACTIONS(7990), 1, + sym_identifier, + ACTIONS(7992), 1, + sym_variable, + [167335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1034), 1, - sym_member_declarations, - [166044] = 3, + ACTIONS(7994), 1, + sym_identifier, + ACTIONS(7996), 1, + anon_sym_class, + [167345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1572), 1, + STATE(4536), 1, sym_member_declarations, - [166054] = 3, + [167355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 1, - anon_sym_LBRACE, - STATE(1165), 1, - sym_compound_statement, - [166064] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5777), 1, + sym_capability_list, + [167365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, + ACTIONS(7984), 1, anon_sym_LPAREN, - STATE(6019), 1, + STATE(6211), 1, sym_parenthesized_expression, - [166074] = 3, + [167375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4704), 1, + STATE(1643), 1, sym_member_declarations, - [166084] = 3, + [167385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1182), 1, + STATE(1521), 1, sym_member_declarations, - [166094] = 2, + [167395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [166102] = 3, + ACTIONS(7998), 1, + sym_identifier, + ACTIONS(8000), 1, + anon_sym_class, + [167405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1187), 1, + STATE(4485), 1, sym_member_declarations, - [166112] = 3, + [167415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(805), 1, anon_sym_LBRACE, - STATE(4630), 1, - sym_member_declarations, - [166122] = 3, + STATE(988), 1, + sym_compound_statement, + [167425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(8002), 1, + sym_identifier, + ACTIONS(8004), 1, + anon_sym_class, + [167435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1196), 1, + STATE(4489), 1, sym_member_declarations, - [166132] = 3, + [167445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(8006), 1, + sym_identifier, + ACTIONS(8008), 1, + anon_sym_class, + [167455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(48), 1, + STATE(184), 1, sym_parenthesized_expression, - [166142] = 2, + [167465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7532), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [166150] = 2, + ACTIONS(8010), 1, + sym_identifier, + ACTIONS(8012), 1, + anon_sym_class, + [167475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [166158] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1903), 1, + sym_compound_statement, + [167485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 1, - anon_sym_COLON, - ACTIONS(6489), 1, - anon_sym_EQ_EQ_GT, - [166168] = 3, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_member_declarations, + [167495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7884), 1, - anon_sym_SEMI, - ACTIONS(7886), 1, - anon_sym_EQ, - [166178] = 3, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4600), 1, + sym_member_declarations, + [167505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7888), 1, + ACTIONS(8014), 1, anon_sym_LBRACE, - ACTIONS(7890), 1, + ACTIONS(8016), 1, anon_sym_as, - [166188] = 3, + [167515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7892), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(874), 1, - sym_compound_statement, - [166198] = 3, + STATE(4527), 1, + sym_member_declarations, + [167525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(3741), 1, - sym_parameters, - [166208] = 3, + ACTIONS(321), 1, + anon_sym_LBRACE, + STATE(936), 1, + sym_compound_statement, + [167535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5982), 1, - sym_capability_list, - [166218] = 3, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_member_declarations, + [167545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5365), 1, - sym_capability_list, - [166228] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1370), 1, + sym_compound_statement, + [167555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5970), 1, - sym_capability_list, - [166238] = 2, + ACTIONS(7838), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [167563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 2, - anon_sym_RBRACE, + ACTIONS(5748), 2, anon_sym_COMMA, - [166246] = 3, + anon_sym_RBRACK, + [167571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(67), 1, + STATE(172), 1, sym_parenthesized_expression, - [166256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7894), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [166264] = 2, + [167581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7896), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [166272] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym_parenthesized_expression, + [167591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(6259), 2, anon_sym_LBRACE, - STATE(1246), 1, - sym_member_declarations, - [166282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7898), 2, - sym_integer, - sym_string, - [166290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7900), 1, anon_sym_SEMI, - ACTIONS(7902), 1, - anon_sym_EQ, - [166300] = 3, + [167599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(1878), 1, - sym_arguments, - [166310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 1, - anon_sym_LBRACE, - ACTIONS(7906), 1, - anon_sym_as, - [166320] = 3, + STATE(183), 1, + sym_parenthesized_expression, + [167609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7908), 1, - anon_sym_SEMI, - ACTIONS(7910), 1, - anon_sym_EQ, - [166330] = 3, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(3757), 1, + sym_parameters, + [167619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1666), 1, + STATE(4605), 1, sym_member_declarations, - [166340] = 2, + [167629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 2, - sym_identifier, - anon_sym_RBRACE, - [166348] = 3, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4606), 1, + sym_member_declarations, + [167639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, - anon_sym_as, - ACTIONS(6276), 1, - anon_sym_EQ, - [166358] = 3, + ACTIONS(2913), 1, + anon_sym_BSLASH, + STATE(1808), 1, + aux_sym_qualified_identifier_repeat1, + [167649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1539), 1, + STATE(4611), 1, sym_member_declarations, - [166368] = 3, + [167659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LBRACE, - STATE(2643), 1, - sym_compound_statement, - [166378] = 3, + ACTIONS(6734), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [167667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(1520), 1, sym_member_declarations, - [166388] = 2, + [167677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 2, + ACTIONS(8018), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [166396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7852), 1, - sym_variable, - ACTIONS(7914), 1, - sym_identifier, - [166406] = 3, + ACTIONS(8020), 1, + anon_sym_as, + [167687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(2562), 1, - sym_compound_statement, - [166416] = 3, + STATE(4614), 1, + sym_member_declarations, + [167697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1668), 1, + STATE(1634), 1, sym_member_declarations, - [166426] = 3, + [167707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1247), 1, + STATE(992), 1, sym_member_declarations, - [166436] = 3, + [167717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1479), 1, sym_member_declarations, - [166446] = 3, + [167727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(1470), 1, sym_member_declarations, - [166456] = 3, + [167737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1265), 1, + STATE(993), 1, sym_member_declarations, - [166466] = 3, + [167747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - [166476] = 3, + ACTIONS(8022), 1, + sym_variable, + ACTIONS(8024), 1, + anon_sym_RPAREN, + [167757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1248), 1, + STATE(997), 1, sym_member_declarations, - [166486] = 3, + [167767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1633), 1, sym_member_declarations, - [166496] = 3, + [167777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1250), 1, + STATE(1632), 1, sym_member_declarations, - [166506] = 3, + [167787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - STATE(1261), 1, - sym_member_declarations, - [166516] = 3, + STATE(987), 1, + sym_compound_statement, + [167797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1267), 1, + STATE(995), 1, sym_member_declarations, - [166526] = 3, + [167807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1055), 1, + STATE(996), 1, sym_member_declarations, - [166536] = 3, + [167817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(998), 1, sym_member_declarations, - [166546] = 3, + [167827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(3711), 1, - sym_parameters, - [166556] = 3, + STATE(163), 1, + sym_parenthesized_expression, + [167837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1056), 1, + STATE(1505), 1, sym_member_declarations, - [166566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7384), 2, - anon_sym_COMMA, - anon_sym_GT, - [166574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [166582] = 3, + [167847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1672), 1, - sym_compound_statement, - [166592] = 3, + STATE(1507), 1, + sym_member_declarations, + [167857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(1886), 1, - sym_compound_statement, - [166602] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(182), 1, + sym_parenthesized_expression, + [167867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(8026), 1, anon_sym_LBRACE, - STATE(1893), 1, - sym_compound_statement, - [166612] = 3, + ACTIONS(8028), 1, + anon_sym_as, + [167877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(4704), 1, sym_member_declarations, - [166622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7443), 1, - anon_sym_RPAREN, - ACTIONS(7830), 1, - sym_variable, - [166632] = 3, + [167887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(8030), 1, anon_sym_LBRACE, - STATE(2561), 1, + STATE(1370), 1, sym_compound_statement, - [166642] = 2, + [167897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 2, + ACTIONS(5592), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [166650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(5724), 1, - sym_parenthesized_expression, - [166660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(99), 1, - sym_parenthesized_expression, - [166670] = 3, + STATE(4706), 1, + sym_member_declarations, + [167907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(3998), 1, - sym_compound_statement, - [166680] = 3, + STATE(4715), 1, + sym_member_declarations, + [167917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1489), 1, - sym_compound_statement, - [166690] = 3, + STATE(4716), 1, + sym_member_declarations, + [167927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(4720), 1, sym_member_declarations, - [166700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7852), 1, - sym_variable, - ACTIONS(7920), 1, - sym_identifier, - [166710] = 3, + [167937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1330), 1, + STATE(4724), 1, sym_member_declarations, - [166720] = 3, + [167947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7922), 1, - anon_sym_SEMI, - ACTIONS(7924), 1, - anon_sym_EQ, - [166730] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(169), 1, + sym_parenthesized_expression, + [167957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1331), 1, + STATE(1626), 1, sym_member_declarations, - [166740] = 3, + [167967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1332), 1, - sym_member_declarations, - [166750] = 3, + STATE(1965), 1, + sym_compound_statement, + [167977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(1493), 1, anon_sym_LBRACE, - STATE(4725), 1, - sym_member_declarations, - [166760] = 3, + STATE(2771), 1, + sym_compound_statement, + [167987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4726), 1, + STATE(1451), 1, sym_member_declarations, - [166770] = 2, + [167997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7510), 2, - sym_integer, - sym_string, - [166778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1334), 1, + STATE(1481), 1, sym_member_declarations, - [166788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5915), 1, - sym_capability_list, - [166798] = 3, + [168007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(1485), 1, sym_member_declarations, - [166808] = 3, + [168017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4816), 1, + STATE(1498), 1, sym_member_declarations, - [166818] = 3, + [168027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5425), 1, - sym_capability_list, - [166828] = 3, + ACTIONS(8032), 1, + sym_identifier, + STATE(3508), 1, + sym_enumerator, + [168037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(4492), 1, sym_member_declarations, - [166838] = 3, + [168047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(3748), 1, - sym_parameters, - [166848] = 3, + ACTIONS(8034), 1, + anon_sym_LBRACE, + STATE(922), 1, + sym_compound_statement, + [168057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(1062), 1, sym_member_declarations, - [166858] = 3, + [168067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(1064), 1, sym_member_declarations, - [166868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5903), 1, - sym_capability_list, - [166878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3619), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym_arguments, - [166888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7926), 1, - anon_sym_as, - ACTIONS(7928), 1, - anon_sym_EQ, - [166898] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [166906] = 3, + [168077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(5638), 1, + STATE(165), 1, sym_parenthesized_expression, - [166916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, - anon_sym_SEMI, - ACTIONS(7934), 1, - anon_sym_EQ, - [166926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7409), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [166934] = 3, + [168087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1549), 1, - sym_member_declarations, - [166944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [166952] = 3, + STATE(4047), 1, + sym_compound_statement, + [168097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7938), 1, - anon_sym_SEMI, - ACTIONS(7940), 1, - anon_sym_EQ, - [166962] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(149), 1, + sym_parenthesized_expression, + [168107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1245), 1, + STATE(1065), 1, sym_member_declarations, - [166972] = 3, + [168117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1033), 1, + STATE(4740), 1, sym_member_declarations, - [166982] = 3, + [168127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1159), 1, + STATE(1067), 1, sym_member_declarations, - [166992] = 3, + [168137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1157), 1, + STATE(4743), 1, sym_member_declarations, - [167002] = 3, + [168147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5592), 1, anon_sym_LBRACE, - STATE(1603), 1, + STATE(4744), 1, sym_member_declarations, - [167012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LBRACE, - ACTIONS(7944), 1, - anon_sym_as, - [167022] = 3, + [168157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7946), 1, + ACTIONS(8036), 1, anon_sym_class, - ACTIONS(7948), 1, + ACTIONS(8038), 1, sym_xhp_modifier, - [167032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_member_declarations, - [167042] = 3, + [168167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1062), 1, + STATE(1068), 1, sym_member_declarations, - [167052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7950), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [167060] = 3, + [168177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1556), 1, - sym_member_declarations, - [167070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [167078] = 3, + STATE(4747), 1, + sym_compound_statement, + [168187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(124), 1, + STATE(170), 1, sym_parenthesized_expression, - [167088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(921), 1, - sym_member_declarations, - [167098] = 2, + [168197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 2, + ACTIONS(6141), 2, anon_sym_LBRACE, anon_sym_SEMI, - [167106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6300), 1, - anon_sym_as, - ACTIONS(6302), 1, - anon_sym_EQ, - [167116] = 3, + [168205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1254), 1, + STATE(1624), 1, sym_member_declarations, - [167126] = 3, + [168215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(1106), 1, sym_member_declarations, - [167136] = 3, + [168225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - anon_sym_class, - ACTIONS(6059), 1, - sym_xhp_modifier, - [167146] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1109), 1, + sym_member_declarations, + [168235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7956), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - ACTIONS(7958), 1, - anon_sym_as, - [167156] = 3, + STATE(1517), 1, + sym_member_declarations, + [168245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(3968), 1, - sym_compound_statement, - [167166] = 3, + STATE(1110), 1, + sym_member_declarations, + [168255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(154), 1, - sym_parenthesized_expression, - [167176] = 3, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1748), 1, + sym_member_declarations, + [168265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1337), 1, + STATE(1746), 1, sym_member_declarations, - [167186] = 3, + [168275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(1112), 1, sym_member_declarations, - [167196] = 3, + [168285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(5736), 1, - sym_parenthesized_expression, - [167206] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_member_declarations, + [168295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(1866), 1, - sym_compound_statement, - [167216] = 3, + ACTIONS(6535), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_EQ_EQ_GT, + [168305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5857), 1, - sym_capability_list, - [167226] = 3, + ACTIONS(7992), 1, + sym_variable, + ACTIONS(8040), 1, + sym_identifier, + [168315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4732), 1, - sym_member_declarations, - [167236] = 3, + ACTIONS(6865), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [168323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1339), 1, + STATE(1115), 1, sym_member_declarations, - [167246] = 3, + [168333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(1119), 1, sym_member_declarations, - [167256] = 3, + [168343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4734), 1, - sym_member_declarations, - [167266] = 3, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6001), 1, + sym_parenthesized_expression, + [168353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6469), 1, - anon_sym_COLON, - ACTIONS(6471), 1, - anon_sym_EQ_EQ_GT, - [167276] = 3, + ACTIONS(1123), 1, + anon_sym_BSLASH, + STATE(1840), 1, + aux_sym_qualified_identifier_repeat1, + [168363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LPAREN, - STATE(2343), 1, - sym_arguments, - [167286] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1617), 1, + sym_member_declarations, + [168373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 2, + ACTIONS(5598), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [167294] = 3, + STATE(1244), 1, + sym_member_declarations, + [168383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7960), 1, - anon_sym_as, - ACTIONS(7962), 1, - anon_sym_EQ, - [167304] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5758), 1, + sym_capability_list, + [168393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7964), 1, - anon_sym_SEMI, - ACTIONS(7966), 1, - anon_sym_EQ, - [167314] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(4814), 1, + sym_compound_statement, + [168403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(8042), 1, anon_sym_LBRACE, - STATE(4738), 1, - sym_member_declarations, - [167324] = 3, + ACTIONS(8044), 1, + anon_sym_as, + [168413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym_class, - ACTIONS(7970), 1, - sym_xhp_modifier, - [167334] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(164), 1, + sym_parenthesized_expression, + [168423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, - anon_sym_class, - ACTIONS(7974), 1, - sym_xhp_modifier, - [167344] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_member_declarations, + [168433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(4740), 1, + STATE(1616), 1, sym_member_declarations, - [167354] = 3, + [168443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 1, - anon_sym_COLON, - ACTIONS(6262), 1, - anon_sym_EQ_EQ_GT, - [167364] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(4950), 1, + sym_capability_list, + [168453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(8046), 1, anon_sym_LBRACE, - STATE(1066), 1, - sym_member_declarations, - [167374] = 3, + ACTIONS(8048), 1, + anon_sym_as, + [168463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, + ACTIONS(8050), 1, anon_sym_LBRACE, - ACTIONS(7978), 1, + ACTIONS(8052), 1, anon_sym_as, - [167384] = 3, + [168473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, - anon_sym_as, - ACTIONS(6272), 1, - anon_sym_EQ, - [167394] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_parenthesized_expression, + [168483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(802), 1, + STATE(1744), 1, sym_member_declarations, - [167404] = 3, + [168493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1415), 1, + STATE(1742), 1, sym_member_declarations, - [167414] = 3, + [168503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1249), 1, + STATE(1134), 1, sym_member_declarations, - [167424] = 3, + [168513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1414), 1, + STATE(1741), 1, sym_member_declarations, - [167434] = 3, + [168523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1410), 1, + STATE(1135), 1, sym_member_declarations, - [167444] = 2, + [168533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [167452] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(160), 1, + sym_parenthesized_expression, + [168543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, - anon_sym_BSLASH, - STATE(1785), 1, - aux_sym_qualified_identifier_repeat1, - [167462] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1136), 1, + sym_member_declarations, + [168553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1412), 1, + STATE(1518), 1, sym_member_declarations, - [167472] = 3, + [168563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(1139), 1, sym_member_declarations, - [167482] = 3, + [168573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1411), 1, + STATE(1141), 1, sym_member_declarations, - [167492] = 3, + [168583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7984), 1, anon_sym_LPAREN, - STATE(159), 1, + STATE(5934), 1, sym_parenthesized_expression, - [167502] = 3, + [168593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(3941), 1, - sym_compound_statement, - [167512] = 3, + STATE(1731), 1, + sym_member_declarations, + [168603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6078), 1, - anon_sym_class, - ACTIONS(6082), 1, - sym_xhp_modifier, - [167522] = 3, + ACTIONS(8054), 1, + anon_sym_LBRACE, + ACTIONS(8056), 1, + anon_sym_as, + [168613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1349), 1, + STATE(1193), 1, sym_member_declarations, - [167532] = 3, + [168623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(4741), 1, + STATE(1061), 1, sym_member_declarations, - [167542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7980), 1, - anon_sym_SEMI, - ACTIONS(7982), 1, - anon_sym_EQ, - [167552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7984), 2, - sym_identifier, - sym_variable, - [167560] = 3, + [168633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(5876), 1, - sym_parenthesized_expression, - [167570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5490), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1357), 1, + STATE(1706), 1, sym_member_declarations, - [167580] = 3, + [168643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1403), 1, + STATE(1198), 1, sym_member_declarations, - [167590] = 3, + [168653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1358), 1, + STATE(1206), 1, sym_member_declarations, - [167600] = 3, + [168663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1359), 1, + STATE(1215), 1, sym_member_declarations, - [167610] = 3, + [168673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(8058), 1, anon_sym_LBRACE, - STATE(1361), 1, - sym_member_declarations, - [167620] = 3, + STATE(895), 1, + sym_compound_statement, + [168683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1362), 1, + STATE(1224), 1, sym_member_declarations, - [167630] = 3, + [168693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1402), 1, + STATE(1225), 1, sym_member_declarations, - [167640] = 3, + [168703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7986), 1, - anon_sym_as, - ACTIONS(7988), 1, - anon_sym_EQ, - [167650] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1157), 1, + sym_member_declarations, + [168713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1400), 1, + STATE(1160), 1, sym_member_declarations, - [167660] = 3, + [168723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7990), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(819), 1, - sym_compound_statement, - [167670] = 3, + STATE(1164), 1, + sym_member_declarations, + [168733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_LBRACK, - STATE(5828), 1, - sym_capability_list, - [167680] = 3, + ACTIONS(5810), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [168741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - anon_sym_class, - ACTIONS(7994), 1, - sym_xhp_modifier, - [167690] = 3, + ACTIONS(8060), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [168749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1241), 1, - sym_compound_statement, - [167700] = 3, + STATE(1239), 1, + sym_member_declarations, + [168759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(84), 1, + STATE(157), 1, sym_parenthesized_expression, - [167710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6169), 1, - anon_sym_as, - ACTIONS(6171), 1, - anon_sym_EQ, - [167720] = 3, + [168769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(6039), 1, - sym_parenthesized_expression, - [167730] = 3, + STATE(3772), 1, + sym_parameters, + [168779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, - sym_variable, - STATE(5048), 1, - sym_property_declarator, - [167740] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1170), 1, + sym_member_declarations, + [168789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1662), 1, - sym_compound_statement, - [167750] = 3, + STATE(1242), 1, + sym_member_declarations, + [168799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6096), 1, - anon_sym_class, - ACTIONS(6100), 1, - sym_xhp_modifier, - [167760] = 3, + ACTIONS(8062), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [168807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(759), 1, - sym_compound_statement, - [167770] = 3, + STATE(1243), 1, + sym_member_declarations, + [168817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1278), 1, sym_member_declarations, - [167780] = 2, + [168827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 2, - anon_sym_SEMI, + ACTIONS(8064), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym_compound_statement, + [168837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7698), 2, anon_sym_COMMA, - [167788] = 3, + anon_sym_SEMI, + [168845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, - anon_sym_BSLASH, - STATE(3395), 1, - aux_sym_qualified_identifier_repeat1, - [167798] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1939), 1, + sym_compound_statement, + [168855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, - sym_variable, - STATE(5305), 1, - sym_property_declarator, - [167808] = 3, + ACTIONS(1493), 1, + anon_sym_LBRACE, + STATE(2646), 1, + sym_compound_statement, + [168865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(5969), 1, + STATE(168), 1, sym_parenthesized_expression, - [167818] = 3, + [168875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8000), 1, - sym_identifier, - STATE(3444), 1, - sym_enumerator, - [167828] = 3, + ACTIONS(8066), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [168883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - ACTIONS(8004), 1, - anon_sym_as, - [167838] = 3, + STATE(1027), 1, + sym_member_declarations, + [168893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_member_declarations, - [167848] = 3, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(5853), 1, + sym_parenthesized_expression, + [168903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1189), 1, sym_member_declarations, - [167858] = 3, + [168913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1380), 1, + STATE(1028), 1, sym_member_declarations, - [167868] = 3, + [168923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1577), 1, + STATE(1029), 1, sym_member_declarations, - [167878] = 2, + [168933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [167886] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(171), 1, + sym_parenthesized_expression, + [168943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - sym_variable, - ACTIONS(8006), 1, - sym_identifier, - [167896] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1341), 1, + sym_member_declarations, + [168953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(173), 1, + STATE(130), 1, sym_parenthesized_expression, - [167906] = 3, + [168963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1383), 1, - sym_member_declarations, - [167916] = 3, + STATE(4100), 1, + sym_compound_statement, + [168973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1379), 1, + STATE(1258), 1, sym_member_declarations, - [167926] = 3, + [168983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1393), 1, + STATE(1259), 1, sym_member_declarations, - [167936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6943), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [167944] = 3, + [168993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1470), 1, + STATE(1031), 1, sym_member_declarations, - [167954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5076), 2, - sym_identifier, - anon_sym_SEMI, - [167962] = 3, + [169003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8008), 1, + ACTIONS(1493), 1, anon_sym_LBRACE, - ACTIONS(8010), 1, - anon_sym_as, - [167972] = 3, + STATE(2674), 1, + sym_compound_statement, + [169013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4869), 1, - sym_compound_statement, - [167982] = 3, + STATE(1261), 1, + sym_member_declarations, + [169023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_BSLASH, - STATE(3565), 1, - aux_sym_qualified_identifier_repeat1, - [167992] = 3, + ACTIONS(5596), 1, + anon_sym_LBRACE, + STATE(1384), 1, + sym_member_declarations, + [169033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(179), 1, - sym_parenthesized_expression, - [168002] = 3, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1034), 1, + sym_member_declarations, + [169043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1394), 1, + STATE(1262), 1, sym_member_declarations, - [168012] = 3, + [169053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_EQ, - [168022] = 3, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1705), 1, + sym_member_declarations, + [169063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1263), 1, sym_member_declarations, - [168032] = 3, + [169073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, - anon_sym_class, - ACTIONS(8018), 1, - sym_xhp_modifier, - [168042] = 3, + ACTIONS(8068), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [169081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1076), 1, + STATE(1267), 1, sym_member_declarations, - [168052] = 3, + [169091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(1038), 1, sym_member_declarations, - [168062] = 3, + [169101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(6931), 2, + anon_sym_COMMA, + anon_sym_GT, + [169109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1348), 1, + STATE(1703), 1, sym_member_declarations, - [168072] = 3, + [169119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 1, - anon_sym_as, - ACTIONS(6214), 1, - anon_sym_EQ, - [168082] = 3, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1658), 1, + sym_member_declarations, + [169129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6110), 1, - anon_sym_class, - ACTIONS(6114), 1, - sym_xhp_modifier, - [168092] = 3, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1650), 1, + sym_member_declarations, + [169139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1078), 1, + STATE(1649), 1, sym_member_declarations, - [168102] = 2, + [169149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8020), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [168110] = 3, + ACTIONS(3712), 1, + anon_sym_LPAREN, + STATE(1912), 1, + sym_arguments, + [169159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1135), 1, - sym_member_declarations, - [168120] = 3, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(3779), 1, + sym_parameters, + [169169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(788), 1, + STATE(1644), 1, sym_member_declarations, - [168130] = 3, + [169179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1318), 1, + STATE(980), 1, sym_member_declarations, - [168140] = 3, + [169189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5596), 1, anon_sym_LBRACE, - STATE(1086), 1, + STATE(1012), 1, sym_member_declarations, - [168150] = 3, + [169199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_member_declarations, - [168160] = 3, + ACTIONS(7622), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [169207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6291), 1, + sym_parenthesized_expression, + [169217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, anon_sym_LBRACE, - STATE(1088), 1, - sym_member_declarations, - [168170] = 3, + STATE(841), 1, + sym_compound_statement, + [169227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - STATE(6099), 1, + STATE(105), 1, sym_parenthesized_expression, - [168180] = 3, + [169237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(6946), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(1307), 1, - sym_member_declarations, - [168190] = 2, + STATE(4151), 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, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 2, + ACTIONS(5598), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [168198] = 3, + STATE(1275), 1, + sym_member_declarations, + [169283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(6544), 1, + anon_sym_as, + ACTIONS(6546), 1, + anon_sym_EQ, + [169293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1074), 1, + STATE(1531), 1, sym_member_declarations, - [168208] = 3, + [169303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(792), 1, + STATE(1276), 1, sym_member_declarations, - [168218] = 2, + [169313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8072), 1, + anon_sym_LBRACE, + ACTIONS(8074), 1, + anon_sym_as, + [169323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1598), 1, + sym_compound_statement, + [169333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 2, + ACTIONS(7601), 2, anon_sym_COMMA, anon_sym_RPAREN, - [168226] = 3, + [169341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(1279), 1, sym_member_declarations, - [168236] = 3, + [169351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(1281), 1, sym_member_declarations, - [168246] = 3, + [169361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1890), 1, - sym_compound_statement, - [168256] = 3, + STATE(1282), 1, + sym_member_declarations, + [169371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, - [168266] = 3, + STATE(3777), 1, + sym_parameters, + [169381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8022), 1, - anon_sym_COLON, - ACTIONS(8024), 1, - anon_sym_EQ_EQ_GT, - [168276] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(128), 1, + sym_parenthesized_expression, + [169391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1901), 1, - sym_compound_statement, - [168286] = 3, + STATE(1285), 1, + sym_member_declarations, + [169401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1477), 1, + STATE(1167), 1, sym_member_declarations, - [168296] = 3, + [169411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1656), 1, - sym_member_declarations, - [168306] = 3, + ACTIONS(8076), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [169419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(97), 1, - sym_parenthesized_expression, - [168316] = 3, + ACTIONS(8078), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [169427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(3975), 1, - sym_compound_statement, - [168326] = 2, + STATE(1169), 1, + sym_member_declarations, + [169437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [168334] = 3, + ACTIONS(1493), 1, + anon_sym_LBRACE, + STATE(2688), 1, + sym_compound_statement, + [169447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8026), 1, + ACTIONS(8080), 1, + anon_sym_LBRACE, + ACTIONS(8082), 1, anon_sym_as, - ACTIONS(8028), 1, - anon_sym_EQ, - [168344] = 3, + [169457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(1173), 1, sym_member_declarations, - [168354] = 3, + [169467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8084), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(689), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(891), 1, sym_compound_statement, - [168364] = 3, + [169485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(75), 1, - sym_parenthesized_expression, - [168374] = 2, + ACTIONS(7005), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8086), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6088), 2, + ACTIONS(5588), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [168382] = 3, + STATE(1176), 1, + sym_member_declarations, + [169511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4861), 1, + STATE(742), 1, sym_member_declarations, - [168392] = 3, + [169521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(168), 1, - sym_parenthesized_expression, - [168402] = 3, + ACTIONS(8088), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [169529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1080), 1, + STATE(739), 1, sym_member_declarations, - [168412] = 3, + [169539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, - anon_sym_COLON, - ACTIONS(6392), 1, - anon_sym_EQ_EQ_GT, - [168422] = 3, + ACTIONS(8090), 1, + anon_sym_as, + ACTIONS(8092), 1, + anon_sym_EQ, + [169549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8030), 1, + ACTIONS(5153), 2, + sym_identifier, + anon_sym_SEMI, + [169557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8094), 1, anon_sym_class, - ACTIONS(8032), 1, + ACTIONS(8096), 1, sym_xhp_modifier, - [168432] = 3, + [169567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1017), 1, - sym_member_declarations, - [168442] = 3, + ACTIONS(6472), 1, + anon_sym_as, + ACTIONS(6474), 1, + anon_sym_EQ, + [169577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1132), 1, + STATE(1178), 1, sym_member_declarations, - [168452] = 3, + [169587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(4860), 1, - sym_member_declarations, - [168462] = 3, + STATE(4057), 1, + sym_compound_statement, + [169597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(821), 1, - sym_member_declarations, - [168472] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(159), 1, + sym_parenthesized_expression, + [169607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + 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(3), 1, + sym_comment, + ACTIONS(7032), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [169635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(5897), 1, + sym_parenthesized_expression, + [169645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(822), 1, + STATE(1344), 1, sym_member_declarations, - [168482] = 3, + [169655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_BSLASH, - STATE(2156), 1, - aux_sym_qualified_identifier_repeat1, - [168492] = 3, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym_member_declarations, + [169665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1492), 1, + STATE(1347), 1, sym_member_declarations, - [168502] = 3, + [169675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1082), 1, + STATE(1348), 1, sym_member_declarations, - [168512] = 3, + [169685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6144), 1, - anon_sym_as, - ACTIONS(6146), 1, - anon_sym_EQ, - [168522] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(6063), 1, + sym_capability_list, + [169695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(4857), 1, + STATE(1183), 1, sym_member_declarations, - [168532] = 3, + [169705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(5684), 1, - sym_parenthesized_expression, - [168542] = 3, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_member_declarations, + [169715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1143), 1, + STATE(792), 1, sym_member_declarations, - [168552] = 3, + [169725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1144), 1, + STATE(1349), 1, sym_member_declarations, - [168562] = 3, + [169735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6155), 1, + ACTIONS(8098), 1, anon_sym_COLON, - ACTIONS(6157), 1, + ACTIONS(8100), 1, anon_sym_EQ_EQ_GT, - [168572] = 3, + [169745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(836), 1, + STATE(738), 1, sym_member_declarations, - [168582] = 3, + [169755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, - anon_sym_class, - ACTIONS(5867), 1, - sym_xhp_modifier, - [168592] = 3, + ACTIONS(8102), 1, + anon_sym_as, + ACTIONS(8104), 1, + anon_sym_EQ, + [169765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(1463), 1, sym_member_declarations, - [168602] = 3, + [169775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1455), 1, sym_member_declarations, - [168612] = 3, + [169785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_member_declarations, - [168622] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(124), 1, + sym_parenthesized_expression, + [169795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(730), 1, + STATE(4050), 1, sym_compound_statement, - [168632] = 3, + [169805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(847), 1, + STATE(1350), 1, sym_member_declarations, - [168642] = 3, + [169815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, - anon_sym_LBRACE, - ACTIONS(8036), 1, - anon_sym_as, - [168652] = 3, + ACTIONS(8106), 1, + anon_sym_class, + ACTIONS(8108), 1, + sym_xhp_modifier, + [169825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5736), 2, anon_sym_LBRACE, - STATE(1083), 1, - sym_member_declarations, - [168662] = 3, + anon_sym_SEMI, + [169833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(8110), 1, + anon_sym_SEMI, + ACTIONS(8112), 1, + anon_sym_EQ, + [169843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1099), 1, + STATE(741), 1, sym_member_declarations, - [168672] = 3, + [169853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8038), 1, - anon_sym_LBRACE, - STATE(698), 1, - sym_compound_statement, - [168682] = 3, + ACTIONS(6638), 1, + anon_sym_as, + ACTIONS(6640), 1, + anon_sym_EQ, + [169863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(6270), 1, - sym_parenthesized_expression, - [168692] = 3, + ACTIONS(8114), 1, + anon_sym_SEMI, + ACTIONS(8116), 1, + anon_sym_EQ, + [169873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4817), 1, - sym_member_declarations, - [168702] = 3, + ACTIONS(6023), 1, + anon_sym_class, + ACTIONS(6027), 1, + sym_xhp_modifier, + [169883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(6032), 1, + sym_capability_list, + [169893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(860), 1, + STATE(750), 1, sym_member_declarations, - [168712] = 3, + [169903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, + ACTIONS(7984), 1, anon_sym_LPAREN, - STATE(143), 1, + STATE(6008), 1, sym_parenthesized_expression, - [168722] = 3, + [169913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(734), 1, sym_member_declarations, - [168732] = 3, + [169923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(801), 1, sym_member_declarations, - [168742] = 3, + [169933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(1084), 1, + STATE(1438), 1, sym_member_declarations, - [168752] = 3, + [169943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_member_declarations, - [168762] = 3, + ACTIONS(8118), 1, + sym_identifier, + ACTIONS(8120), 1, + anon_sym_class, + [169953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - STATE(734), 1, - sym_member_declarations, - [168772] = 3, + STATE(1925), 1, + sym_compound_statement, + [169963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(8122), 2, anon_sym_LBRACE, - STATE(866), 1, - sym_member_declarations, - [168782] = 3, + anon_sym_SEMI, + [169971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8040), 1, - anon_sym_LBRACE, - ACTIONS(8042), 1, - anon_sym_as, - [168792] = 3, + ACTIONS(7517), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [169979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(868), 1, + STATE(1603), 1, sym_member_declarations, - [168802] = 3, + [169989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(4824), 1, - sym_member_declarations, - [168812] = 2, + ACTIONS(8124), 1, + anon_sym_SEMI, + ACTIONS(8126), 1, + anon_sym_EQ, + [169999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7153), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [168820] = 3, + ACTIONS(8128), 1, + anon_sym_as, + ACTIONS(8130), 1, + anon_sym_EQ, + [170009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(1440), 1, sym_member_declarations, - [168830] = 3, + [170019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(870), 1, - sym_member_declarations, - [168840] = 3, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6293), 1, + sym_parenthesized_expression, + [170029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1397), 1, - sym_member_declarations, - [168850] = 3, + ACTIONS(8132), 1, + anon_sym_SEMI, + ACTIONS(8134), 1, + anon_sym_EQ, + [170039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(875), 1, + STATE(796), 1, sym_member_declarations, - [168860] = 3, + [170049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_member_declarations, - [168870] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(116), 1, + sym_parenthesized_expression, + [170059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4826), 1, + STATE(1444), 1, sym_member_declarations, - [168880] = 3, + [170069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(749), 1, - sym_member_declarations, - [168890] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(6012), 1, + sym_capability_list, + [170079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(125), 1, - sym_parenthesized_expression, - [168900] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5567), 1, + sym_capability_list, + [170089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8044), 1, + ACTIONS(6425), 1, anon_sym_COLON, - ACTIONS(8046), 1, + ACTIONS(6427), 1, anon_sym_EQ_EQ_GT, - [168910] = 3, + [170099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5590), 1, anon_sym_LBRACE, - STATE(4828), 1, + STATE(1446), 1, sym_member_declarations, - [168920] = 3, + [170109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8048), 1, - anon_sym_as, - ACTIONS(8050), 1, - anon_sym_EQ, - [168930] = 3, + ACTIONS(8136), 1, + anon_sym_class, + ACTIONS(8138), 1, + sym_xhp_modifier, + [170119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_member_declarations, - [168940] = 3, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(6007), 1, + sym_capability_list, + [170129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(8140), 1, anon_sym_LBRACE, - STATE(4834), 1, - sym_member_declarations, - [168950] = 3, + ACTIONS(8142), 1, + anon_sym_as, + [170139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5070), 1, + anon_sym_BSLASH, + STATE(3435), 1, + aux_sym_qualified_identifier_repeat1, + [170149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, + anon_sym_LPAREN, + STATE(1843), 1, + sym_arguments, + [170159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 2, + sym_integer, + sym_string, + [170167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(880), 1, + STATE(1026), 1, sym_member_declarations, - [168960] = 3, + [170177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8052), 1, + ACTIONS(8144), 1, + sym_identifier, + STATE(3514), 1, + sym_enumerator, + [170187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, + sym_identifier, + ACTIONS(8148), 1, + anon_sym_class, + [170197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_parenthesized_expression, + [170207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8150), 1, anon_sym_extends, - ACTIONS(8054), 1, + ACTIONS(8152), 1, anon_sym_implements, - [168970] = 3, + [170217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(1505), 1, - sym_member_declarations, - [168980] = 3, + ACTIONS(7472), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [170225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_member_declarations, - [168990] = 3, + ACTIONS(6665), 1, + anon_sym_as, + ACTIONS(6667), 1, + anon_sym_EQ, + [170235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 1, - anon_sym_COLON, - ACTIONS(6177), 1, - anon_sym_EQ_EQ_GT, - [169000] = 3, + ACTIONS(8154), 1, + anon_sym_SEMI, + ACTIONS(8156), 1, + anon_sym_EQ, + [170245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8056), 1, - anon_sym_class, - ACTIONS(8058), 1, - sym_xhp_modifier, - [169010] = 3, + ACTIONS(2655), 1, + sym_variable, + STATE(4486), 1, + sym_property_declarator, + [170255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1193), 1, + STATE(1195), 1, sym_member_declarations, - [169020] = 3, + [170265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(753), 1, - sym_member_declarations, - [169030] = 3, + ACTIONS(8160), 1, + anon_sym_as, + [170275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1188), 1, + STATE(1200), 1, sym_member_declarations, - [169040] = 3, + [170285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(754), 1, + STATE(1202), 1, sym_member_declarations, - [169050] = 3, + [170295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_member_declarations, - [169060] = 3, + ACTIONS(5993), 1, + anon_sym_class, + ACTIONS(5999), 1, + sym_xhp_modifier, + [170305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(7992), 2, + sym_identifier, + sym_variable, + [170313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1207), 1, sym_member_declarations, - [169070] = 3, + [170323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(3744), 1, - sym_parameters, - [169080] = 3, + ACTIONS(8162), 1, + sym_identifier, + ACTIONS(8164), 1, + sym_variable, + [170333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8060), 1, - anon_sym_COLON, - ACTIONS(8062), 1, - anon_sym_EQ_EQ_GT, - [169090] = 3, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(3794), 1, + sym_parameters, + [170343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, - sym_variable, - STATE(4953), 1, - sym_property_declarator, - [169100] = 3, + ACTIONS(6290), 1, + anon_sym_class, + ACTIONS(6294), 1, + sym_xhp_modifier, + [170353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6187), 1, + ACTIONS(8166), 1, anon_sym_COLON, - ACTIONS(6189), 1, + ACTIONS(8168), 1, anon_sym_EQ_EQ_GT, - [169110] = 3, + [170363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1657), 1, - sym_member_declarations, - [169120] = 3, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6149), 1, + sym_parenthesized_expression, + [170373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1127), 1, + STATE(1376), 1, sym_member_declarations, - [169130] = 3, + [170383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(1377), 1, sym_member_declarations, - [169140] = 3, + [170393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, - anon_sym_LBRACE, - STATE(881), 1, - sym_member_declarations, - [169150] = 3, + ACTIONS(8170), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [170401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1179), 1, + STATE(1429), 1, sym_member_declarations, - [169160] = 3, + [170411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1628), 1, + STATE(856), 1, sym_member_declarations, - [169170] = 3, + [170421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_as, - ACTIONS(8066), 1, - anon_sym_EQ, - [169180] = 3, + ACTIONS(5149), 2, + anon_sym_class, + sym_xhp_modifier, + [170429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(805), 1, + STATE(1210), 1, sym_member_declarations, - [169190] = 3, + [170439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(765), 1, + STATE(852), 1, sym_member_declarations, - [169200] = 3, + [170449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(1599), 1, sym_member_declarations, - [169210] = 3, + [170459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1508), 1, + STATE(851), 1, sym_member_declarations, - [169220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8068), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [169228] = 3, + [170469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(887), 1, + STATE(1571), 1, sym_member_declarations, - [169238] = 3, + [170479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6179), 1, - anon_sym_as, - ACTIONS(6181), 1, - anon_sym_EQ, - [169248] = 3, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_member_declarations, + [170489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym_parenthesized_expression, - [169258] = 3, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1702), 1, + sym_member_declarations, + [170499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_LPAREN, - STATE(6062), 1, - sym_parenthesized_expression, - [169268] = 3, + ACTIONS(8172), 1, + anon_sym_as, + ACTIONS(8174), 1, + anon_sym_EQ, + [170509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(1493), 1, anon_sym_LBRACE, - STATE(1575), 1, - sym_member_declarations, - [169278] = 3, + STATE(2774), 1, + sym_compound_statement, + [170519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(1211), 1, sym_member_declarations, - [169288] = 3, + [170529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(1433), 1, sym_member_declarations, - [169298] = 3, + [170539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(1659), 1, - sym_member_declarations, - [169308] = 3, + ACTIONS(4685), 1, + anon_sym_BSLASH, + STATE(3612), 1, + aux_sym_qualified_identifier_repeat1, + [170549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8070), 1, - anon_sym_LBRACE, - ACTIONS(8072), 1, - anon_sym_as, - [169318] = 3, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(142), 1, + sym_parenthesized_expression, + [170559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - STATE(1168), 1, - sym_member_declarations, - [169328] = 3, + ACTIONS(5300), 2, + sym_identifier, + anon_sym_RBRACE, + [170567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(2593), 1, - sym_compound_statement, - [169338] = 3, + STATE(848), 1, + sym_member_declarations, + [170577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, + ACTIONS(8176), 1, anon_sym_class, - ACTIONS(6124), 1, + ACTIONS(8178), 1, sym_xhp_modifier, - [169348] = 3, + [170587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_member_declarations, - [169358] = 2, + ACTIONS(8180), 1, + anon_sym_SEMI, + ACTIONS(8182), 1, + anon_sym_EQ, + [170597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + STATE(1772), 1, + aux_sym_qualified_identifier_repeat1, + [170607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, anon_sym_LPAREN, - [169365] = 2, + STATE(111), 1, + sym_parenthesized_expression, + [170617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8076), 1, - sym_identifier, - [169372] = 2, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(4159), 1, + sym_compound_statement, + [170627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8078), 1, - anon_sym_class, - [169379] = 2, + ACTIONS(863), 1, + anon_sym_LBRACE, + STATE(1382), 1, + sym_compound_statement, + [170637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8080), 1, - sym_identifier, - [169386] = 2, + ACTIONS(8184), 1, + anon_sym_SEMI, + ACTIONS(8186), 1, + anon_sym_EQ, + [170647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8082), 1, - anon_sym_COLON, - [169393] = 2, + ACTIONS(6435), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_EQ, + [170657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(8188), 2, + anon_sym_COMMA, anon_sym_SEMI, - [169400] = 2, + [170665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8086), 1, - anon_sym_EQ_EQ_GT, - [169407] = 2, + ACTIONS(6221), 1, + anon_sym_class, + ACTIONS(6225), 1, + sym_xhp_modifier, + [170675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - [169414] = 2, + STATE(3780), 1, + sym_parameters, + [170685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_COLON, - [169421] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(844), 1, + sym_member_declarations, + [170695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_class, - [169428] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(840), 1, + sym_member_declarations, + [170705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, - anon_sym_EQ_EQ_GT, - [169435] = 2, + ACTIONS(7177), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [170713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 1, - anon_sym_SEMI, - [169442] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5959), 1, + sym_capability_list, + [170723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8094), 1, - anon_sym_SEMI, - [169449] = 2, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6266), 1, + sym_parenthesized_expression, + [170733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8096), 1, - anon_sym_while, - [169456] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_member_declarations, + [170743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_SEMI, - [169463] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym_member_declarations, + [170753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, - anon_sym_class, - [169470] = 2, + ACTIONS(7992), 1, + sym_variable, + ACTIONS(8190), 1, + sym_identifier, + [170763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8100), 1, - anon_sym_SEMI, - [169477] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5605), 1, + sym_capability_list, + [170773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6189), 1, - anon_sym_EQ_EQ_GT, - [169484] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1724), 1, + sym_member_declarations, + [170783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 1, - anon_sym_SEMI, - [169491] = 2, + ACTIONS(6596), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_EQ_EQ_GT, + [170793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5839), 1, - anon_sym_function, - [169498] = 2, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1573), 1, + sym_member_declarations, + [170803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8104), 1, - anon_sym_SEMI, - [169505] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(6004), 1, + sym_capability_list, + [170813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8056), 1, - anon_sym_class, - [169512] = 2, + ACTIONS(8192), 1, + anon_sym_SEMI, + ACTIONS(8194), 1, + anon_sym_EQ, + [170823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8106), 1, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8198), 1, anon_sym_SEMI, - [169519] = 2, + [170833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8108), 1, + ACTIONS(8200), 1, + anon_sym_COLON, + ACTIONS(8202), 1, anon_sym_EQ_EQ_GT, - [169526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8110), 1, - anon_sym_RPAREN, - [169533] = 2, + [170843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8112), 1, - anon_sym_LBRACE, - [169540] = 2, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6048), 1, + sym_parenthesized_expression, + [170853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(5586), 1, anon_sym_LBRACE, - [169547] = 2, + STATE(1732), 1, + sym_member_declarations, + [170863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6177), 1, - anon_sym_EQ_EQ_GT, - [169554] = 2, + ACTIONS(8204), 1, + anon_sym_as, + ACTIONS(8206), 1, + anon_sym_EQ, + [170873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8116), 1, + ACTIONS(8208), 2, anon_sym_LBRACE, - [169561] = 2, + anon_sym_SEMI, + [170881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8118), 1, - sym_xhp_category_identifier, - [169568] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1436), 1, + sym_member_declarations, + [170891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, + ACTIONS(8210), 1, + anon_sym_as, + ACTIONS(8212), 1, anon_sym_EQ, - [169575] = 2, + [170901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8122), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - [169582] = 2, + STATE(731), 1, + sym_member_declarations, + [170911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8124), 1, - anon_sym_as2, - [169589] = 2, + ACTIONS(6360), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [170919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8126), 1, + ACTIONS(5588), 1, anon_sym_LBRACE, - [169596] = 2, + STATE(1286), 1, + sym_member_declarations, + [170929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8128), 1, + ACTIONS(8214), 2, + anon_sym_COMMA, anon_sym_SEMI, - [169603] = 2, + [170937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8130), 1, - anon_sym_EQ_EQ_GT, - [169610] = 2, + ACTIONS(8216), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_compound_statement, + [170947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, - sym_identifier, - [169617] = 2, + ACTIONS(8218), 1, + anon_sym_LBRACE, + ACTIONS(8220), 1, + anon_sym_as, + [170957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8134), 1, - sym_identifier, - [169624] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_member_declarations, + [170967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8136), 1, - anon_sym_class, - [169631] = 2, + ACTIONS(8222), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [170975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8138), 1, + ACTIONS(8224), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [169638] = 2, + [170983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_EQ, - [169645] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1256), 1, + sym_member_declarations, + [170993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8142), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - [169652] = 2, + STATE(1895), 1, + sym_compound_statement, + [171003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8144), 1, - sym_variable, - [169659] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1710), 1, + sym_member_declarations, + [171013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8146), 1, - anon_sym_LBRACE, - [169666] = 2, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(110), 1, + sym_parenthesized_expression, + [171023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8148), 1, - anon_sym_SEMI, - [169673] = 2, + ACTIONS(6364), 1, + anon_sym_COLON, + ACTIONS(6366), 1, + anon_sym_EQ_EQ_GT, + [171033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8150), 1, + ACTIONS(8226), 1, + anon_sym_class, + ACTIONS(8228), 1, + sym_xhp_modifier, + [171043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5588), 1, anon_sym_LBRACE, - [169680] = 2, + STATE(1269), 1, + sym_member_declarations, + [171053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8152), 1, - anon_sym_EQ_EQ_GT, - [169687] = 2, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1584), 1, + sym_member_declarations, + [171063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8154), 1, - anon_sym_RPAREN, - [169694] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1271), 1, + sym_member_declarations, + [171073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_if, - [169701] = 2, + ACTIONS(5590), 1, + anon_sym_LBRACE, + STATE(1585), 1, + sym_member_declarations, + [171083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, - anon_sym_RPAREN, - [169708] = 2, + ACTIONS(8230), 1, + anon_sym_LBRACE, + ACTIONS(8232), 1, + anon_sym_as, + [171093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_EQ, - [169715] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(766), 1, + sym_member_declarations, + [171103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8162), 1, - anon_sym_SEMI, - [169722] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(828), 1, + sym_member_declarations, + [171113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8164), 1, - anon_sym_EQ, - [169729] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_member_declarations, + [171123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8166), 1, + ACTIONS(8234), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [169736] = 2, + [171131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8168), 1, + ACTIONS(8236), 2, + sym_integer, + sym_string, + [171139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8238), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [169743] = 2, + [171147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8170), 1, - anon_sym_EQ_EQ_GT, - [169750] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(771), 1, + sym_member_declarations, + [171157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, - anon_sym_COLON, - [169757] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_member_declarations, + [171167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8172), 1, - sym_identifier, - [169764] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1519), 1, + sym_member_declarations, + [171177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8174), 1, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6320), 1, anon_sym_EQ, - [169771] = 2, + [171187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8176), 1, - anon_sym_SEMI, - [169778] = 2, + ACTIONS(6346), 1, + anon_sym_COLON, + ACTIONS(6348), 1, + anon_sym_EQ_EQ_GT, + [171197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7032), 1, - anon_sym_COLON, - [169785] = 2, + ACTIONS(6241), 1, + anon_sym_class, + ACTIONS(6245), 1, + sym_xhp_modifier, + [171207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_SEMI, - [169792] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1309), 1, + sym_member_declarations, + [171217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7030), 1, - anon_sym_COLON, - [169799] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1318), 1, + sym_member_declarations, + [171227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, - anon_sym_COLON, - [169806] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1714), 1, + sym_member_declarations, + [171237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8180), 1, - sym_identifier, - [169813] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym_member_declarations, + [171247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7022), 1, - anon_sym_COLON, - [169820] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_member_declarations, + [171257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8182), 1, - sym__heredoc_end, - [169827] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1508), 1, + sym_member_declarations, + [171267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7020), 1, - anon_sym_COLON, - [169834] = 2, + ACTIONS(8240), 1, + anon_sym_LBRACE, + ACTIONS(8242), 1, + anon_sym_as, + [171277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8184), 1, - anon_sym_SEMI, - [169841] = 2, + ACTIONS(7254), 1, + anon_sym_RPAREN, + ACTIONS(8022), 1, + sym_variable, + [171287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8186), 1, - anon_sym_COLON, - [169848] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_member_declarations, + [171297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, - anon_sym_LPAREN, - [169855] = 2, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(1375), 1, + sym_member_declarations, + [171307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8190), 1, + ACTIONS(8244), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [169862] = 2, + [171315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_SEMI, - [169869] = 2, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6460), 1, + sym_parenthesized_expression, + [171325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - anon_sym_class, - [169876] = 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + STATE(1628), 1, + sym_compound_statement, + [171335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6167), 1, - anon_sym_EQ_EQ_GT, - [169883] = 2, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1926), 1, + sym_compound_statement, + [171345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8194), 1, + ACTIONS(8246), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [169890] = 2, + [171353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8196), 1, - anon_sym_SEMI, - [169897] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(813), 1, + sym_member_declarations, + [171363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8198), 1, - anon_sym_SEMI, - [169904] = 2, + ACTIONS(2663), 1, + anon_sym_BSLASH, + STATE(3788), 1, + aux_sym_qualified_identifier_repeat1, + [171373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8200), 1, - sym_identifier, - [169911] = 2, + ACTIONS(1493), 1, + anon_sym_LBRACE, + STATE(2755), 1, + sym_compound_statement, + [171383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8202), 1, - anon_sym_while, - [169918] = 2, + ACTIONS(5195), 1, + anon_sym_EQ, + ACTIONS(6653), 1, + anon_sym_LPAREN, + [171393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8204), 1, - anon_sym_SEMI, - [169925] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(4896), 1, + sym_capability_list, + [171403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8206), 1, - anon_sym_SEMI, - [169932] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_member_declarations, + [171413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_member_declarations, + [171423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 1, + ACTIONS(7992), 1, sym_variable, - [169939] = 2, + ACTIONS(8248), 1, + sym_identifier, + [171433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, - anon_sym_class, - [169946] = 2, + ACTIONS(5592), 1, + anon_sym_LBRACE, + STATE(4524), 1, + sym_member_declarations, + [171443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8210), 1, - anon_sym_RPAREN, - [169953] = 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + STATE(1691), 1, + sym_compound_statement, + [171453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8212), 1, - anon_sym_RPAREN, - [169960] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_member_declarations, + [171463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, - anon_sym_EQ_EQ_GT, - [169967] = 2, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(115), 1, + sym_parenthesized_expression, + [171473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8214), 1, - anon_sym_SEMI, - [169974] = 2, + ACTIONS(5588), 1, + anon_sym_LBRACE, + STATE(1372), 1, + sym_member_declarations, + [171483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8216), 1, - sym_variable, - [169981] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5646), 1, + sym_capability_list, + [171493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_LPAREN, - [169988] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(810), 1, + sym_member_declarations, + [171503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - [169995] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(785), 1, + sym_member_declarations, + [171513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8222), 1, - anon_sym_SEMI, - [170002] = 2, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(5908), 1, + sym_capability_list, + [171523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, - anon_sym_as2, - [170009] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(788), 1, + sym_member_declarations, + [171533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8030), 1, - anon_sym_class, - [170016] = 2, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + [171543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, - anon_sym_as2, - [170023] = 2, + ACTIONS(4142), 1, + sym_variable, + ACTIONS(7310), 1, + anon_sym_RPAREN, + [171553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8228), 1, + ACTIONS(8250), 1, + anon_sym_COLON, + ACTIONS(8252), 1, anon_sym_EQ_EQ_GT, - [170030] = 2, + [171563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8230), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - [170037] = 2, + STATE(61), 1, + sym_parenthesized_expression, + [171573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8232), 1, - sym_identifier, - [170044] = 2, + ACTIONS(7984), 1, + anon_sym_LPAREN, + STATE(6122), 1, + sym_parenthesized_expression, + [171583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8234), 1, - sym_identifier, - [170051] = 2, + ACTIONS(3694), 1, + anon_sym_LPAREN, + STATE(2747), 1, + sym_arguments, + [171593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6392), 1, - anon_sym_EQ_EQ_GT, - [170058] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_member_declarations, + [171603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, + ACTIONS(8254), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [170065] = 2, + [171611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8238), 1, - anon_sym_COLON, - [170072] = 2, + ACTIONS(8164), 2, + sym_identifier, + sym_variable, + [171619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8256), 1, + anon_sym_as, + ACTIONS(8258), 1, anon_sym_EQ, - [170079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8242), 1, - anon_sym_LBRACE, - [170086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8244), 1, - anon_sym_as2, - [170093] = 2, + [171629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8246), 1, + ACTIONS(8260), 2, + anon_sym_COMMA, anon_sym_SEMI, - [170100] = 2, + [171637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8248), 1, - anon_sym_using, - [170107] = 2, + ACTIONS(6512), 1, + anon_sym_COLON, + ACTIONS(6514), 1, + anon_sym_EQ_EQ_GT, + [171647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8250), 1, - anon_sym_EQ_EQ_GT, - [170114] = 2, + ACTIONS(5586), 1, + anon_sym_LBRACE, + STATE(1721), 1, + sym_member_declarations, + [171657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8252), 1, - anon_sym_GT, - [170121] = 2, + ACTIONS(6620), 1, + anon_sym_COLON, + ACTIONS(6622), 1, + anon_sym_EQ_EQ_GT, + [171667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8254), 1, - sym_identifier, - [170128] = 2, + ACTIONS(3796), 1, + anon_sym_LPAREN, + STATE(2261), 1, + sym_arguments, + [171677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8256), 1, - anon_sym_class, - [170135] = 2, + ACTIONS(6468), 1, + anon_sym_COLON, + ACTIONS(6470), 1, + anon_sym_EQ_EQ_GT, + [171687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8258), 1, - anon_sym_RPAREN, - [170142] = 2, + ACTIONS(8262), 1, + anon_sym_SEMI, + ACTIONS(8264), 1, + anon_sym_EQ, + [171697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8260), 1, + ACTIONS(6490), 1, + anon_sym_as, + ACTIONS(6492), 1, anon_sym_EQ, - [170149] = 2, + [171707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8262), 1, - sym_variable, - [170156] = 2, + ACTIONS(7952), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, + [171717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8264), 1, - sym_identifier, - [170163] = 2, + ACTIONS(977), 1, + anon_sym_BSLASH, + STATE(1810), 1, + aux_sym_qualified_identifier_repeat1, + [171727] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8266), 1, anon_sym_SEMI, - [170170] = 2, + ACTIONS(8268), 1, + anon_sym_EQ, + [171737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 1, - anon_sym_RPAREN, - [170177] = 2, + ACTIONS(863), 1, + anon_sym_LBRACE, + STATE(1403), 1, + sym_compound_statement, + [171747] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8270), 1, - anon_sym_EQ_EQ_GT, - [170184] = 2, + anon_sym_LBRACE, + STATE(712), 1, + sym_compound_statement, + [171757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6107), 1, + anon_sym_class, + ACTIONS(6111), 1, + sym_xhp_modifier, + [171767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8272), 1, - anon_sym_RPAREN, - [170191] = 2, + sym_variable, + [171774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8274), 1, - anon_sym_if, - [170198] = 2, + sym_identifier, + [171781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6622), 1, + anon_sym_EQ_EQ_GT, + [171788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8276), 1, - anon_sym_EQ, - [170205] = 2, + anon_sym_LBRACE, + [171795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8278), 1, + ACTIONS(8022), 1, sym_variable, - [170212] = 2, + [171802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8278), 1, + sym_identifier, + [171809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8280), 1, - anon_sym_EQ, - [170219] = 2, + anon_sym_RPAREN, + [171816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8282), 1, - sym_variable, - [170226] = 2, + sym_identifier, + [171823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8284), 1, - anon_sym_LBRACE, - [170233] = 2, + anon_sym_while, + [171830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8286), 1, - anon_sym_EQ_EQ_GT, - [170240] = 2, + sym_identifier, + [171837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6973), 1, - anon_sym_COLON, - [170247] = 2, + 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_RPAREN, - [170254] = 2, + anon_sym_SEMI, + [171858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8290), 1, anon_sym_RPAREN, - [170261] = 2, + [171865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8292), 1, - anon_sym_RPAREN, - [170268] = 2, + ACTIONS(7946), 1, + anon_sym_class, + [171872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 1, - anon_sym_COLON, - [170275] = 2, + ACTIONS(8292), 1, + anon_sym_SEMI, + [171879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8294), 1, - anon_sym_RPAREN, - [170282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6967), 1, - anon_sym_COLON, - [170289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6963), 1, - anon_sym_COLON, - [170296] = 2, + anon_sym_EQ_EQ_GT, + [171886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8296), 1, - anon_sym_RPAREN, - [170303] = 2, + anon_sym_SEMI, + [171893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6961), 1, - anon_sym_COLON, - [170310] = 2, + ACTIONS(6470), 1, + anon_sym_EQ_EQ_GT, + [171900] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8298), 1, - anon_sym_RPAREN, - [170317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6959), 1, - anon_sym_COLON, - [170324] = 2, + anon_sym_LPAREN, + [171907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8300), 1, - anon_sym_SEMI, - [170331] = 2, + anon_sym_EQ, + [171914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8302), 1, - anon_sym_COLON, - [170338] = 2, + anon_sym_as2, + [171921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8304), 1, - anon_sym_LPAREN, - [170345] = 2, + anon_sym_SEMI, + [171928] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8306), 1, - anon_sym_LBRACE, - [170352] = 2, + anon_sym_RPAREN, + [171935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8308), 1, - anon_sym_LBRACE, - [170359] = 2, + anon_sym_EQ_EQ_GT, + [171942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 1, + ACTIONS(6614), 1, + anon_sym_EQ_EQ_GT, + [171949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5324), 1, anon_sym_class, - [170366] = 2, + [171956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8310), 1, - anon_sym_LBRACE, - [170373] = 2, + anon_sym_class, + [171963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8312), 1, - anon_sym_while, - [170380] = 2, + anon_sym_RPAREN, + [171970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8314), 1, - anon_sym_LBRACE, - [170387] = 2, + anon_sym_EQ, + [171977] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8316), 1, - anon_sym_RPAREN, - [170394] = 2, + anon_sym_LPAREN, + [171984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8318), 1, - anon_sym_RPAREN, - [170401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6110), 1, - anon_sym_class, - [170408] = 2, + sym_variable, + [171991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8320), 1, anon_sym_SEMI, - [170415] = 2, + [171998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6573), 1, + anon_sym_EQ_EQ_GT, + [172005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8322), 1, - anon_sym_LBRACE, - [170422] = 2, + sym_identifier, + [172012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8324), 1, - anon_sym_LBRACE, - [170429] = 2, + anon_sym_EQ_EQ_GT, + [172019] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8326), 1, anon_sym_RPAREN, - [170436] = 2, + [172026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8328), 1, - sym_identifier, - [170443] = 2, + anon_sym_if, + [172033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8330), 1, - anon_sym_LBRACE, - [170450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - anon_sym_class, - [170457] = 2, + anon_sym_RPAREN, + [172040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8332), 1, - anon_sym_RPAREN, - [170464] = 2, + anon_sym_EQ, + [172047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8334), 1, anon_sym_RPAREN, - [170471] = 2, - ACTIONS(5472), 1, + [172054] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(8336), 1, - aux_sym_function_type_specifier_token1, - [170478] = 2, + anon_sym_EQ, + [172061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_EQ, - [170485] = 2, + ACTIONS(5816), 1, + sym__heredoc_end, + [172068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - sym_variable, - [170492] = 2, + ACTIONS(8338), 1, + anon_sym_RPAREN, + [172075] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8340), 1, - anon_sym_as2, - [170499] = 2, + anon_sym_EQ_EQ_GT, + [172082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7266), 1, + anon_sym_COLON, + [172089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8342), 1, - anon_sym_RPAREN, - [170506] = 2, + anon_sym_SEMI, + [172096] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8344), 1, - anon_sym_SEMI, - [170513] = 2, + sym_identifier, + [172103] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8346), 1, - anon_sym_RPAREN, - [170520] = 2, + anon_sym_SEMI, + [172110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7264), 1, + anon_sym_COLON, + [172117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 1, + anon_sym_EQ, + [172124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7260), 1, + anon_sym_COLON, + [172131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7258), 1, + anon_sym_COLON, + [172138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8348), 1, anon_sym_RPAREN, - [170527] = 2, + [172145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7256), 1, + anon_sym_COLON, + [172152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8350), 1, - anon_sym_class, - [170534] = 2, + anon_sym_SEMI, + [172159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON, + [172166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8352), 1, - anon_sym_EQ, - [170541] = 2, + anon_sym_COLON, + [172173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8354), 1, - sym_variable, - [170548] = 2, + anon_sym_COLON, + [172180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, - sym_variable, - [170555] = 2, + ACTIONS(8356), 1, + anon_sym_LPAREN, + [172187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8356), 1, - sym_identifier, - [170562] = 2, + ACTIONS(7354), 1, + anon_sym_COLON, + [172194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8358), 1, - anon_sym_SEMI, - [170569] = 2, + anon_sym_LBRACE, + [172201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5388), 1, + anon_sym_class, + [172208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6431), 1, + anon_sym_EQ_EQ_GT, + [172215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8360), 1, sym_identifier, - [170576] = 2, + [172222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8362), 1, - anon_sym_if, - [170583] = 2, + sym_identifier, + [172229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8364), 1, - anon_sym_SEMI, - [170590] = 2, + anon_sym_LBRACE, + [172236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8366), 1, - anon_sym_EQ, - [170597] = 2, + anon_sym_LBRACE, + [172243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8368), 1, - sym_variable, - [170604] = 2, + anon_sym_LBRACE, + [172250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8370), 1, - anon_sym_RPAREN, - [170611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6916), 1, - anon_sym_COLON, - [170618] = 2, + anon_sym_while, + [172257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8372), 1, - anon_sym_RPAREN, - [170625] = 2, + anon_sym_LBRACE, + [172264] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8374), 1, - sym_identifier, - [170632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8376), 1, anon_sym_LBRACE, - [170639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6914), 1, - anon_sym_COLON, - [170646] = 2, + [172271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8378), 1, + ACTIONS(8376), 1, anon_sym_SEMI, - [170653] = 2, + [172278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 1, - anon_sym_COLON, - [170660] = 2, + ACTIONS(6241), 1, + anon_sym_class, + [172285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6910), 1, - anon_sym_COLON, - [170667] = 2, + ACTIONS(8378), 1, + anon_sym_LBRACE, + [172292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8380), 1, - anon_sym_RPAREN, - [170674] = 2, + anon_sym_SEMI, + [172299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, - anon_sym_COLON, - [170681] = 2, + ACTIONS(6348), 1, + anon_sym_EQ_EQ_GT, + [172306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8382), 1, - anon_sym_RPAREN, - [170688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6906), 1, - anon_sym_COLON, - [170695] = 2, + anon_sym_LBRACE, + [172313] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8384), 1, - anon_sym_SEMI, - [170702] = 2, + anon_sym_LBRACE, + [172320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8386), 1, - anon_sym_COLON, - [170709] = 2, + anon_sym_LBRACE, + [172327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8388), 1, - anon_sym_LPAREN, - [170716] = 2, + anon_sym_RPAREN, + [172334] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8390), 1, anon_sym_SEMI, - [170723] = 2, + [172341] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8392), 1, - anon_sym_SEMI, - [170730] = 2, + anon_sym_RPAREN, + [172348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, + ACTIONS(8226), 1, anon_sym_class, - [170737] = 2, + [172355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8394), 1, anon_sym_SEMI, - [170744] = 2, + [172362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8396), 1, - anon_sym_while, - [170751] = 2, + anon_sym_EQ_EQ_GT, + [172369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7233), 1, + anon_sym_COLON, + [172376] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8398), 1, - anon_sym_LPAREN, - [170758] = 2, + anon_sym_SEMI, + [172383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8400), 1, - anon_sym_COLON, - [170765] = 2, + anon_sym_RPAREN, + [172390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8402), 1, - anon_sym_ctx, - [170772] = 2, + ACTIONS(6366), 1, + anon_sym_EQ_EQ_GT, + [172397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6096), 1, - anon_sym_class, - [170779] = 2, + ACTIONS(8402), 1, + anon_sym_RPAREN, + [172404] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8404), 1, - anon_sym_RPAREN, - [170786] = 2, + anon_sym_LBRACE, + [172411] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8406), 1, - anon_sym_type, - [170793] = 2, + anon_sym_EQ, + [172418] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8408), 1, - anon_sym_SEMI, - [170800] = 2, + anon_sym_EQ_EQ_GT, + [172425] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8410), 1, - anon_sym_SEMI, - [170807] = 2, + anon_sym_as2, + [172432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8412), 1, - anon_sym_SEMI, - [170814] = 2, + anon_sym_while, + [172439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8414), 1, - anon_sym_LPAREN, - [170821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, - anon_sym_class, - [170828] = 2, + anon_sym_SEMI, + [172446] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8416), 1, - anon_sym_SEMI, - [170835] = 2, + anon_sym_EQ_EQ_GT, + [172453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8418), 1, - anon_sym_LPAREN, - [170842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5731), 1, - sym__heredoc_end, - [170849] = 2, + anon_sym_RPAREN, + [172460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8420), 1, - anon_sym_EQ, - [170856] = 2, + anon_sym_LBRACE, + [172467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8422), 1, - anon_sym_SEMI, - [170863] = 2, + anon_sym_class, + [172474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8424), 1, - anon_sym_as2, - [170870] = 2, + anon_sym_LBRACE, + [172481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8426), 1, - sym_identifier, - [170877] = 2, + anon_sym_EQ, + [172488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8428), 1, + anon_sym_using, + [172495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8198), 1, anon_sym_SEMI, - [170884] = 2, + [172502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8430), 1, - anon_sym_SEMI, - [170891] = 2, + anon_sym_LBRACE, + [172509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8432), 1, - anon_sym_SEMI, - [170898] = 2, + anon_sym_insteadof, + [172516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8434), 1, - anon_sym_class, - [170905] = 2, + anon_sym_EQ_EQ_GT, + [172523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8436), 1, - anon_sym_EQ, - [170912] = 2, + anon_sym_SEMI, + [172530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8438), 1, - sym_variable, - [170919] = 2, + anon_sym_if, + [172537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8440), 1, - anon_sym_SEMI, - [170926] = 2, + anon_sym_EQ, + [172544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8442), 1, - anon_sym_SEMI, - [170933] = 2, + anon_sym_LPAREN, + [172551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8444), 1, - sym_identifier, - [170940] = 2, + anon_sym_EQ, + [172558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8446), 1, - sym_identifier, - [170947] = 2, + anon_sym_SEMI, + [172565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8448), 1, - sym_identifier, - [170954] = 2, + anon_sym_LPAREN, + [172572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8450), 1, - anon_sym_EQ, - [170961] = 2, + anon_sym_EQ_EQ_GT, + [172579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8452), 1, - sym_identifier, - [170968] = 2, + ACTIONS(7205), 1, + anon_sym_COLON, + [172586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(8452), 1, anon_sym_SEMI, - [170975] = 2, + [172593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6876), 1, - anon_sym_COLON, - [170982] = 2, + ACTIONS(6598), 1, + anon_sym_EQ_EQ_GT, + [172600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8456), 1, + ACTIONS(8454), 1, anon_sym_SEMI, - [170989] = 2, + [172607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8458), 1, - anon_sym_EQ, - [170996] = 2, + ACTIONS(7203), 1, + anon_sym_COLON, + [172614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6459), 1, - anon_sym_EQ_EQ_GT, - [171003] = 2, + ACTIONS(8456), 1, + anon_sym_SEMI, + [172621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(7201), 1, anon_sym_COLON, - [171010] = 2, + [172628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8460), 1, - sym_identifier, - [171017] = 2, + ACTIONS(7199), 1, + anon_sym_COLON, + [172635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6866), 1, - anon_sym_COLON, - [171024] = 2, + ACTIONS(8458), 1, + anon_sym_GT, + [172642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(7197), 1, anon_sym_COLON, - [171031] = 2, + [172649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7334), 1, - anon_sym_COLON, - [171038] = 2, + ACTIONS(8460), 1, + sym_identifier, + [172656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6862), 1, + ACTIONS(7193), 1, anon_sym_COLON, - [171045] = 2, + [172663] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8462), 1, - anon_sym_EQ_EQ_GT, - [171052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6860), 1, - anon_sym_COLON, - [171059] = 2, + anon_sym_SEMI, + [172670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8464), 1, - anon_sym_LBRACE, - [171066] = 2, + anon_sym_COLON, + [172677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8466), 1, - anon_sym_COLON, - [171073] = 2, + anon_sym_LPAREN, + [172684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8468), 1, - anon_sym_LPAREN, - [171080] = 2, + sym_identifier, + [172691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6290), 1, + anon_sym_class, + [172698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_class, + [172705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8470), 1, anon_sym_RPAREN, - [171087] = 2, + [172712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8472), 1, - anon_sym_SEMI, - [171094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5348), 1, - anon_sym_class, - [171101] = 2, + anon_sym_LBRACE, + [172719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8474), 1, - anon_sym_using, - [171108] = 2, + anon_sym_while, + [172726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8476), 1, - anon_sym_while, - [171115] = 2, + anon_sym_RPAREN, + [172733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8478), 1, - anon_sym_GT, - [171122] = 2, + anon_sym_RPAREN, + [172740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8480), 1, - anon_sym_SEMI, - [171129] = 2, + anon_sym_COLON, + [172747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6221), 1, + anon_sym_class, + [172754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8482), 1, - sym_identifier, - [171136] = 2, + anon_sym_using, + [172761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6078), 1, - anon_sym_class, - [171143] = 2, + ACTIONS(5797), 1, + sym__heredoc_end, + [172768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8484), 1, - sym_identifier, - [171150] = 2, + anon_sym_RPAREN, + [172775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8486), 1, - anon_sym_SEMI, - [171157] = 2, + sym_identifier, + [172782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8488), 1, - anon_sym_LBRACE, - [171164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6262), 1, - anon_sym_EQ_EQ_GT, - [171171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6678), 1, sym_identifier, - [171178] = 2, + [172789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8490), 1, - anon_sym_LBRACE, - [171185] = 2, + anon_sym_SEMI, + [172796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, + ACTIONS(8176), 1, anon_sym_class, - [171192] = 2, + [172803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8492), 1, - anon_sym_LBRACE, - [171199] = 2, + sym_identifier, + [172810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8494), 1, - anon_sym_LBRACE, - [171206] = 2, + anon_sym_SEMI, + [172817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8496), 1, - anon_sym_COLON, - [171213] = 2, + anon_sym_SEMI, + [172824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8498), 1, anon_sym_EQ, - [171220] = 2, + [172831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8500), 1, anon_sym_class, - [171227] = 2, + [172838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8502), 1, anon_sym_as2, - [171234] = 2, + [172845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8504), 1, - anon_sym_LBRACE, - [171241] = 2, + anon_sym_SEMI, + [172852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8506), 1, - sym_identifier, - [171248] = 2, + anon_sym_RPAREN, + [172859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8508), 1, - anon_sym_SEMI, - [171255] = 2, + sym_identifier, + [172866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8510), 1, - anon_sym_COLON, - [171262] = 2, + sym_identifier, + [172873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8512), 1, anon_sym_class, - [171269] = 2, + [172880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8514), 1, anon_sym_EQ, - [171276] = 2, + [172887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8516), 1, sym_variable, - [171283] = 2, + [172894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8518), 1, - anon_sym_SEMI, - [171290] = 2, + anon_sym_LBRACE, + [172901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8520), 1, - sym_identifier, - [171297] = 2, + anon_sym_LBRACE, + [172908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8522), 1, anon_sym_SEMI, - [171304] = 2, + [172915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8524), 1, - anon_sym_EQ_EQ_GT, - [171311] = 2, + anon_sym_LBRACE, + [172922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8526), 1, - sym_variable, - [171318] = 2, + anon_sym_if, + [172929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7148), 1, + anon_sym_COLON, + [172936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8528), 1, anon_sym_EQ, - [171325] = 2, + [172943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8530), 1, - anon_sym_EQ_EQ_GT, - [171332] = 2, + anon_sym_RPAREN, + [172950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8532), 1, - anon_sym_SEMI, - [171339] = 2, + anon_sym_LBRACE, + [172957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6828), 1, + ACTIONS(7146), 1, anon_sym_COLON, - [171346] = 2, + [172964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, - anon_sym_EQ_EQ_GT, - [171353] = 2, + ACTIONS(8534), 1, + anon_sym_LBRACE, + [172971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym_class, - [171360] = 2, + ACTIONS(8536), 1, + anon_sym_SEMI, + [172978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, + ACTIONS(8538), 1, anon_sym_SEMI, - [171367] = 2, + [172985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6826), 1, + ACTIONS(7142), 1, anon_sym_COLON, - [171374] = 2, + [172992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8536), 1, - anon_sym_LBRACE, - [171381] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6824), 1, + ACTIONS(8540), 1, anon_sym_COLON, - [171388] = 2, + [172999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, + ACTIONS(7140), 1, anon_sym_COLON, - [171395] = 2, + [173006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8538), 1, - anon_sym_LBRACE, - [171402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6820), 1, + ACTIONS(7138), 1, anon_sym_COLON, - [171409] = 2, + [173013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8540), 1, - anon_sym_LBRACE, - [171416] = 2, + ACTIONS(8542), 1, + sym_identifier, + [173020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6818), 1, + ACTIONS(7136), 1, anon_sym_COLON, - [171423] = 2, + [173027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8542), 1, - anon_sym_RPAREN, - [171430] = 2, + ACTIONS(8544), 1, + anon_sym_class, + [173034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8544), 1, + ACTIONS(7134), 1, anon_sym_COLON, - [171437] = 2, + [173041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8546), 1, - anon_sym_LPAREN, - [171444] = 2, + anon_sym_LBRACE, + [173048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8548), 1, - sym__heredoc_start, - [171451] = 2, + anon_sym_COLON, + [173055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8550), 1, - anon_sym_SEMI, - [171458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5332), 1, - anon_sym_class, - [171465] = 2, + anon_sym_LPAREN, + [173062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8552), 1, - anon_sym_SEMI, - [171472] = 2, + anon_sym_LBRACE, + [173069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8554), 1, - anon_sym_while, - [171479] = 2, + anon_sym_LBRACE, + [173076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_COLON, - [171486] = 2, + ACTIONS(5340), 1, + anon_sym_class, + [173083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8556), 1, - sym_identifier, - [171493] = 2, + anon_sym_RPAREN, + [173090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8558), 1, - anon_sym_SEMI, - [171500] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6055), 1, - anon_sym_class, - [171507] = 2, + sym_xhp_category_identifier, + [173097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8560), 1, - anon_sym_SEMI, - [171514] = 2, + anon_sym_while, + [173104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8562), 1, - anon_sym_RPAREN, - [171521] = 2, + anon_sym_SEMI, + [173111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8564), 1, - anon_sym_COLON, - [171528] = 2, + anon_sym_LBRACE, + [173118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8566), 1, - anon_sym_SEMI, - [171535] = 2, + anon_sym_LBRACE, + [173125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5993), 1, + anon_sym_class, + [173132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5915), 1, + anon_sym_function, + [173139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8568), 1, - anon_sym_RPAREN, - [171542] = 2, + sym_identifier, + [173146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8570), 1, anon_sym_SEMI, - [171549] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7946), 1, - anon_sym_class, - [171556] = 2, + [173153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8572), 1, - anon_sym_SEMI, - [171563] = 2, + sym_xhp_category_identifier, + [173160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8574), 1, - anon_sym_LPAREN, - [171570] = 2, + anon_sym_using, + [173167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8576), 1, - anon_sym_SEMI, - [171577] = 2, + anon_sym_if, + [173174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8136), 1, + anon_sym_class, + [173181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8578), 1, - anon_sym_EQ, - [171584] = 2, + anon_sym_SEMI, + [173188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8580), 1, - anon_sym_type, - [171591] = 2, + anon_sym_SEMI, + [173195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8582), 1, anon_sym_as2, - [171598] = 2, + [173202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8584), 1, - sym_identifier, - [171605] = 2, + anon_sym_EQ, + [173209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8586), 1, - sym_identifier, - [171612] = 2, + anon_sym_as2, + [173216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8588), 1, - anon_sym_SEMI, - [171619] = 2, + anon_sym_as2, + [173223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8590), 1, - anon_sym_LPAREN, - [171626] = 2, + anon_sym_COLON, + [173230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + anon_sym_EQ_EQ_GT, + [173237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8592), 1, - anon_sym_class, - [171633] = 2, + sym_identifier, + [173244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8594), 1, - anon_sym_EQ, - [171640] = 2, + anon_sym_SEMI, + [173251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8596), 1, - sym_variable, - [171647] = 2, + anon_sym_class, + [173258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8598), 1, - anon_sym_LPAREN, - [171654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5651), 1, - sym__heredoc_end, - [171661] = 2, + anon_sym_EQ, + [173265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8600), 1, - anon_sym_using, - [171668] = 2, + sym_variable, + [173272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8602), 1, - sym_variable, - [171675] = 2, + anon_sym_LPAREN, + [173279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8604), 1, - anon_sym_EQ, - [171682] = 2, + anon_sym_SEMI, + [173286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8606), 1, - anon_sym_EQ, - [171689] = 2, + anon_sym_SEMI, + [173293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8608), 1, - sym_identifier, - [171696] = 2, + anon_sym_SEMI, + [173300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8610), 1, - sym_identifier, - [171703] = 2, + anon_sym_LPAREN, + [173307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 1, - anon_sym_COLON, - [171710] = 2, + ACTIONS(8612), 1, + anon_sym_EQ, + [173314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8612), 1, - anon_sym_LBRACE, - [171717] = 2, + ACTIONS(6901), 1, + sym_identifier, + [173321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8614), 1, - anon_sym_SEMI, - [171724] = 2, + anon_sym_RPAREN, + [173328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7112), 1, + anon_sym_COLON, + [173335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8616), 1, - anon_sym_LPAREN, - [171731] = 2, + anon_sym_SEMI, + [173342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 1, + ACTIONS(7082), 1, anon_sym_COLON, - [171738] = 2, + [173349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8618), 1, anon_sym_SEMI, - [171745] = 2, + [173356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(7110), 1, anon_sym_COLON, - [171752] = 2, + [173363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - anon_sym_COLON, - [171759] = 2, + ACTIONS(8620), 1, + anon_sym_SEMI, + [173370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8620), 1, - anon_sym_using, - [171766] = 2, + ACTIONS(7102), 1, + anon_sym_COLON, + [173377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6784), 1, + ACTIONS(7098), 1, anon_sym_COLON, - [171773] = 2, + [173384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8622), 1, anon_sym_SEMI, - [171780] = 2, + [173391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, + ACTIONS(7092), 1, anon_sym_COLON, - [171787] = 2, + [173398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8624), 1, - anon_sym_SEMI, - [171794] = 2, + sym_identifier, + [173405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7088), 1, + anon_sym_COLON, + [173412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6510), 1, + sym_identifier, + [173419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8626), 1, anon_sym_COLON, - [171801] = 2, + [173426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8628), 1, - anon_sym_SEMI, - [171808] = 2, + anon_sym_LPAREN, + [173433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8630), 1, sym_identifier, - [171815] = 2, + [173440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8632), 1, anon_sym_SEMI, - [171822] = 2, + [173447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5356), 1, + anon_sym_class, + [173454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8634), 1, - anon_sym_as2, - [171829] = 2, + sym_identifier, + [173461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8636), 1, - sym_identifier, - [171836] = 2, + anon_sym_SEMI, + [173468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8638), 1, - sym_identifier, - [171843] = 2, + anon_sym_while, + [173475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8640), 1, - anon_sym_LPAREN, - [171850] = 2, + sym_variable, + [173482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8642), 1, - anon_sym_LPAREN, - [171857] = 2, + anon_sym_SEMI, + [173489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8644), 1, - anon_sym_LPAREN, - [171864] = 2, + anon_sym_LBRACE, + [173496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8646), 1, - anon_sym_SEMI, - [171871] = 2, + ACTIONS(6023), 1, + anon_sym_class, + [173503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8648), 1, - sym_identifier, - [171878] = 2, + ACTIONS(8646), 1, + anon_sym_RPAREN, + [173510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - anon_sym_EQ, - [171885] = 2, + ACTIONS(8648), 1, + anon_sym_EQ_EQ_GT, + [173517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8650), 1, anon_sym_SEMI, - [171892] = 2, + [173524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8652), 1, - anon_sym_SEMI, - [171899] = 2, - ACTIONS(5472), 1, - sym_comment, - ACTIONS(6710), 1, - aux_sym_function_type_specifier_token1, - [171906] = 2, + anon_sym_EQ_EQ_GT, + [173531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8654), 1, - anon_sym_COLON, - [171913] = 2, + anon_sym_EQ_EQ_GT, + [173538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8656), 1, - anon_sym_LBRACE, - [171920] = 2, + anon_sym_SEMI, + [173545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8106), 1, + anon_sym_class, + [173552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8658), 1, - anon_sym_SEMI, - [171927] = 2, + anon_sym_using, + [173559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8660), 1, - sym_identifier, - [171934] = 2, + anon_sym_LPAREN, + [173566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6649), 1, + anon_sym_EQ_EQ_GT, + [173573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8662), 1, - anon_sym_LPAREN, - [171941] = 2, + anon_sym_EQ, + [173580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8664), 1, - anon_sym_if, - [171948] = 2, + anon_sym_SEMI, + [173587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8666), 1, - anon_sym_SEMI, - [171955] = 2, + anon_sym_as2, + [173594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8668), 1, - anon_sym_COLON, - [171962] = 2, + sym_identifier, + [173601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8670), 1, - anon_sym_SEMI, - [171969] = 2, + anon_sym_RPAREN, + [173608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8672), 1, + sym_identifier, + [173615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7066), 1, anon_sym_COLON, - [171976] = 2, + [173622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8674), 1, - anon_sym_LBRACE, - [171983] = 2, + anon_sym_class, + [173629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8676), 1, - sym_identifier, - [171990] = 2, + anon_sym_EQ, + [173636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8678), 1, - anon_sym_COLON, - [171997] = 2, + sym_variable, + [173643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6427), 1, + anon_sym_EQ_EQ_GT, + [173650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8680), 1, - anon_sym_COLON, - [172004] = 2, + anon_sym_SEMI, + [173657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8682), 1, - anon_sym_RPAREN, - [172011] = 2, + anon_sym_SEMI, + [173664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8684), 1, - anon_sym_LBRACE, - [172018] = 2, + anon_sym_SEMI, + [173671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8686), 1, - sym_variable, - [172025] = 2, + sym__heredoc_start, + [173678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8688), 1, - anon_sym_LBRACE, - [172032] = 2, + anon_sym_EQ, + [173685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8690), 1, - anon_sym_COLON, - [172039] = 2, + anon_sym_SEMI, + [173692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8692), 1, - anon_sym_LPAREN, - [172046] = 2, + anon_sym_SEMI, + [173699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7056), 1, + anon_sym_COLON, + [173706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8694), 1, - anon_sym_LBRACE, - [172053] = 2, + sym__heredoc_end, + [173713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8696), 1, - anon_sym_SEMI, - [172060] = 2, + anon_sym_RPAREN, + [173720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8698), 1, - anon_sym_SEMI, - [172067] = 2, + anon_sym_LBRACE, + [173727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7054), 1, + anon_sym_COLON, + [173734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8700), 1, anon_sym_SEMI, - [172074] = 2, + [173741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8702), 1, - anon_sym_RPAREN, - [172081] = 2, + ACTIONS(7052), 1, + anon_sym_COLON, + [173748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 1, + ACTIONS(7050), 1, + anon_sym_COLON, + [173755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8702), 1, anon_sym_LBRACE, - [172088] = 2, + [173762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8706), 1, - sym_identifier, - [172095] = 2, + ACTIONS(7048), 1, + anon_sym_COLON, + [173769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(8704), 1, + anon_sym_SEMI, + [173776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7040), 1, anon_sym_COLON, - [172102] = 2, + [173783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8706), 1, + anon_sym_SEMI, + [173790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8708), 1, - anon_sym_RPAREN, - [172109] = 2, + anon_sym_COLON, + [173797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8710), 1, - anon_sym_SEMI, - [172116] = 2, + anon_sym_LPAREN, + [173804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8712), 1, - sym_variable, - [172123] = 2, + anon_sym_LBRACE, + [173811] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8714), 1, - anon_sym_LPAREN, - [172130] = 2, + anon_sym_COLON, + [173818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_class, + [173825] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8716), 1, - anon_sym_SEMI, - [172137] = 2, + anon_sym_LBRACE, + [173832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8718), 1, - anon_sym_LBRACE, - [172144] = 2, + anon_sym_SEMI, + [173839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8720), 1, - anon_sym_LBRACE, - [172151] = 2, + anon_sym_while, + [173846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8722), 1, - anon_sym_LBRACE, - [172158] = 2, + ts_builtin_sym_end, + [173853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5420), 1, + anon_sym_class, + [173860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8724), 1, - sym_identifier, - [172165] = 2, + anon_sym_type, + [173867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4507), 1, - sym_variable, - [172172] = 2, + ACTIONS(6069), 1, + anon_sym_class, + [173874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8726), 1, - anon_sym_RPAREN, - [172179] = 2, + anon_sym_SEMI, + [173881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8728), 1, - anon_sym_LPAREN, - [172186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6248), 1, - anon_sym_LPAREN, - [172193] = 2, + anon_sym_LBRACE, + [173888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8730), 1, - anon_sym_RPAREN, - [172200] = 2, + anon_sym_SEMI, + [173895] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8732), 1, - anon_sym_SEMI, - [172207] = 2, + anon_sym_RPAREN, + [173902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8734), 1, - anon_sym_SEMI, - [172214] = 2, + sym_identifier, + [173909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8736), 1, - anon_sym_SEMI, - [172221] = 2, + anon_sym_RPAREN, + [173916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8094), 1, + anon_sym_class, + [173923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8738), 1, - anon_sym_COLON, - [172228] = 2, + anon_sym_SEMI, + [173930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8740), 1, sym_identifier, - [172235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - sym__heredoc_end, - [172242] = 2, + [173937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8742), 1, - sym_identifier, - [172249] = 2, + anon_sym_SEMI, + [173944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8744), 1, - anon_sym_SEMI, - [172256] = 2, + anon_sym_EQ, + [173951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8746), 1, - anon_sym_SEMI, - [172263] = 2, + anon_sym_LBRACE, + [173958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8748), 1, - anon_sym_SEMI, - [172270] = 2, + anon_sym_as2, + [173965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8750), 1, - anon_sym_COLON, - [172277] = 2, + sym_variable, + [173972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8752), 1, anon_sym_SEMI, - [172284] = 2, + [173979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8754), 1, - anon_sym_COLON, - [172291] = 2, + anon_sym_LBRACE, + [173986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8756), 1, - sym_xhp_category_identifier, - [172298] = 2, + anon_sym_SEMI, + [173993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8758), 1, - anon_sym_EQ_EQ_GT, - [172305] = 2, + anon_sym_class, + [174000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8760), 1, - anon_sym_COLON, - [172312] = 2, + anon_sym_EQ, + [174007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8762), 1, - anon_sym_COLON, - [172319] = 2, + sym_variable, + [174014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8764), 1, - anon_sym_EQ_GT, - [172326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_COLON_COLON, - [172333] = 2, + anon_sym_SEMI, + [174021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8766), 1, anon_sym_SEMI, - [172340] = 2, + [174028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8768), 1, - anon_sym_COLON, - [172347] = 2, + anon_sym_RPAREN, + [174035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8770), 1, - anon_sym_insteadof, - [172354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6489), 1, - anon_sym_EQ_EQ_GT, - [172361] = 2, + anon_sym_LPAREN, + [174042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8772), 1, - anon_sym_LBRACE, - [172368] = 2, + sym_identifier, + [174049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8774), 1, - anon_sym_GT, - [172375] = 2, + anon_sym_EQ, + [174056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8776), 1, sym_identifier, - [172382] = 2, + [174063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4142), 1, + sym_variable, + [174070] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(6982), 1, + anon_sym_COLON, + [174077] = 2, + ACTIONS(5544), 1, + sym_comment, ACTIONS(8778), 1, - sym_identifier, - [172389] = 2, + aux_sym_function_type_specifier_token1, + [174084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8780), 1, - anon_sym_SEMI, - [172396] = 2, + sym_identifier, + [174091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8782), 1, anon_sym_SEMI, - [172403] = 2, + [174098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - anon_sym_SEMI, - [172410] = 2, + ACTIONS(6978), 1, + anon_sym_COLON, + [174105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8784), 1, - sym_identifier, - [172417] = 2, + anon_sym_using, + [174112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8786), 1, - anon_sym_SEMI, - [172424] = 2, + ACTIONS(6974), 1, + anon_sym_COLON, + [174119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6376), 1, - anon_sym_EQ_EQ_GT, - [172431] = 2, + ACTIONS(6972), 1, + anon_sym_COLON, + [174126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6296), 1, + ACTIONS(8786), 1, sym_identifier, - [172438] = 2, + [174133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 1, - sym__heredoc_end, - [172445] = 2, + ACTIONS(6970), 1, + anon_sym_COLON, + [174140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8788), 1, - anon_sym_SEMI, - [172452] = 2, + sym_identifier, + [174147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6966), 1, + anon_sym_COLON, + [174154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + sym_variable, + [174161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8790), 1, - anon_sym_RPAREN, - [172459] = 2, + anon_sym_COLON, + [174168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8792), 1, anon_sym_LPAREN, - [172466] = 2, + [174175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8794), 1, - sym_identifier, - [172473] = 2, + anon_sym_LPAREN, + [174182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8796), 1, - anon_sym_LPAREN, - [172480] = 2, + sym_identifier, + [174189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8798), 1, - anon_sym_LPAREN, - [172487] = 2, + anon_sym_as2, + [174196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8800), 1, - sym_identifier, - [172494] = 2, + sym_variable, + [174203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8802), 1, sym_identifier, - [172501] = 2, + [174210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8804), 1, - anon_sym_COLON, - [172508] = 2, + sym_identifier, + [174217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8806), 1, sym_identifier, - [172515] = 2, + [174224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8808), 1, - sym_identifier, - [172522] = 2, + anon_sym_RPAREN, + [174231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8810), 1, - anon_sym_LBRACE, - [172529] = 2, + anon_sym_LPAREN, + [174238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8812), 1, - anon_sym_COLON, - [172536] = 2, + sym_identifier, + [174245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8814), 1, - anon_sym_COLON, - [172543] = 2, + anon_sym_EQ, + [174252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8816), 1, - anon_sym_SEMI, - [172550] = 2, + anon_sym_LPAREN, + [174259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6517), 1, - sym_identifier, - [172557] = 2, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + [174266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8818), 1, - anon_sym_COLON, - [172564] = 2, + anon_sym_SEMI, + [174273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8820), 1, - anon_sym_COLON, - [172571] = 2, + anon_sym_SEMI, + [174280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8822), 1, - sym_identifier, - [172578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2815), 1, - anon_sym_EQ_EQ_GT, - [172585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8824), 1, anon_sym_COLON, - [172592] = 2, + [174287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_COLON, - [172599] = 2, + ACTIONS(8824), 1, + anon_sym_LBRACE, + [174294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8826), 1, - sym_identifier, - [172606] = 2, + anon_sym_LPAREN, + [174301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8828), 1, sym_identifier, - [172613] = 2, + [174308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8830), 1, - anon_sym_LPAREN, - [172620] = 2, + anon_sym_SEMI, + [174315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8832), 1, - anon_sym_LBRACE, - [172627] = 2, + anon_sym_EQ, + [174322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8834), 1, - anon_sym_EQ, - [172634] = 2, + anon_sym_EQ_GT, + [174329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8836), 1, - sym_identifier, - [172641] = 2, + anon_sym_COLON, + [174336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8838), 1, - anon_sym_SEMI, - [172648] = 2, + sym_identifier, + [174343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8840), 1, - anon_sym_SEMI, - [172655] = 2, + anon_sym_COLON, + [174350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8842), 1, - anon_sym_LPAREN, - [172662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5973), 1, - anon_sym_class, - [172669] = 2, + anon_sym_RPAREN, + [174357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8844), 1, - anon_sym_LPAREN, - [172676] = 2, + anon_sym_RPAREN, + [174364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8846), 1, - anon_sym_using, - [172683] = 2, + anon_sym_COLON, + [174371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8848), 1, - anon_sym_LBRACE, - [172690] = 2, + anon_sym_COLON, + [174378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8850), 1, anon_sym_RPAREN, - [172697] = 2, + [174385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8852), 1, - sym_identifier, - [172704] = 2, + anon_sym_RPAREN, + [174392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8854), 1, - sym_identifier, - [172711] = 2, + sym_variable, + [174399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8856), 1, - sym_identifier, - [172718] = 2, + anon_sym_RPAREN, + [174406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8858), 1, - anon_sym_LPAREN, - [172725] = 2, + anon_sym_COLON, + [174413] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8860), 1, - anon_sym_RPAREN, - [172732] = 2, + anon_sym_SEMI, + [174420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8862), 1, - anon_sym_class, - [172739] = 2, + anon_sym_RPAREN, + [174427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8864), 1, - anon_sym_COLON, - [172746] = 2, + anon_sym_LPAREN, + [174434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8866), 1, - sym_identifier, - [172753] = 2, + anon_sym_SEMI, + [174441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8868), 1, - sym_identifier, - [172760] = 2, + anon_sym_LPAREN, + [174448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8870), 1, - anon_sym_LBRACE, - [172767] = 2, + sym_identifier, + [174455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8872), 1, - anon_sym_COLON, - [172774] = 2, + sym_identifier, + [174462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5786), 1, + sym__heredoc_end, + [174469] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8874), 1, - anon_sym_COLON, - [172781] = 2, + anon_sym_RPAREN, + [174476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8876), 1, - anon_sym_COLON, - [172788] = 2, + anon_sym_LBRACE, + [174483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8878), 1, - anon_sym_LBRACE, - [172795] = 2, + anon_sym_SEMI, + [174490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8880), 1, - anon_sym_COLON, - [172802] = 2, + anon_sym_LPAREN, + [174497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8882), 1, - anon_sym_COLON, - [172809] = 2, + anon_sym_EQ_EQ_GT, + [174504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8884), 1, - sym_identifier, - [172816] = 2, + anon_sym_SEMI, + [174511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8886), 1, - anon_sym_SEMI, - [172823] = 2, + anon_sym_using, + [174518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8888), 1, - anon_sym_COLON, - [172830] = 2, + sym_identifier, + [174525] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8890), 1, - anon_sym_RPAREN, - [172837] = 2, + anon_sym_SEMI, + [174532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8892), 1, - anon_sym_while, - [172844] = 2, + sym_identifier, + [174539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8894), 1, - anon_sym_RPAREN, - [172851] = 2, + sym_identifier, + [174546] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8896), 1, - anon_sym_LBRACE, - [172858] = 2, + anon_sym_LPAREN, + [174553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8898), 1, - anon_sym_RPAREN, - [172865] = 2, + anon_sym_LBRACE, + [174560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8900), 1, - anon_sym_RPAREN, - [172872] = 2, + anon_sym_LPAREN, + [174567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8902), 1, - anon_sym_RPAREN, - [172879] = 2, + anon_sym_SEMI, + [174574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8904), 1, - anon_sym_RPAREN, - [172886] = 2, + anon_sym_SEMI, + [174581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8906), 1, - anon_sym_RPAREN, - [172893] = 2, + anon_sym_LPAREN, + [174588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8908), 1, - sym_identifier, - [172900] = 2, + anon_sym_SEMI, + [174595] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8910), 1, - anon_sym_EQ, - [172907] = 2, + sym_identifier, + [174602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8912), 1, - anon_sym_SEMI, - [172914] = 2, + anon_sym_COLON, + [174609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8914), 1, - anon_sym_LBRACE, - [172921] = 2, + sym_identifier, + [174616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8916), 1, - anon_sym_LBRACE, - [172928] = 2, + anon_sym_SEMI, + [174623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8918), 1, - anon_sym_EQ_EQ_GT, - [172935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_EQ, - [172942] = 2, + sym_identifier, + [174630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8920), 1, - sym_identifier, - [172949] = 2, + anon_sym_SEMI, + [174637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8922), 1, anon_sym_LBRACE, - [172956] = 2, + [174644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8924), 1, - anon_sym_LPAREN, - [172963] = 2, + sym__heredoc_end, + [174651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8926), 1, - anon_sym_RPAREN, - [172970] = 2, + anon_sym_COLON, + [174658] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8928), 1, anon_sym_LBRACE, - [172977] = 2, + [174665] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8930), 1, anon_sym_COLON, - [172984] = 2, + [174672] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8932), 1, - sym_identifier, - [172991] = 2, + anon_sym_SEMI, + [174679] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8934), 1, - anon_sym_LBRACE, - [172998] = 2, + anon_sym_SEMI, + [174686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8936), 1, - anon_sym_LBRACE, - [173005] = 2, + anon_sym_COLON, + [174693] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8938), 1, anon_sym_COLON, - [173012] = 2, + [174700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8940), 1, - anon_sym_COLON, - [173019] = 2, + anon_sym_RPAREN, + [174707] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8942), 1, - anon_sym_EQ_EQ_GT, - [173026] = 2, + anon_sym_LBRACE, + [174714] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8944), 1, - anon_sym_SEMI, - [173033] = 2, + anon_sym_LBRACE, + [174721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8946), 1, anon_sym_COLON, - [173040] = 2, + [174728] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8948), 1, - anon_sym_COLON, - [173047] = 2, + anon_sym_LBRACE, + [174735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8950), 1, - anon_sym_SEMI, - [173054] = 2, + anon_sym_LBRACE, + [174742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8952), 1, - anon_sym_LPAREN, - [173061] = 2, + anon_sym_RPAREN, + [174749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8954), 1, - anon_sym_COLON, - [173068] = 2, + anon_sym_SEMI, + [174756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8956), 1, - anon_sym_LBRACE, - [173075] = 2, + anon_sym_SEMI, + [174763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8958), 1, - anon_sym_LBRACE, - [173082] = 2, + anon_sym_EQ_EQ_GT, + [174770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8960), 1, - sym_identifier, - [173089] = 2, + anon_sym_LBRACE, + [174777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8962), 1, - sym_identifier, - [173096] = 2, + anon_sym_LBRACE, + [174784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8964), 1, - anon_sym_SEMI, - [173103] = 2, + anon_sym_LBRACE, + [174791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8966), 1, - sym__heredoc_end, - [173110] = 2, + anon_sym_COLON, + [174798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8968), 1, anon_sym_LBRACE, - [173117] = 2, + [174805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8970), 1, - anon_sym_SEMI, - [173124] = 2, + anon_sym_RPAREN, + [174812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 1, + sym__heredoc_end, + [174819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8972), 1, - anon_sym_RPAREN, - [173131] = 2, + anon_sym_SEMI, + [174826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8974), 1, - anon_sym_RPAREN, - [173138] = 2, + sym_identifier, + [174833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8976), 1, - sym_identifier, - [173145] = 2, + anon_sym_RPAREN, + [174840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8978), 1, - anon_sym_SEMI, - [173152] = 2, + sym_identifier, + [174847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8980), 1, - anon_sym_SEMI, - [173159] = 2, + sym_identifier, + [174854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8982), 1, anon_sym_SEMI, - [173166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7621), 1, - anon_sym_COLON, - [173173] = 2, + [174861] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8984), 1, - anon_sym_SEMI, - [173180] = 2, + anon_sym_LPAREN, + [174868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8986), 1, - sym_identifier, - [173187] = 2, + anon_sym_LPAREN, + [174875] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8988), 1, - anon_sym_LBRACE, - [173194] = 2, + anon_sym_RPAREN, + [174882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8990), 1, anon_sym_LPAREN, - [173201] = 2, + [174889] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8992), 1, - anon_sym_SEMI, - [173208] = 2, + anon_sym_COLON, + [174896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8994), 1, - anon_sym_using, - [173215] = 2, + sym_identifier, + [174903] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8996), 1, - anon_sym_COLON, - [173222] = 2, + sym_identifier, + [174910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8998), 1, - sym_identifier, - [173229] = 2, + anon_sym_SEMI, + [174917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9000), 1, - anon_sym_SEMI, - [173236] = 2, + anon_sym_COLON, + [174924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9002), 1, - anon_sym_RPAREN, - [173243] = 2, + anon_sym_COLON, + [174931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9004), 1, - anon_sym_COLON, - [173250] = 2, + sym_identifier, + [174938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9006), 1, - anon_sym_COLON, - [173257] = 2, + anon_sym_SEMI, + [174945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9008), 1, - anon_sym_SEMI, - [173264] = 2, + anon_sym_COLON, + [174952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9010), 1, - anon_sym_EQ_EQ_GT, - [173271] = 2, + anon_sym_COLON, + [174959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9012), 1, - anon_sym_COLON, - [173278] = 2, + anon_sym_RPAREN, + [174966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9014), 1, - anon_sym_COLON, - [173285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6481), 1, - anon_sym_EQ_EQ_GT, - [173292] = 2, + anon_sym_RPAREN, + [174973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9016), 1, - ts_builtin_sym_end, - [173299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9018), 1, anon_sym_COLON, - [173306] = 2, + [174980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9020), 1, + ACTIONS(9018), 1, anon_sym_SEMI, - [173313] = 2, + [174987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_class, - [173320] = 2, + ACTIONS(9020), 1, + anon_sym_RPAREN, + [174994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9022), 1, - anon_sym_LBRACE, - [173327] = 2, + anon_sym_RPAREN, + [175001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9024), 1, - sym_identifier, - [173334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7830), 1, - sym_variable, - [173341] = 2, + anon_sym_RPAREN, + [175008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9026), 1, - anon_sym_EQ_EQ_GT, - [173348] = 2, + anon_sym_EQ, + [175015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9028), 1, sym_identifier, - [173355] = 2, + [175022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9030), 1, - anon_sym_LBRACE, - [173362] = 2, + anon_sym_RPAREN, + [175029] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9032), 1, anon_sym_SEMI, - [173369] = 2, + [175036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9034), 1, - anon_sym_RPAREN, - [173376] = 2, + anon_sym_GT, + [175043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9036), 1, - anon_sym_LBRACE, - [173383] = 2, + anon_sym_SEMI, + [175050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9038), 1, - anon_sym_LBRACE, - [173390] = 2, + sym_variable, + [175057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6653), 1, + anon_sym_LPAREN, + [175064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9040), 1, - anon_sym_SEMI, - [173397] = 2, + sym_variable, + [175071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9042), 1, - anon_sym_SEMI, - [173404] = 2, + anon_sym_LPAREN, + [175078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9044), 1, - anon_sym_LPAREN, - [173411] = 2, + anon_sym_SEMI, + [175085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_EQ_EQ_GT, + [175092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9046), 1, - anon_sym_LPAREN, - [173418] = 2, + sym_identifier, + [175099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9048), 1, - anon_sym_LPAREN, - [173425] = 2, + anon_sym_GT, + [175106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9050), 1, sym_identifier, - [173432] = 2, + [175113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9052), 1, anon_sym_LPAREN, - [173439] = 2, + [175120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9054), 1, - anon_sym_COLON_COLON, - [173446] = 2, + anon_sym_SEMI, + [175127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9056), 1, - sym_identifier, - [173453] = 2, + anon_sym_LPAREN, + [175134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9058), 1, - sym_identifier, - [173460] = 2, + anon_sym_COLON, + [175141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9060), 1, - anon_sym_SEMI, - [173467] = 2, + 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, ACTIONS(3), 1, sym_comment, ACTIONS(9062), 1, - anon_sym_LPAREN, - [173474] = 2, + anon_sym_COLON, + [175169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9064), 1, - sym_identifier, - [173481] = 2, + anon_sym_COLON, + [175176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9066), 1, - sym_identifier, - [173488] = 2, + anon_sym_SEMI, + [175183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9068), 1, anon_sym_LPAREN, - [173495] = 2, + [175190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9070), 1, - anon_sym_LBRACE, - [173502] = 2, + anon_sym_COLON, + [175197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9072), 1, - sym_identifier, - [173509] = 2, + anon_sym_COLON, + [175204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9074), 1, anon_sym_LPAREN, - [173516] = 2, + [175211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9076), 1, - sym_identifier, - [173523] = 2, + sym_variable, + [175218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9078), 1, - anon_sym_LPAREN, - [173530] = 2, + anon_sym_COLON, + [175225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9080), 1, - anon_sym_LPAREN, - [173537] = 2, + sym_identifier, + [175232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9082), 1, - sym_identifier, - [173544] = 2, + anon_sym_EQ_EQ_GT, + [175239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9084), 1, - sym_identifier, - [173551] = 2, + sym_variable, + [175246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9086), 1, - sym_identifier, - [173558] = 2, + anon_sym_SEMI, + [175253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9088), 1, - anon_sym_SEMI, - [173565] = 2, + sym_identifier, + [175260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9090), 1, - anon_sym_LPAREN, - [173572] = 2, + anon_sym_SEMI, + [175267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9092), 1, sym_identifier, - [173579] = 2, + [175274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9094), 1, - sym_identifier, - [173586] = 2, + anon_sym_EQ, + [175281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9096), 1, - anon_sym_LPAREN, - [173593] = 2, + anon_sym_SEMI, + [175288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9098), 1, - sym_identifier, - [173600] = 2, + anon_sym_SEMI, + [175295] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9100), 1, - anon_sym_LPAREN, - [173607] = 2, + anon_sym_LBRACE, + [175302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9102), 1, - anon_sym_RPAREN, - [173614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_COLON, - [173621] = 2, + anon_sym_SEMI, + [175309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9104), 1, - anon_sym_LPAREN, - [173628] = 2, + anon_sym_SEMI, + [175316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9106), 1, - anon_sym_LBRACE, - [173635] = 2, + anon_sym_LPAREN, + [175323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9108), 1, - anon_sym_LPAREN, - [173642] = 2, + anon_sym_SEMI, + [175330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9110), 1, - sym_identifier, - [173649] = 2, + anon_sym_using, + [175337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9112), 1, - anon_sym_LBRACE, - [173656] = 2, + sym_identifier, + [175344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9114), 1, - anon_sym_LPAREN, - [173663] = 2, + anon_sym_SEMI, + [175351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9116), 1, - sym_identifier, - [173670] = 2, + sym__heredoc_start, + [175358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9118), 1, - sym_identifier, - [173677] = 2, + anon_sym_LPAREN, + [175365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9120), 1, - anon_sym_LPAREN, - [173684] = 2, + anon_sym_SEMI, + [175372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9122), 1, - sym_identifier, - [173691] = 2, + anon_sym_SEMI, + [175379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9124), 1, - anon_sym_LPAREN, - [173698] = 2, + anon_sym_COLON, + [175386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9126), 1, - anon_sym_RPAREN, - [173705] = 2, + sym_identifier, + [175393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9128), 1, - anon_sym_LPAREN, - [173712] = 2, + anon_sym_class, + [175400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9130), 1, - anon_sym_LPAREN, - [173719] = 2, + sym_identifier, + [175407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9132), 1, - anon_sym_LBRACE, - [173726] = 2, + anon_sym_COLON, + [175414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9134), 1, - sym_identifier, - [173733] = 2, + anon_sym_COLON, + [175421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9136), 1, sym_identifier, - [173740] = 2, + [175428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9138), 1, - anon_sym_LBRACE, - [173747] = 2, + anon_sym_COLON_COLON, + [175435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9140), 1, - anon_sym_LPAREN, - [173754] = 2, + anon_sym_COLON, + [175442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9142), 1, - sym_identifier, - [173761] = 2, + anon_sym_COLON, + [175449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9144), 1, sym_identifier, - [173768] = 2, + [175456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9146), 1, anon_sym_LPAREN, - [173775] = 2, + [175463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9148), 1, - sym_identifier, - [173782] = 2, + anon_sym_COLON, + [175470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9150), 1, - anon_sym_LPAREN, - [173789] = 2, + anon_sym_SEMI, + [175477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9152), 1, - anon_sym_RPAREN, - [173796] = 2, + anon_sym_LBRACE, + [175484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9154), 1, - anon_sym_RPAREN, - [173803] = 2, + anon_sym_SEMI, + [175491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9156), 1, - anon_sym_LPAREN, - [173810] = 2, + anon_sym_RPAREN, + [175498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9158), 1, - anon_sym_RPAREN, - [173817] = 2, + anon_sym_SEMI, + [175505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9160), 1, - anon_sym_LBRACE, - [173824] = 2, + anon_sym_SEMI, + [175512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9162), 1, - sym_identifier, - [173831] = 2, + anon_sym_LBRACE, + [175519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9164), 1, - anon_sym_LBRACE, - [173838] = 2, + anon_sym_SEMI, + [175526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9166), 1, - anon_sym_LPAREN, - [173845] = 2, + anon_sym_LBRACE, + [175533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9168), 1, - sym_identifier, - [173852] = 2, + anon_sym_LBRACE, + [175540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9170), 1, - sym_identifier, - [173859] = 2, + anon_sym_COLON, + [175547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9172), 1, - anon_sym_LPAREN, - [173866] = 2, + anon_sym_LBRACE, + [175554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9174), 1, - sym_identifier, - [173873] = 2, + anon_sym_SEMI, + [175561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9176), 1, - anon_sym_LPAREN, - [173880] = 2, + anon_sym_SEMI, + [175568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9178), 1, - anon_sym_LPAREN, - [173887] = 2, + anon_sym_EQ_EQ_GT, + [175575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9180), 1, - sym__heredoc_start, - [173894] = 2, + anon_sym_SEMI, + [175582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9182), 1, - anon_sym_LPAREN, - [173901] = 2, + sym_identifier, + [175589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9184), 1, - anon_sym_RPAREN, - [173908] = 2, + anon_sym_LBRACE, + [175596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9186), 1, sym_identifier, - [173915] = 2, + [175603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9188), 1, - sym_identifier, - [173922] = 2, + anon_sym_LPAREN, + [175610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9190), 1, - anon_sym_LPAREN, - [173929] = 2, + anon_sym_LBRACE, + [175617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9192), 1, anon_sym_LPAREN, - [173936] = 2, + [175624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9194), 1, - sym_identifier, - [173943] = 2, + anon_sym_COLON, + [175631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9196), 1, sym_identifier, - [173950] = 2, + [175638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9198), 1, - anon_sym_LPAREN, - [173957] = 2, + anon_sym_SEMI, + [175645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9200), 1, sym_identifier, - [173964] = 2, + [175652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9202), 1, - anon_sym_LPAREN, - [173971] = 2, + anon_sym_COLON, + [175659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9204), 1, - anon_sym_LPAREN, - [173978] = 2, + anon_sym_COLON, + [175666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9206), 1, - anon_sym_LPAREN, - [173985] = 2, + anon_sym_SEMI, + [175673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9208), 1, - anon_sym_LPAREN, - [173992] = 2, + sym_variable, + [175680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9210), 1, - anon_sym_class, - [173999] = 2, - ACTIONS(5472), 1, + anon_sym_COLON, + [175687] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9212), 1, - aux_sym_function_type_specifier_token1, - [174006] = 2, + anon_sym_COLON, + [175694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9214), 1, - anon_sym_LPAREN, - [174013] = 2, + anon_sym_LBRACE, + [175701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9216), 1, anon_sym_RPAREN, - [174020] = 2, + [175708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9218), 1, - anon_sym_class, - [174027] = 2, - ACTIONS(5472), 1, + anon_sym_COLON, + [175715] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9220), 1, - aux_sym_function_type_specifier_token1, - [174034] = 2, + sym_identifier, + [175722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9222), 1, - anon_sym_class, - [174041] = 2, - ACTIONS(5472), 1, + anon_sym_SEMI, + [175729] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9224), 1, - aux_sym_function_type_specifier_token1, - [174048] = 2, + anon_sym_RPAREN, + [175736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9226), 1, - anon_sym_class, - [174055] = 2, - ACTIONS(5472), 1, + anon_sym_LBRACE, + [175743] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9228), 1, - aux_sym_function_type_specifier_token1, - [174062] = 2, + anon_sym_LBRACE, + [175750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9230), 1, - anon_sym_class, - [174069] = 2, - ACTIONS(5472), 1, + anon_sym_LBRACE, + [175757] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9232), 1, - aux_sym_function_type_specifier_token1, - [174076] = 2, + sym_identifier, + [175764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9234), 1, - anon_sym_class, - [174083] = 2, - ACTIONS(5472), 1, + anon_sym_LBRACE, + [175771] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9236), 1, - aux_sym_function_type_specifier_token1, - [174090] = 2, + anon_sym_RPAREN, + [175778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9238), 1, - anon_sym_class, - [174097] = 2, - ACTIONS(5472), 1, + anon_sym_LPAREN, + [175785] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9240), 1, - aux_sym_function_type_specifier_token1, - [174104] = 2, + sym_identifier, + [175792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9242), 1, - anon_sym_class, - [174111] = 2, - ACTIONS(5472), 1, + anon_sym_SEMI, + [175799] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9244), 1, - aux_sym_function_type_specifier_token1, - [174118] = 2, + sym_identifier, + [175806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9246), 1, - anon_sym_class, - [174125] = 2, - ACTIONS(5472), 1, + anon_sym_RPAREN, + [175813] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9248), 1, - aux_sym_function_type_specifier_token1, - [174132] = 2, + anon_sym_RPAREN, + [175820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9250), 1, - anon_sym_class, - [174139] = 2, - ACTIONS(5472), 1, + anon_sym_RPAREN, + [175827] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9252), 1, - aux_sym_function_type_specifier_token1, - [174146] = 2, + anon_sym_LPAREN, + [175834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9254), 1, - anon_sym_class, - [174153] = 2, - ACTIONS(5472), 1, + anon_sym_LPAREN, + [175841] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9256), 1, - aux_sym_function_type_specifier_token1, - [174160] = 2, + anon_sym_LPAREN, + [175848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9258), 1, - anon_sym_class, - [174167] = 2, - ACTIONS(5472), 1, + anon_sym_LBRACE, + [175855] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9260), 1, - aux_sym_function_type_specifier_token1, - [174174] = 2, + anon_sym_RPAREN, + [175862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9262), 1, - anon_sym_RPAREN, - [174181] = 2, + sym_identifier, + [175869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9264), 1, anon_sym_RPAREN, - [174188] = 2, + [175876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9266), 1, - anon_sym_RPAREN, - [174195] = 2, + anon_sym_LPAREN, + [175883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9268), 1, - anon_sym_RPAREN, - [174202] = 2, + sym_identifier, + [175890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9270), 1, - anon_sym_SEMI, - [174209] = 2, + sym_identifier, + [175897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9272), 1, - anon_sym_RPAREN, - [174216] = 2, + anon_sym_LPAREN, + [175904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9274), 1, - sym_identifier, - [174223] = 2, + anon_sym_RPAREN, + [175911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9276), 1, - anon_sym_using, - [174230] = 2, + sym_identifier, + [175918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9278), 1, - sym_identifier, - [174237] = 2, + anon_sym_LPAREN, + [175925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9280), 1, - anon_sym_RPAREN, - [174244] = 2, + anon_sym_LBRACE, + [175932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9282), 1, - sym_identifier, - [174251] = 2, + anon_sym_RPAREN, + [175939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9284), 1, - anon_sym_SEMI, - [174258] = 2, + anon_sym_LPAREN, + [175946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9286), 1, anon_sym_LBRACE, - [174265] = 2, + [175953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9288), 1, anon_sym_LBRACE, + [175960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9290), 1, + sym_identifier, + [175967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9292), 1, + anon_sym_LBRACE, + [175974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9294), 1, + anon_sym_LPAREN, + [175981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 1, + sym_identifier, + [175988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9298), 1, + sym_identifier, + [175995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 1, + anon_sym_LPAREN, + [176002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9302), 1, + sym_identifier, + [176009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN, + [176016] = 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9308), 1, + anon_sym_LPAREN, + [176037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9310), 1, + anon_sym_LPAREN, + [176044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9312), 1, + anon_sym_RPAREN, + [176051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9314), 1, + sym_identifier, + [176058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9316), 1, + anon_sym_LPAREN, + [176065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9318), 1, + anon_sym_LPAREN, + [176072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9320), 1, + sym_identifier, + [176079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9322), 1, + sym_identifier, + [176086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9324), 1, + anon_sym_LPAREN, + [176093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9326), 1, + sym_identifier, + [176100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9328), 1, + anon_sym_LPAREN, + [176107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9330), 1, + anon_sym_RPAREN, + [176114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9332), 1, + anon_sym_type, + [176121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9334), 1, + anon_sym_LPAREN, + [176128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 1, + anon_sym_LPAREN, + [176135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_RPAREN, + [176142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9340), 1, + sym_identifier, + [176149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9342), 1, + anon_sym_RPAREN, + [176156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9344), 1, + anon_sym_LPAREN, + [176163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9346), 1, + sym_identifier, + [176170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9348), 1, + sym_identifier, + [176177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9350), 1, + anon_sym_LPAREN, + [176184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9352), 1, + sym_identifier, + [176191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9354), 1, + anon_sym_LPAREN, + [176198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 1, + anon_sym_ctx, + [176205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9358), 1, + anon_sym_RPAREN, + [176212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9360), 1, + anon_sym_LPAREN, + [176219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9362), 1, + anon_sym_SEMI, + [176226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9364), 1, + anon_sym_SEMI, + [176233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9366), 1, + sym_identifier, + [176240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9368), 1, + sym_identifier, + [176247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9370), 1, + anon_sym_LPAREN, + [176254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9372), 1, + sym_identifier, + [176261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9374), 1, + sym_identifier, + [176268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9376), 1, + anon_sym_LPAREN, + [176275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9378), 1, + sym_identifier, + [176282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9380), 1, + anon_sym_LPAREN, + [176289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9382), 1, + sym_identifier, + [176296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9384), 1, + anon_sym_EQ_EQ_GT, + [176303] = 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9388), 1, + anon_sym_EQ, + [176324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9390), 1, + sym_identifier, + [176331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9392), 1, + anon_sym_SEMI, + [176338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9394), 1, + anon_sym_LPAREN, + [176345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9396), 1, + sym_identifier, + [176352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 1, + sym_identifier, + [176359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9400), 1, + anon_sym_LPAREN, + [176366] = 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8036), 1, + anon_sym_class, + [176387] = 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_class, + [176408] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9412), 1, + aux_sym_function_type_specifier_token1, + [176415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9414), 1, + anon_sym_LPAREN, + [176422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9416), 1, + anon_sym_SEMI, + [176429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9418), 1, + anon_sym_class, + [176436] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9420), 1, + aux_sym_function_type_specifier_token1, + [176443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9422), 1, + anon_sym_class, + [176450] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9424), 1, + aux_sym_function_type_specifier_token1, + [176457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9426), 1, + anon_sym_class, + [176464] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9428), 1, + aux_sym_function_type_specifier_token1, + [176471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9430), 1, + anon_sym_class, + [176478] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9432), 1, + aux_sym_function_type_specifier_token1, + [176485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9434), 1, + anon_sym_class, + [176492] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9436), 1, + aux_sym_function_type_specifier_token1, + [176499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 1, + anon_sym_class, + [176506] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9440), 1, + aux_sym_function_type_specifier_token1, + [176513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9442), 1, + anon_sym_class, + [176520] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9444), 1, + aux_sym_function_type_specifier_token1, + [176527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9446), 1, + anon_sym_class, + [176534] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9448), 1, + aux_sym_function_type_specifier_token1, + [176541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9450), 1, + anon_sym_class, + [176548] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9452), 1, + aux_sym_function_type_specifier_token1, + [176555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9454), 1, + anon_sym_class, + [176562] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9456), 1, + aux_sym_function_type_specifier_token1, + [176569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9458), 1, + anon_sym_class, + [176576] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(9460), 1, + aux_sym_function_type_specifier_token1, + [176583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9462), 1, + sym_identifier, + [176590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_COLON, + [176597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9464), 1, + anon_sym_SEMI, + [176604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9466), 1, + sym_identifier, + [176611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9468), 1, + sym_identifier, + [176618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9470), 1, + anon_sym_LBRACE, + [176625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9472), 1, + anon_sym_SEMI, + [176632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9474), 1, + anon_sym_RPAREN, + [176639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9476), 1, + anon_sym_SEMI, + [176646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9478), 1, + sym_identifier, + [176653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9480), 1, + anon_sym_LBRACE, + [176660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9482), 1, + anon_sym_SEMI, + [176667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9484), 1, + anon_sym_LPAREN, + [176674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9486), 1, + anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1738)] = 0, - [SMALL_STATE(1739)] = 71, - [SMALL_STATE(1740)] = 150, - [SMALL_STATE(1741)] = 220, - [SMALL_STATE(1742)] = 294, - [SMALL_STATE(1743)] = 364, - [SMALL_STATE(1744)] = 487, - [SMALL_STATE(1745)] = 568, - [SMALL_STATE(1746)] = 643, - [SMALL_STATE(1747)] = 716, - [SMALL_STATE(1748)] = 839, - [SMALL_STATE(1749)] = 924, - [SMALL_STATE(1750)] = 999, - [SMALL_STATE(1751)] = 1122, - [SMALL_STATE(1752)] = 1195, - [SMALL_STATE(1753)] = 1268, - [SMALL_STATE(1754)] = 1352, - [SMALL_STATE(1755)] = 1426, - [SMALL_STATE(1756)] = 1496, - [SMALL_STATE(1757)] = 1564, - [SMALL_STATE(1758)] = 1632, - [SMALL_STATE(1759)] = 1704, - [SMALL_STATE(1760)] = 1776, - [SMALL_STATE(1761)] = 1846, - [SMALL_STATE(1762)] = 1914, - [SMALL_STATE(1763)] = 1986, - [SMALL_STATE(1764)] = 2058, - [SMALL_STATE(1765)] = 2128, - [SMALL_STATE(1766)] = 2202, - [SMALL_STATE(1767)] = 2274, - [SMALL_STATE(1768)] = 2344, - [SMALL_STATE(1769)] = 2416, - [SMALL_STATE(1770)] = 2483, - [SMALL_STATE(1771)] = 2556, - [SMALL_STATE(1772)] = 2623, - [SMALL_STATE(1773)] = 2690, - [SMALL_STATE(1774)] = 2757, - [SMALL_STATE(1775)] = 2824, - [SMALL_STATE(1776)] = 2897, - [SMALL_STATE(1777)] = 2964, - [SMALL_STATE(1778)] = 3035, - [SMALL_STATE(1779)] = 3106, - [SMALL_STATE(1780)] = 3173, - [SMALL_STATE(1781)] = 3240, - [SMALL_STATE(1782)] = 3311, - [SMALL_STATE(1783)] = 3390, - [SMALL_STATE(1784)] = 3473, - [SMALL_STATE(1785)] = 3540, - [SMALL_STATE(1786)] = 3611, - [SMALL_STATE(1787)] = 3678, - [SMALL_STATE(1788)] = 3745, - [SMALL_STATE(1789)] = 3812, - [SMALL_STATE(1790)] = 3879, - [SMALL_STATE(1791)] = 3946, - [SMALL_STATE(1792)] = 4017, - [SMALL_STATE(1793)] = 4084, - [SMALL_STATE(1794)] = 4151, - [SMALL_STATE(1795)] = 4218, - [SMALL_STATE(1796)] = 4285, - [SMALL_STATE(1797)] = 4352, - [SMALL_STATE(1798)] = 4419, - [SMALL_STATE(1799)] = 4486, - [SMALL_STATE(1800)] = 4553, - [SMALL_STATE(1801)] = 4620, - [SMALL_STATE(1802)] = 4687, - [SMALL_STATE(1803)] = 4754, - [SMALL_STATE(1804)] = 4821, - [SMALL_STATE(1805)] = 4888, - [SMALL_STATE(1806)] = 4955, - [SMALL_STATE(1807)] = 5034, - [SMALL_STATE(1808)] = 5105, - [SMALL_STATE(1809)] = 5172, - [SMALL_STATE(1810)] = 5239, - [SMALL_STATE(1811)] = 5306, - [SMALL_STATE(1812)] = 5373, - [SMALL_STATE(1813)] = 5440, - [SMALL_STATE(1814)] = 5507, - [SMALL_STATE(1815)] = 5574, - [SMALL_STATE(1816)] = 5641, - [SMALL_STATE(1817)] = 5708, - [SMALL_STATE(1818)] = 5781, - [SMALL_STATE(1819)] = 5848, - [SMALL_STATE(1820)] = 5915, - [SMALL_STATE(1821)] = 5982, - [SMALL_STATE(1822)] = 6049, - [SMALL_STATE(1823)] = 6122, - [SMALL_STATE(1824)] = 6189, - [SMALL_STATE(1825)] = 6262, - [SMALL_STATE(1826)] = 6329, - [SMALL_STATE(1827)] = 6396, - [SMALL_STATE(1828)] = 6463, - [SMALL_STATE(1829)] = 6530, - [SMALL_STATE(1830)] = 6597, - [SMALL_STATE(1831)] = 6664, - [SMALL_STATE(1832)] = 6731, - [SMALL_STATE(1833)] = 6798, - [SMALL_STATE(1834)] = 6865, - [SMALL_STATE(1835)] = 6932, - [SMALL_STATE(1836)] = 7014, - [SMALL_STATE(1837)] = 7084, - [SMALL_STATE(1838)] = 7152, - [SMALL_STATE(1839)] = 7222, - [SMALL_STATE(1840)] = 7290, - [SMALL_STATE(1841)] = 7372, - [SMALL_STATE(1842)] = 7442, - [SMALL_STATE(1843)] = 7512, - [SMALL_STATE(1844)] = 7578, - [SMALL_STATE(1845)] = 7644, - [SMALL_STATE(1846)] = 7722, - [SMALL_STATE(1847)] = 7802, - [SMALL_STATE(1848)] = 7874, - [SMALL_STATE(1849)] = 7940, - [SMALL_STATE(1850)] = 8005, - [SMALL_STATE(1851)] = 8070, - [SMALL_STATE(1852)] = 8147, - [SMALL_STATE(1853)] = 8212, - [SMALL_STATE(1854)] = 8277, - [SMALL_STATE(1855)] = 8342, - [SMALL_STATE(1856)] = 8407, - [SMALL_STATE(1857)] = 8472, - [SMALL_STATE(1858)] = 8537, - [SMALL_STATE(1859)] = 8620, - [SMALL_STATE(1860)] = 8685, - [SMALL_STATE(1861)] = 8750, - [SMALL_STATE(1862)] = 8815, - [SMALL_STATE(1863)] = 8880, - [SMALL_STATE(1864)] = 8945, - [SMALL_STATE(1865)] = 9022, - [SMALL_STATE(1866)] = 9087, - [SMALL_STATE(1867)] = 9152, - [SMALL_STATE(1868)] = 9217, - [SMALL_STATE(1869)] = 9282, - [SMALL_STATE(1870)] = 9347, - [SMALL_STATE(1871)] = 9412, - [SMALL_STATE(1872)] = 9479, - [SMALL_STATE(1873)] = 9544, - [SMALL_STATE(1874)] = 9609, - [SMALL_STATE(1875)] = 9674, - [SMALL_STATE(1876)] = 9739, - [SMALL_STATE(1877)] = 9804, - [SMALL_STATE(1878)] = 9869, - [SMALL_STATE(1879)] = 9934, - [SMALL_STATE(1880)] = 9999, - [SMALL_STATE(1881)] = 10082, - [SMALL_STATE(1882)] = 10147, - [SMALL_STATE(1883)] = 10212, - [SMALL_STATE(1884)] = 10277, - [SMALL_STATE(1885)] = 10342, - [SMALL_STATE(1886)] = 10425, - [SMALL_STATE(1887)] = 10490, - [SMALL_STATE(1888)] = 10555, - [SMALL_STATE(1889)] = 10620, - [SMALL_STATE(1890)] = 10685, - [SMALL_STATE(1891)] = 10750, - [SMALL_STATE(1892)] = 10833, - [SMALL_STATE(1893)] = 10898, - [SMALL_STATE(1894)] = 10963, - [SMALL_STATE(1895)] = 11028, - [SMALL_STATE(1896)] = 11093, - [SMALL_STATE(1897)] = 11158, - [SMALL_STATE(1898)] = 11231, - [SMALL_STATE(1899)] = 11296, - [SMALL_STATE(1900)] = 11361, - [SMALL_STATE(1901)] = 11426, - [SMALL_STATE(1902)] = 11491, - [SMALL_STATE(1903)] = 11556, - [SMALL_STATE(1904)] = 11621, - [SMALL_STATE(1905)] = 11686, - [SMALL_STATE(1906)] = 11751, - [SMALL_STATE(1907)] = 11816, - [SMALL_STATE(1908)] = 11881, - [SMALL_STATE(1909)] = 11946, - [SMALL_STATE(1910)] = 12011, - [SMALL_STATE(1911)] = 12076, - [SMALL_STATE(1912)] = 12141, - [SMALL_STATE(1913)] = 12206, - [SMALL_STATE(1914)] = 12271, - [SMALL_STATE(1915)] = 12336, - [SMALL_STATE(1916)] = 12401, - [SMALL_STATE(1917)] = 12466, - [SMALL_STATE(1918)] = 12531, - [SMALL_STATE(1919)] = 12596, - [SMALL_STATE(1920)] = 12661, - [SMALL_STATE(1921)] = 12726, - [SMALL_STATE(1922)] = 12791, - [SMALL_STATE(1923)] = 12856, - [SMALL_STATE(1924)] = 12921, - [SMALL_STATE(1925)] = 12986, - [SMALL_STATE(1926)] = 13051, - [SMALL_STATE(1927)] = 13116, - [SMALL_STATE(1928)] = 13199, - [SMALL_STATE(1929)] = 13264, - [SMALL_STATE(1930)] = 13329, - [SMALL_STATE(1931)] = 13412, - [SMALL_STATE(1932)] = 13477, - [SMALL_STATE(1933)] = 13542, - [SMALL_STATE(1934)] = 13607, - [SMALL_STATE(1935)] = 13672, - [SMALL_STATE(1936)] = 13737, - [SMALL_STATE(1937)] = 13802, - [SMALL_STATE(1938)] = 13867, - [SMALL_STATE(1939)] = 13950, - [SMALL_STATE(1940)] = 14015, - [SMALL_STATE(1941)] = 14080, - [SMALL_STATE(1942)] = 14145, - [SMALL_STATE(1943)] = 14210, - [SMALL_STATE(1944)] = 14281, - [SMALL_STATE(1945)] = 14346, - [SMALL_STATE(1946)] = 14411, - [SMALL_STATE(1947)] = 14476, - [SMALL_STATE(1948)] = 14541, - [SMALL_STATE(1949)] = 14606, - [SMALL_STATE(1950)] = 14679, - [SMALL_STATE(1951)] = 14761, - [SMALL_STATE(1952)] = 14857, - [SMALL_STATE(1953)] = 14973, - [SMALL_STATE(1954)] = 15089, - [SMALL_STATE(1955)] = 15169, - [SMALL_STATE(1956)] = 15285, - [SMALL_STATE(1957)] = 15367, - [SMALL_STATE(1958)] = 15431, - [SMALL_STATE(1959)] = 15511, - [SMALL_STATE(1960)] = 15589, - [SMALL_STATE(1961)] = 15657, - [SMALL_STATE(1962)] = 15773, - [SMALL_STATE(1963)] = 15889, - [SMALL_STATE(1964)] = 15957, - [SMALL_STATE(1965)] = 16073, - [SMALL_STATE(1966)] = 16189, - [SMALL_STATE(1967)] = 16305, - [SMALL_STATE(1968)] = 16385, - [SMALL_STATE(1969)] = 16465, - [SMALL_STATE(1970)] = 16541, - [SMALL_STATE(1971)] = 16611, - [SMALL_STATE(1972)] = 16689, - [SMALL_STATE(1973)] = 16757, - [SMALL_STATE(1974)] = 16865, - [SMALL_STATE(1975)] = 16973, - [SMALL_STATE(1976)] = 17047, - [SMALL_STATE(1977)] = 17163, - [SMALL_STATE(1978)] = 17241, - [SMALL_STATE(1979)] = 17311, - [SMALL_STATE(1980)] = 17427, - [SMALL_STATE(1981)] = 17535, - [SMALL_STATE(1982)] = 17615, - [SMALL_STATE(1983)] = 17695, - [SMALL_STATE(1984)] = 17769, - [SMALL_STATE(1985)] = 17885, - [SMALL_STATE(1986)] = 17967, - [SMALL_STATE(1987)] = 18085, - [SMALL_STATE(1988)] = 18171, - [SMALL_STATE(1989)] = 18245, - [SMALL_STATE(1990)] = 18361, - [SMALL_STATE(1991)] = 18449, - [SMALL_STATE(1992)] = 18517, - [SMALL_STATE(1993)] = 18633, - [SMALL_STATE(1994)] = 18713, - [SMALL_STATE(1995)] = 18793, - [SMALL_STATE(1996)] = 18909, - [SMALL_STATE(1997)] = 19025, - [SMALL_STATE(1998)] = 19109, - [SMALL_STATE(1999)] = 19189, - [SMALL_STATE(2000)] = 19281, - [SMALL_STATE(2001)] = 19359, - [SMALL_STATE(2002)] = 19437, - [SMALL_STATE(2003)] = 19553, - [SMALL_STATE(2004)] = 19669, - [SMALL_STATE(2005)] = 19785, - [SMALL_STATE(2006)] = 19901, - [SMALL_STATE(2007)] = 19983, - [SMALL_STATE(2008)] = 20099, - [SMALL_STATE(2009)] = 20185, - [SMALL_STATE(2010)] = 20301, - [SMALL_STATE(2011)] = 20393, - [SMALL_STATE(2012)] = 20509, - [SMALL_STATE(2013)] = 20611, - [SMALL_STATE(2014)] = 20709, - [SMALL_STATE(2015)] = 20813, - [SMALL_STATE(2016)] = 20891, - [SMALL_STATE(2017)] = 20987, - [SMALL_STATE(2018)] = 21103, - [SMALL_STATE(2019)] = 21215, - [SMALL_STATE(2020)] = 21331, - [SMALL_STATE(2021)] = 21447, - [SMALL_STATE(2022)] = 21547, - [SMALL_STATE(2023)] = 21655, - [SMALL_STATE(2024)] = 21731, - [SMALL_STATE(2025)] = 21843, - [SMALL_STATE(2026)] = 21961, - [SMALL_STATE(2027)] = 22063, - [SMALL_STATE(2028)] = 22139, - [SMALL_STATE(2029)] = 22255, - [SMALL_STATE(2030)] = 22353, - [SMALL_STATE(2031)] = 22461, - [SMALL_STATE(2032)] = 22541, - [SMALL_STATE(2033)] = 22625, - [SMALL_STATE(2034)] = 22705, - [SMALL_STATE(2035)] = 22781, - [SMALL_STATE(2036)] = 22861, - [SMALL_STATE(2037)] = 22939, - [SMALL_STATE(2038)] = 23019, - [SMALL_STATE(2039)] = 23099, - [SMALL_STATE(2040)] = 23207, - [SMALL_STATE(2041)] = 23323, - [SMALL_STATE(2042)] = 23411, - [SMALL_STATE(2043)] = 23483, - [SMALL_STATE(2044)] = 23563, - [SMALL_STATE(2045)] = 23667, - [SMALL_STATE(2046)] = 23783, - [SMALL_STATE(2047)] = 23883, - [SMALL_STATE(2048)] = 23963, - [SMALL_STATE(2049)] = 24079, - [SMALL_STATE(2050)] = 24162, - [SMALL_STATE(2051)] = 24253, - [SMALL_STATE(2052)] = 24330, - [SMALL_STATE(2053)] = 24405, - [SMALL_STATE(2054)] = 24482, - [SMALL_STATE(2055)] = 24559, - [SMALL_STATE(2056)] = 24666, - [SMALL_STATE(2057)] = 24777, - [SMALL_STATE(2058)] = 24844, - [SMALL_STATE(2059)] = 24919, - [SMALL_STATE(2060)] = 24994, - [SMALL_STATE(2061)] = 25109, - [SMALL_STATE(2062)] = 25190, - [SMALL_STATE(2063)] = 25269, - [SMALL_STATE(2064)] = 25338, - [SMALL_STATE(2065)] = 25453, - [SMALL_STATE(2066)] = 25570, - [SMALL_STATE(2067)] = 25647, - [SMALL_STATE(2068)] = 25760, - [SMALL_STATE(2069)] = 25837, - [SMALL_STATE(2070)] = 25924, - [SMALL_STATE(2071)] = 26001, - [SMALL_STATE(2072)] = 26096, - [SMALL_STATE(2073)] = 26173, - [SMALL_STATE(2074)] = 26276, - [SMALL_STATE(2075)] = 26353, - [SMALL_STATE(2076)] = 26420, - [SMALL_STATE(2077)] = 26535, - [SMALL_STATE(2078)] = 26608, - [SMALL_STATE(2079)] = 26675, - [SMALL_STATE(2080)] = 26742, - [SMALL_STATE(2081)] = 26839, - [SMALL_STATE(2082)] = 26916, - [SMALL_STATE(2083)] = 26985, - [SMALL_STATE(2084)] = 27064, - [SMALL_STATE(2085)] = 27179, - [SMALL_STATE(2086)] = 27256, - [SMALL_STATE(2087)] = 27333, - [SMALL_STATE(2088)] = 27400, - [SMALL_STATE(2089)] = 27515, - [SMALL_STATE(2090)] = 27590, - [SMALL_STATE(2091)] = 27665, - [SMALL_STATE(2092)] = 27742, - [SMALL_STATE(2093)] = 27819, - [SMALL_STATE(2094)] = 27896, - [SMALL_STATE(2095)] = 27973, - [SMALL_STATE(2096)] = 28040, - [SMALL_STATE(2097)] = 28121, - [SMALL_STATE(2098)] = 28236, - [SMALL_STATE(2099)] = 28313, - [SMALL_STATE(2100)] = 28390, - [SMALL_STATE(2101)] = 28503, - [SMALL_STATE(2102)] = 28578, - [SMALL_STATE(2103)] = 28645, - [SMALL_STATE(2104)] = 28760, - [SMALL_STATE(2105)] = 28875, - [SMALL_STATE(2106)] = 28990, - [SMALL_STATE(2107)] = 29065, - [SMALL_STATE(2108)] = 29130, - [SMALL_STATE(2109)] = 29199, - [SMALL_STATE(2110)] = 29314, - [SMALL_STATE(2111)] = 29391, - [SMALL_STATE(2112)] = 29468, - [SMALL_STATE(2113)] = 29583, - [SMALL_STATE(2114)] = 29648, - [SMALL_STATE(2115)] = 29749, - [SMALL_STATE(2116)] = 29864, - [SMALL_STATE(2117)] = 29939, - [SMALL_STATE(2118)] = 30038, - [SMALL_STATE(2119)] = 30145, - [SMALL_STATE(2120)] = 30258, - [SMALL_STATE(2121)] = 30365, - [SMALL_STATE(2122)] = 30480, - [SMALL_STATE(2123)] = 30565, - [SMALL_STATE(2124)] = 30637, - [SMALL_STATE(2125)] = 30711, - [SMALL_STATE(2126)] = 30773, - [SMALL_STATE(2127)] = 30847, - [SMALL_STATE(2128)] = 30919, - [SMALL_STATE(2129)] = 30991, - [SMALL_STATE(2130)] = 31063, - [SMALL_STATE(2131)] = 31137, - [SMALL_STATE(2132)] = 31209, - [SMALL_STATE(2133)] = 31325, - [SMALL_STATE(2134)] = 31397, - [SMALL_STATE(2135)] = 31517, - [SMALL_STATE(2136)] = 31591, - [SMALL_STATE(2137)] = 31661, - [SMALL_STATE(2138)] = 31733, - [SMALL_STATE(2139)] = 31805, - [SMALL_STATE(2140)] = 31869, - [SMALL_STATE(2141)] = 31941, - [SMALL_STATE(2142)] = 32061, - [SMALL_STATE(2143)] = 32181, - [SMALL_STATE(2144)] = 32247, - [SMALL_STATE(2145)] = 32313, - [SMALL_STATE(2146)] = 32377, - [SMALL_STATE(2147)] = 32453, - [SMALL_STATE(2148)] = 32569, - [SMALL_STATE(2149)] = 32679, - [SMALL_STATE(2150)] = 32747, - [SMALL_STATE(2151)] = 32819, - [SMALL_STATE(2152)] = 32885, - [SMALL_STATE(2153)] = 32957, - [SMALL_STATE(2154)] = 33077, - [SMALL_STATE(2155)] = 33143, - [SMALL_STATE(2156)] = 33263, - [SMALL_STATE(2157)] = 33329, - [SMALL_STATE(2158)] = 33401, - [SMALL_STATE(2159)] = 33517, - [SMALL_STATE(2160)] = 33579, - [SMALL_STATE(2161)] = 33653, - [SMALL_STATE(2162)] = 33727, - [SMALL_STATE(2163)] = 33799, - [SMALL_STATE(2164)] = 33871, - [SMALL_STATE(2165)] = 33937, - [SMALL_STATE(2166)] = 34009, - [SMALL_STATE(2167)] = 34073, - [SMALL_STATE(2168)] = 34145, - [SMALL_STATE(2169)] = 34221, - [SMALL_STATE(2170)] = 34341, - [SMALL_STATE(2171)] = 34407, - [SMALL_STATE(2172)] = 34479, - [SMALL_STATE(2173)] = 34551, - [SMALL_STATE(2174)] = 34625, - [SMALL_STATE(2175)] = 34697, - [SMALL_STATE(2176)] = 34769, - [SMALL_STATE(2177)] = 34841, - [SMALL_STATE(2178)] = 34915, - [SMALL_STATE(2179)] = 34979, - [SMALL_STATE(2180)] = 35051, - [SMALL_STATE(2181)] = 35123, - [SMALL_STATE(2182)] = 35195, - [SMALL_STATE(2183)] = 35256, - [SMALL_STATE(2184)] = 35373, - [SMALL_STATE(2185)] = 35446, - [SMALL_STATE(2186)] = 35515, - [SMALL_STATE(2187)] = 35632, - [SMALL_STATE(2188)] = 35699, - [SMALL_STATE(2189)] = 35760, - [SMALL_STATE(2190)] = 35821, - [SMALL_STATE(2191)] = 35938, - [SMALL_STATE(2192)] = 36007, - [SMALL_STATE(2193)] = 36076, - [SMALL_STATE(2194)] = 36147, - [SMALL_STATE(2195)] = 36264, - [SMALL_STATE(2196)] = 36381, - [SMALL_STATE(2197)] = 36498, - [SMALL_STATE(2198)] = 36559, - [SMALL_STATE(2199)] = 36624, - [SMALL_STATE(2200)] = 36743, - [SMALL_STATE(2201)] = 36860, - [SMALL_STATE(2202)] = 36977, - [SMALL_STATE(2203)] = 37040, - [SMALL_STATE(2204)] = 37105, - [SMALL_STATE(2205)] = 37174, - [SMALL_STATE(2206)] = 37291, - [SMALL_STATE(2207)] = 37408, - [SMALL_STATE(2208)] = 37477, - [SMALL_STATE(2209)] = 37538, - [SMALL_STATE(2210)] = 37607, - [SMALL_STATE(2211)] = 37668, - [SMALL_STATE(2212)] = 37729, - [SMALL_STATE(2213)] = 37846, - [SMALL_STATE(2214)] = 37907, - [SMALL_STATE(2215)] = 38024, - [SMALL_STATE(2216)] = 38141, - [SMALL_STATE(2217)] = 38212, - [SMALL_STATE(2218)] = 38329, - [SMALL_STATE(2219)] = 38442, - [SMALL_STATE(2220)] = 38511, - [SMALL_STATE(2221)] = 38628, - [SMALL_STATE(2222)] = 38745, - [SMALL_STATE(2223)] = 38816, - [SMALL_STATE(2224)] = 38877, - [SMALL_STATE(2225)] = 38996, - [SMALL_STATE(2226)] = 39057, - [SMALL_STATE(2227)] = 39172, - [SMALL_STATE(2228)] = 39289, - [SMALL_STATE(2229)] = 39350, - [SMALL_STATE(2230)] = 39415, - [SMALL_STATE(2231)] = 39532, - [SMALL_STATE(2232)] = 39603, - [SMALL_STATE(2233)] = 39720, - [SMALL_STATE(2234)] = 39837, - [SMALL_STATE(2235)] = 39954, - [SMALL_STATE(2236)] = 40071, - [SMALL_STATE(2237)] = 40188, - [SMALL_STATE(2238)] = 40305, - [SMALL_STATE(2239)] = 40424, - [SMALL_STATE(2240)] = 40493, - [SMALL_STATE(2241)] = 40568, - [SMALL_STATE(2242)] = 40685, - [SMALL_STATE(2243)] = 40802, - [SMALL_STATE(2244)] = 40921, - [SMALL_STATE(2245)] = 41038, - [SMALL_STATE(2246)] = 41155, - [SMALL_STATE(2247)] = 41236, - [SMALL_STATE(2248)] = 41305, - [SMALL_STATE(2249)] = 41422, - [SMALL_STATE(2250)] = 41539, - [SMALL_STATE(2251)] = 41656, - [SMALL_STATE(2252)] = 41773, - [SMALL_STATE(2253)] = 41844, - [SMALL_STATE(2254)] = 41905, - [SMALL_STATE(2255)] = 42022, - [SMALL_STATE(2256)] = 42087, - [SMALL_STATE(2257)] = 42158, - [SMALL_STATE(2258)] = 42273, - [SMALL_STATE(2259)] = 42390, - [SMALL_STATE(2260)] = 42459, - [SMALL_STATE(2261)] = 42576, - [SMALL_STATE(2262)] = 42691, - [SMALL_STATE(2263)] = 42764, - [SMALL_STATE(2264)] = 42881, - [SMALL_STATE(2265)] = 42950, - [SMALL_STATE(2266)] = 43067, - [SMALL_STATE(2267)] = 43138, - [SMALL_STATE(2268)] = 43255, - [SMALL_STATE(2269)] = 43316, - [SMALL_STATE(2270)] = 43385, - [SMALL_STATE(2271)] = 43450, - [SMALL_STATE(2272)] = 43521, - [SMALL_STATE(2273)] = 43638, - [SMALL_STATE(2274)] = 43755, - [SMALL_STATE(2275)] = 43872, - [SMALL_STATE(2276)] = 43991, - [SMALL_STATE(2277)] = 44060, - [SMALL_STATE(2278)] = 44177, - [SMALL_STATE(2279)] = 44238, - [SMALL_STATE(2280)] = 44299, - [SMALL_STATE(2281)] = 44368, - [SMALL_STATE(2282)] = 44429, - [SMALL_STATE(2283)] = 44490, - [SMALL_STATE(2284)] = 44607, - [SMALL_STATE(2285)] = 44668, - [SMALL_STATE(2286)] = 44739, - [SMALL_STATE(2287)] = 44856, - [SMALL_STATE(2288)] = 44973, - [SMALL_STATE(2289)] = 45090, - [SMALL_STATE(2290)] = 45151, - [SMALL_STATE(2291)] = 45268, - [SMALL_STATE(2292)] = 45385, - [SMALL_STATE(2293)] = 45454, - [SMALL_STATE(2294)] = 45523, - [SMALL_STATE(2295)] = 45592, - [SMALL_STATE(2296)] = 45709, - [SMALL_STATE(2297)] = 45774, - [SMALL_STATE(2298)] = 45835, - [SMALL_STATE(2299)] = 45896, - [SMALL_STATE(2300)] = 45957, - [SMALL_STATE(2301)] = 46018, - [SMALL_STATE(2302)] = 46079, - [SMALL_STATE(2303)] = 46148, - [SMALL_STATE(2304)] = 46209, - [SMALL_STATE(2305)] = 46270, - [SMALL_STATE(2306)] = 46389, - [SMALL_STATE(2307)] = 46450, - [SMALL_STATE(2308)] = 46567, - [SMALL_STATE(2309)] = 46628, - [SMALL_STATE(2310)] = 46697, - [SMALL_STATE(2311)] = 46814, - [SMALL_STATE(2312)] = 46881, - [SMALL_STATE(2313)] = 46996, - [SMALL_STATE(2314)] = 47113, - [SMALL_STATE(2315)] = 47178, - [SMALL_STATE(2316)] = 47295, - [SMALL_STATE(2317)] = 47356, - [SMALL_STATE(2318)] = 47473, - [SMALL_STATE(2319)] = 47592, - [SMALL_STATE(2320)] = 47653, - [SMALL_STATE(2321)] = 47722, - [SMALL_STATE(2322)] = 47791, - [SMALL_STATE(2323)] = 47852, - [SMALL_STATE(2324)] = 47913, - [SMALL_STATE(2325)] = 47982, - [SMALL_STATE(2326)] = 48043, - [SMALL_STATE(2327)] = 48160, - [SMALL_STATE(2328)] = 48221, - [SMALL_STATE(2329)] = 48290, - [SMALL_STATE(2330)] = 48357, - [SMALL_STATE(2331)] = 48418, - [SMALL_STATE(2332)] = 48535, - [SMALL_STATE(2333)] = 48604, - [SMALL_STATE(2334)] = 48665, - [SMALL_STATE(2335)] = 48782, - [SMALL_STATE(2336)] = 48899, - [SMALL_STATE(2337)] = 49016, - [SMALL_STATE(2338)] = 49133, - [SMALL_STATE(2339)] = 49202, - [SMALL_STATE(2340)] = 49319, - [SMALL_STATE(2341)] = 49380, - [SMALL_STATE(2342)] = 49441, - [SMALL_STATE(2343)] = 49558, - [SMALL_STATE(2344)] = 49619, - [SMALL_STATE(2345)] = 49688, - [SMALL_STATE(2346)] = 49805, - [SMALL_STATE(2347)] = 49922, - [SMALL_STATE(2348)] = 49989, - [SMALL_STATE(2349)] = 50108, - [SMALL_STATE(2350)] = 50169, - [SMALL_STATE(2351)] = 50234, - [SMALL_STATE(2352)] = 50321, - [SMALL_STATE(2353)] = 50390, - [SMALL_STATE(2354)] = 50507, - [SMALL_STATE(2355)] = 50590, - [SMALL_STATE(2356)] = 50659, - [SMALL_STATE(2357)] = 50774, - [SMALL_STATE(2358)] = 50891, - [SMALL_STATE(2359)] = 50956, - [SMALL_STATE(2360)] = 51025, - [SMALL_STATE(2361)] = 51096, - [SMALL_STATE(2362)] = 51213, - [SMALL_STATE(2363)] = 51328, - [SMALL_STATE(2364)] = 51445, - [SMALL_STATE(2365)] = 51506, - [SMALL_STATE(2366)] = 51575, - [SMALL_STATE(2367)] = 51692, - [SMALL_STATE(2368)] = 51803, - [SMALL_STATE(2369)] = 51918, - [SMALL_STATE(2370)] = 52025, - [SMALL_STATE(2371)] = 52124, - [SMALL_STATE(2372)] = 52241, - [SMALL_STATE(2373)] = 52336, - [SMALL_STATE(2374)] = 52397, - [SMALL_STATE(2375)] = 52514, - [SMALL_STATE(2376)] = 52629, - [SMALL_STATE(2377)] = 52732, - [SMALL_STATE(2378)] = 52829, - [SMALL_STATE(2379)] = 52930, - [SMALL_STATE(2380)] = 52999, - [SMALL_STATE(2381)] = 53068, - [SMALL_STATE(2382)] = 53185, - [SMALL_STATE(2383)] = 53256, - [SMALL_STATE(2384)] = 53347, - [SMALL_STATE(2385)] = 53412, - [SMALL_STATE(2386)] = 53529, - [SMALL_STATE(2387)] = 53614, - [SMALL_STATE(2388)] = 53731, - [SMALL_STATE(2389)] = 53812, - [SMALL_STATE(2390)] = 53873, - [SMALL_STATE(2391)] = 53948, - [SMALL_STATE(2392)] = 54013, - [SMALL_STATE(2393)] = 54084, - [SMALL_STATE(2394)] = 54191, - [SMALL_STATE(2395)] = 54308, - [SMALL_STATE(2396)] = 54369, - [SMALL_STATE(2397)] = 54486, - [SMALL_STATE(2398)] = 54603, - [SMALL_STATE(2399)] = 54672, - [SMALL_STATE(2400)] = 54733, - [SMALL_STATE(2401)] = 54804, - [SMALL_STATE(2402)] = 54865, - [SMALL_STATE(2403)] = 54926, - [SMALL_STATE(2404)] = 54987, - [SMALL_STATE(2405)] = 55048, - [SMALL_STATE(2406)] = 55163, - [SMALL_STATE(2407)] = 55280, - [SMALL_STATE(2408)] = 55349, - [SMALL_STATE(2409)] = 55420, - [SMALL_STATE(2410)] = 55489, - [SMALL_STATE(2411)] = 55606, - [SMALL_STATE(2412)] = 55721, - [SMALL_STATE(2413)] = 55838, - [SMALL_STATE(2414)] = 55909, - [SMALL_STATE(2415)] = 55984, - [SMALL_STATE(2416)] = 56099, - [SMALL_STATE(2417)] = 56206, - [SMALL_STATE(2418)] = 56267, - [SMALL_STATE(2419)] = 56340, - [SMALL_STATE(2420)] = 56457, - [SMALL_STATE(2421)] = 56526, - [SMALL_STATE(2422)] = 56643, - [SMALL_STATE(2423)] = 56760, - [SMALL_STATE(2424)] = 56821, - [SMALL_STATE(2425)] = 56886, - [SMALL_STATE(2426)] = 57003, - [SMALL_STATE(2427)] = 57072, - [SMALL_STATE(2428)] = 57189, - [SMALL_STATE(2429)] = 57254, - [SMALL_STATE(2430)] = 57371, - [SMALL_STATE(2431)] = 57488, - [SMALL_STATE(2432)] = 57605, - [SMALL_STATE(2433)] = 57674, - [SMALL_STATE(2434)] = 57735, - [SMALL_STATE(2435)] = 57852, - [SMALL_STATE(2436)] = 57921, - [SMALL_STATE(2437)] = 57990, - [SMALL_STATE(2438)] = 58055, - [SMALL_STATE(2439)] = 58126, - [SMALL_STATE(2440)] = 58243, - [SMALL_STATE(2441)] = 58360, - [SMALL_STATE(2442)] = 58475, - [SMALL_STATE(2443)] = 58592, - [SMALL_STATE(2444)] = 58709, - [SMALL_STATE(2445)] = 58780, - [SMALL_STATE(2446)] = 58897, - [SMALL_STATE(2447)] = 58966, - [SMALL_STATE(2448)] = 59081, - [SMALL_STATE(2449)] = 59198, - [SMALL_STATE(2450)] = 59315, - [SMALL_STATE(2451)] = 59376, - [SMALL_STATE(2452)] = 59445, - [SMALL_STATE(2453)] = 59562, - [SMALL_STATE(2454)] = 59679, - [SMALL_STATE(2455)] = 59748, - [SMALL_STATE(2456)] = 59814, - [SMALL_STATE(2457)] = 59926, - [SMALL_STATE(2458)] = 60038, - [SMALL_STATE(2459)] = 60108, - [SMALL_STATE(2460)] = 60172, - [SMALL_STATE(2461)] = 60240, - [SMALL_STATE(2462)] = 60300, - [SMALL_STATE(2463)] = 60366, - [SMALL_STATE(2464)] = 60426, - [SMALL_STATE(2465)] = 60494, - [SMALL_STATE(2466)] = 60560, - [SMALL_STATE(2467)] = 60628, - [SMALL_STATE(2468)] = 60694, - [SMALL_STATE(2469)] = 60760, - [SMALL_STATE(2470)] = 60826, - [SMALL_STATE(2471)] = 60892, - [SMALL_STATE(2472)] = 60958, - [SMALL_STATE(2473)] = 61018, - [SMALL_STATE(2474)] = 61130, - [SMALL_STATE(2475)] = 61242, - [SMALL_STATE(2476)] = 61304, - [SMALL_STATE(2477)] = 61372, - [SMALL_STATE(2478)] = 61484, - [SMALL_STATE(2479)] = 61552, - [SMALL_STATE(2480)] = 61618, - [SMALL_STATE(2481)] = 61684, - [SMALL_STATE(2482)] = 61750, - [SMALL_STATE(2483)] = 61862, - [SMALL_STATE(2484)] = 61930, - [SMALL_STATE(2485)] = 62042, - [SMALL_STATE(2486)] = 62154, - [SMALL_STATE(2487)] = 62220, - [SMALL_STATE(2488)] = 62280, - [SMALL_STATE(2489)] = 62340, - [SMALL_STATE(2490)] = 62452, - [SMALL_STATE(2491)] = 62512, - [SMALL_STATE(2492)] = 62624, - [SMALL_STATE(2493)] = 62736, - [SMALL_STATE(2494)] = 62802, - [SMALL_STATE(2495)] = 62868, - [SMALL_STATE(2496)] = 62938, - [SMALL_STATE(2497)] = 63008, - [SMALL_STATE(2498)] = 63120, - [SMALL_STATE(2499)] = 63232, - [SMALL_STATE(2500)] = 63298, - [SMALL_STATE(2501)] = 63368, - [SMALL_STATE(2502)] = 63436, - [SMALL_STATE(2503)] = 63500, - [SMALL_STATE(2504)] = 63566, - [SMALL_STATE(2505)] = 63626, - [SMALL_STATE(2506)] = 63692, - [SMALL_STATE(2507)] = 63760, - [SMALL_STATE(2508)] = 63826, - [SMALL_STATE(2509)] = 63892, - [SMALL_STATE(2510)] = 64004, - [SMALL_STATE(2511)] = 64116, - [SMALL_STATE(2512)] = 64228, - [SMALL_STATE(2513)] = 64340, - [SMALL_STATE(2514)] = 64408, - [SMALL_STATE(2515)] = 64474, - [SMALL_STATE(2516)] = 64586, - [SMALL_STATE(2517)] = 64652, - [SMALL_STATE(2518)] = 64718, - [SMALL_STATE(2519)] = 64786, - [SMALL_STATE(2520)] = 64854, - [SMALL_STATE(2521)] = 64920, - [SMALL_STATE(2522)] = 64984, - [SMALL_STATE(2523)] = 65050, - [SMALL_STATE(2524)] = 65112, - [SMALL_STATE(2525)] = 65178, - [SMALL_STATE(2526)] = 65246, - [SMALL_STATE(2527)] = 65312, - [SMALL_STATE(2528)] = 65380, - [SMALL_STATE(2529)] = 65440, - [SMALL_STATE(2530)] = 65506, - [SMALL_STATE(2531)] = 65618, - [SMALL_STATE(2532)] = 65684, - [SMALL_STATE(2533)] = 65752, - [SMALL_STATE(2534)] = 65816, - [SMALL_STATE(2535)] = 65878, - [SMALL_STATE(2536)] = 65938, - [SMALL_STATE(2537)] = 66002, - [SMALL_STATE(2538)] = 66114, - [SMALL_STATE(2539)] = 66180, - [SMALL_STATE(2540)] = 66246, - [SMALL_STATE(2541)] = 66312, - [SMALL_STATE(2542)] = 66424, - [SMALL_STATE(2543)] = 66536, - [SMALL_STATE(2544)] = 66604, - [SMALL_STATE(2545)] = 66668, - [SMALL_STATE(2546)] = 66728, - [SMALL_STATE(2547)] = 66790, - [SMALL_STATE(2548)] = 66850, - [SMALL_STATE(2549)] = 66918, - [SMALL_STATE(2550)] = 66984, - [SMALL_STATE(2551)] = 67052, - [SMALL_STATE(2552)] = 67116, - [SMALL_STATE(2553)] = 67227, - [SMALL_STATE(2554)] = 67286, - [SMALL_STATE(2555)] = 67345, - [SMALL_STATE(2556)] = 67404, - [SMALL_STATE(2557)] = 67463, - [SMALL_STATE(2558)] = 67574, - [SMALL_STATE(2559)] = 67637, - [SMALL_STATE(2560)] = 67696, - [SMALL_STATE(2561)] = 67755, - [SMALL_STATE(2562)] = 67814, - [SMALL_STATE(2563)] = 67873, - [SMALL_STATE(2564)] = 67984, - [SMALL_STATE(2565)] = 68043, - [SMALL_STATE(2566)] = 68154, - [SMALL_STATE(2567)] = 68213, - [SMALL_STATE(2568)] = 68272, - [SMALL_STATE(2569)] = 68331, - [SMALL_STATE(2570)] = 68390, - [SMALL_STATE(2571)] = 68449, - [SMALL_STATE(2572)] = 68508, - [SMALL_STATE(2573)] = 68567, - [SMALL_STATE(2574)] = 68626, - [SMALL_STATE(2575)] = 68737, - [SMALL_STATE(2576)] = 68796, - [SMALL_STATE(2577)] = 68855, - [SMALL_STATE(2578)] = 68918, - [SMALL_STATE(2579)] = 69017, - [SMALL_STATE(2580)] = 69076, - [SMALL_STATE(2581)] = 69187, - [SMALL_STATE(2582)] = 69250, - [SMALL_STATE(2583)] = 69313, - [SMALL_STATE(2584)] = 69424, - [SMALL_STATE(2585)] = 69535, - [SMALL_STATE(2586)] = 69594, - [SMALL_STATE(2587)] = 69705, - [SMALL_STATE(2588)] = 69764, - [SMALL_STATE(2589)] = 69823, - [SMALL_STATE(2590)] = 69882, - [SMALL_STATE(2591)] = 69941, - [SMALL_STATE(2592)] = 70000, - [SMALL_STATE(2593)] = 70059, - [SMALL_STATE(2594)] = 70118, - [SMALL_STATE(2595)] = 70181, - [SMALL_STATE(2596)] = 70292, - [SMALL_STATE(2597)] = 70351, - [SMALL_STATE(2598)] = 70410, - [SMALL_STATE(2599)] = 70469, - [SMALL_STATE(2600)] = 70570, - [SMALL_STATE(2601)] = 70629, - [SMALL_STATE(2602)] = 70740, - [SMALL_STATE(2603)] = 70799, - [SMALL_STATE(2604)] = 70910, - [SMALL_STATE(2605)] = 71021, - [SMALL_STATE(2606)] = 71080, - [SMALL_STATE(2607)] = 71139, - [SMALL_STATE(2608)] = 71198, - [SMALL_STATE(2609)] = 71257, - [SMALL_STATE(2610)] = 71320, - [SMALL_STATE(2611)] = 71379, - [SMALL_STATE(2612)] = 71442, - [SMALL_STATE(2613)] = 71501, - [SMALL_STATE(2614)] = 71560, - [SMALL_STATE(2615)] = 71619, - [SMALL_STATE(2616)] = 71678, - [SMALL_STATE(2617)] = 71737, - [SMALL_STATE(2618)] = 71796, - [SMALL_STATE(2619)] = 71855, - [SMALL_STATE(2620)] = 71914, - [SMALL_STATE(2621)] = 72025, - [SMALL_STATE(2622)] = 72084, - [SMALL_STATE(2623)] = 72143, - [SMALL_STATE(2624)] = 72206, - [SMALL_STATE(2625)] = 72265, - [SMALL_STATE(2626)] = 72376, - [SMALL_STATE(2627)] = 72435, - [SMALL_STATE(2628)] = 72494, - [SMALL_STATE(2629)] = 72605, - [SMALL_STATE(2630)] = 72668, - [SMALL_STATE(2631)] = 72727, - [SMALL_STATE(2632)] = 72790, - [SMALL_STATE(2633)] = 72849, - [SMALL_STATE(2634)] = 72908, - [SMALL_STATE(2635)] = 72967, - [SMALL_STATE(2636)] = 73026, - [SMALL_STATE(2637)] = 73085, - [SMALL_STATE(2638)] = 73144, - [SMALL_STATE(2639)] = 73203, - [SMALL_STATE(2640)] = 73266, - [SMALL_STATE(2641)] = 73377, - [SMALL_STATE(2642)] = 73436, - [SMALL_STATE(2643)] = 73495, - [SMALL_STATE(2644)] = 73554, - [SMALL_STATE(2645)] = 73617, - [SMALL_STATE(2646)] = 73676, - [SMALL_STATE(2647)] = 73787, - [SMALL_STATE(2648)] = 73898, - [SMALL_STATE(2649)] = 74009, - [SMALL_STATE(2650)] = 74068, - [SMALL_STATE(2651)] = 74127, - [SMALL_STATE(2652)] = 74186, - [SMALL_STATE(2653)] = 74297, - [SMALL_STATE(2654)] = 74356, - [SMALL_STATE(2655)] = 74467, - [SMALL_STATE(2656)] = 74526, - [SMALL_STATE(2657)] = 74589, - [SMALL_STATE(2658)] = 74700, - [SMALL_STATE(2659)] = 74759, - [SMALL_STATE(2660)] = 74870, - [SMALL_STATE(2661)] = 74933, - [SMALL_STATE(2662)] = 74992, - [SMALL_STATE(2663)] = 75051, - [SMALL_STATE(2664)] = 75110, - [SMALL_STATE(2665)] = 75221, - [SMALL_STATE(2666)] = 75280, - [SMALL_STATE(2667)] = 75391, - [SMALL_STATE(2668)] = 75454, - [SMALL_STATE(2669)] = 75565, - [SMALL_STATE(2670)] = 75676, - [SMALL_STATE(2671)] = 75787, - [SMALL_STATE(2672)] = 75898, - [SMALL_STATE(2673)] = 75957, - [SMALL_STATE(2674)] = 76016, - [SMALL_STATE(2675)] = 76075, - [SMALL_STATE(2676)] = 76134, - [SMALL_STATE(2677)] = 76245, - [SMALL_STATE(2678)] = 76304, - [SMALL_STATE(2679)] = 76415, - [SMALL_STATE(2680)] = 76478, - [SMALL_STATE(2681)] = 76541, - [SMALL_STATE(2682)] = 76600, - [SMALL_STATE(2683)] = 76659, - [SMALL_STATE(2684)] = 76718, - [SMALL_STATE(2685)] = 76829, - [SMALL_STATE(2686)] = 76940, - [SMALL_STATE(2687)] = 77051, - [SMALL_STATE(2688)] = 77162, - [SMALL_STATE(2689)] = 77273, - [SMALL_STATE(2690)] = 77384, - [SMALL_STATE(2691)] = 77495, - [SMALL_STATE(2692)] = 77606, - [SMALL_STATE(2693)] = 77717, - [SMALL_STATE(2694)] = 77828, - [SMALL_STATE(2695)] = 77891, - [SMALL_STATE(2696)] = 77950, - [SMALL_STATE(2697)] = 78009, - [SMALL_STATE(2698)] = 78068, - [SMALL_STATE(2699)] = 78127, - [SMALL_STATE(2700)] = 78186, - [SMALL_STATE(2701)] = 78297, - [SMALL_STATE(2702)] = 78356, - [SMALL_STATE(2703)] = 78467, - [SMALL_STATE(2704)] = 78578, - [SMALL_STATE(2705)] = 78689, - [SMALL_STATE(2706)] = 78800, - [SMALL_STATE(2707)] = 78911, - [SMALL_STATE(2708)] = 79022, - [SMALL_STATE(2709)] = 79133, - [SMALL_STATE(2710)] = 79244, - [SMALL_STATE(2711)] = 79303, - [SMALL_STATE(2712)] = 79414, - [SMALL_STATE(2713)] = 79525, - [SMALL_STATE(2714)] = 79584, - [SMALL_STATE(2715)] = 79695, - [SMALL_STATE(2716)] = 79806, - [SMALL_STATE(2717)] = 79914, - [SMALL_STATE(2718)] = 80008, - [SMALL_STATE(2719)] = 80102, - [SMALL_STATE(2720)] = 80196, - [SMALL_STATE(2721)] = 80258, - [SMALL_STATE(2722)] = 80320, - [SMALL_STATE(2723)] = 80414, - [SMALL_STATE(2724)] = 80508, - [SMALL_STATE(2725)] = 80604, - [SMALL_STATE(2726)] = 80664, - [SMALL_STATE(2727)] = 80772, - [SMALL_STATE(2728)] = 80866, - [SMALL_STATE(2729)] = 80924, - [SMALL_STATE(2730)] = 81018, - [SMALL_STATE(2731)] = 81075, - [SMALL_STATE(2732)] = 81132, - [SMALL_STATE(2733)] = 81189, - [SMALL_STATE(2734)] = 81246, - [SMALL_STATE(2735)] = 81303, - [SMALL_STATE(2736)] = 81360, - [SMALL_STATE(2737)] = 81419, - [SMALL_STATE(2738)] = 81476, - [SMALL_STATE(2739)] = 81533, - [SMALL_STATE(2740)] = 81590, - [SMALL_STATE(2741)] = 81647, - [SMALL_STATE(2742)] = 81704, - [SMALL_STATE(2743)] = 81761, - [SMALL_STATE(2744)] = 81818, - [SMALL_STATE(2745)] = 81875, - [SMALL_STATE(2746)] = 81932, - [SMALL_STATE(2747)] = 81989, - [SMALL_STATE(2748)] = 82046, - [SMALL_STATE(2749)] = 82103, - [SMALL_STATE(2750)] = 82160, - [SMALL_STATE(2751)] = 82217, - [SMALL_STATE(2752)] = 82274, - [SMALL_STATE(2753)] = 82331, - [SMALL_STATE(2754)] = 82388, - [SMALL_STATE(2755)] = 82445, - [SMALL_STATE(2756)] = 82502, - [SMALL_STATE(2757)] = 82559, - [SMALL_STATE(2758)] = 82616, - [SMALL_STATE(2759)] = 82673, - [SMALL_STATE(2760)] = 82730, - [SMALL_STATE(2761)] = 82787, - [SMALL_STATE(2762)] = 82844, - [SMALL_STATE(2763)] = 82901, - [SMALL_STATE(2764)] = 82958, - [SMALL_STATE(2765)] = 83015, - [SMALL_STATE(2766)] = 83076, - [SMALL_STATE(2767)] = 83133, - [SMALL_STATE(2768)] = 83194, - [SMALL_STATE(2769)] = 83251, - [SMALL_STATE(2770)] = 83308, - [SMALL_STATE(2771)] = 83365, - [SMALL_STATE(2772)] = 83422, - [SMALL_STATE(2773)] = 83479, - [SMALL_STATE(2774)] = 83536, - [SMALL_STATE(2775)] = 83593, - [SMALL_STATE(2776)] = 83650, - [SMALL_STATE(2777)] = 83707, - [SMALL_STATE(2778)] = 83764, - [SMALL_STATE(2779)] = 83821, - [SMALL_STATE(2780)] = 83878, - [SMALL_STATE(2781)] = 83935, - [SMALL_STATE(2782)] = 83992, - [SMALL_STATE(2783)] = 84049, - [SMALL_STATE(2784)] = 84106, - [SMALL_STATE(2785)] = 84163, - [SMALL_STATE(2786)] = 84220, - [SMALL_STATE(2787)] = 84277, - [SMALL_STATE(2788)] = 84334, - [SMALL_STATE(2789)] = 84391, - [SMALL_STATE(2790)] = 84448, - [SMALL_STATE(2791)] = 84505, - [SMALL_STATE(2792)] = 84562, - [SMALL_STATE(2793)] = 84619, - [SMALL_STATE(2794)] = 84676, - [SMALL_STATE(2795)] = 84733, - [SMALL_STATE(2796)] = 84794, - [SMALL_STATE(2797)] = 84851, - [SMALL_STATE(2798)] = 84908, - [SMALL_STATE(2799)] = 84965, - [SMALL_STATE(2800)] = 85022, - [SMALL_STATE(2801)] = 85079, - [SMALL_STATE(2802)] = 85136, - [SMALL_STATE(2803)] = 85193, - [SMALL_STATE(2804)] = 85250, - [SMALL_STATE(2805)] = 85307, - [SMALL_STATE(2806)] = 85364, - [SMALL_STATE(2807)] = 85421, - [SMALL_STATE(2808)] = 85478, - [SMALL_STATE(2809)] = 85535, - [SMALL_STATE(2810)] = 85592, - [SMALL_STATE(2811)] = 85649, - [SMALL_STATE(2812)] = 85706, - [SMALL_STATE(2813)] = 85763, - [SMALL_STATE(2814)] = 85820, - [SMALL_STATE(2815)] = 85877, - [SMALL_STATE(2816)] = 85934, - [SMALL_STATE(2817)] = 85991, - [SMALL_STATE(2818)] = 86082, - [SMALL_STATE(2819)] = 86173, - [SMALL_STATE(2820)] = 86264, - [SMALL_STATE(2821)] = 86355, - [SMALL_STATE(2822)] = 86446, - [SMALL_STATE(2823)] = 86537, - [SMALL_STATE(2824)] = 86628, - [SMALL_STATE(2825)] = 86719, - [SMALL_STATE(2826)] = 86810, - [SMALL_STATE(2827)] = 86901, - [SMALL_STATE(2828)] = 86992, - [SMALL_STATE(2829)] = 87083, - [SMALL_STATE(2830)] = 87176, - [SMALL_STATE(2831)] = 87267, - [SMALL_STATE(2832)] = 87324, - [SMALL_STATE(2833)] = 87415, - [SMALL_STATE(2834)] = 87506, - [SMALL_STATE(2835)] = 87597, - [SMALL_STATE(2836)] = 87688, - [SMALL_STATE(2837)] = 87779, - [SMALL_STATE(2838)] = 87870, - [SMALL_STATE(2839)] = 87961, - [SMALL_STATE(2840)] = 88052, - [SMALL_STATE(2841)] = 88143, - [SMALL_STATE(2842)] = 88234, - [SMALL_STATE(2843)] = 88325, - [SMALL_STATE(2844)] = 88416, - [SMALL_STATE(2845)] = 88507, - [SMALL_STATE(2846)] = 88598, - [SMALL_STATE(2847)] = 88653, - [SMALL_STATE(2848)] = 88744, - [SMALL_STATE(2849)] = 88835, - [SMALL_STATE(2850)] = 88926, - [SMALL_STATE(2851)] = 89017, - [SMALL_STATE(2852)] = 89108, - [SMALL_STATE(2853)] = 89199, - [SMALL_STATE(2854)] = 89290, - [SMALL_STATE(2855)] = 89381, - [SMALL_STATE(2856)] = 89472, - [SMALL_STATE(2857)] = 89563, - [SMALL_STATE(2858)] = 89654, - [SMALL_STATE(2859)] = 89745, - [SMALL_STATE(2860)] = 89838, - [SMALL_STATE(2861)] = 89895, - [SMALL_STATE(2862)] = 89986, - [SMALL_STATE(2863)] = 90077, - [SMALL_STATE(2864)] = 90168, - [SMALL_STATE(2865)] = 90259, - [SMALL_STATE(2866)] = 90350, - [SMALL_STATE(2867)] = 90441, - [SMALL_STATE(2868)] = 90532, - [SMALL_STATE(2869)] = 90623, - [SMALL_STATE(2870)] = 90714, - [SMALL_STATE(2871)] = 90805, - [SMALL_STATE(2872)] = 90896, - [SMALL_STATE(2873)] = 90987, - [SMALL_STATE(2874)] = 91042, - [SMALL_STATE(2875)] = 91133, - [SMALL_STATE(2876)] = 91224, - [SMALL_STATE(2877)] = 91315, - [SMALL_STATE(2878)] = 91380, - [SMALL_STATE(2879)] = 91471, - [SMALL_STATE(2880)] = 91562, - [SMALL_STATE(2881)] = 91653, - [SMALL_STATE(2882)] = 91744, - [SMALL_STATE(2883)] = 91835, - [SMALL_STATE(2884)] = 91925, - [SMALL_STATE(2885)] = 92013, - [SMALL_STATE(2886)] = 92067, - [SMALL_STATE(2887)] = 92155, - [SMALL_STATE(2888)] = 92209, - [SMALL_STATE(2889)] = 92263, - [SMALL_STATE(2890)] = 92317, - [SMALL_STATE(2891)] = 92405, - [SMALL_STATE(2892)] = 92493, - [SMALL_STATE(2893)] = 92581, - [SMALL_STATE(2894)] = 92669, - [SMALL_STATE(2895)] = 92757, - [SMALL_STATE(2896)] = 92811, - [SMALL_STATE(2897)] = 92899, - [SMALL_STATE(2898)] = 92987, - [SMALL_STATE(2899)] = 93041, - [SMALL_STATE(2900)] = 93129, - [SMALL_STATE(2901)] = 93217, - [SMALL_STATE(2902)] = 93305, - [SMALL_STATE(2903)] = 93393, - [SMALL_STATE(2904)] = 93481, - [SMALL_STATE(2905)] = 93569, - [SMALL_STATE(2906)] = 93657, - [SMALL_STATE(2907)] = 93745, - [SMALL_STATE(2908)] = 93799, - [SMALL_STATE(2909)] = 93853, - [SMALL_STATE(2910)] = 93943, - [SMALL_STATE(2911)] = 94031, - [SMALL_STATE(2912)] = 94119, - [SMALL_STATE(2913)] = 94173, - [SMALL_STATE(2914)] = 94261, - [SMALL_STATE(2915)] = 94349, - [SMALL_STATE(2916)] = 94437, - [SMALL_STATE(2917)] = 94491, - [SMALL_STATE(2918)] = 94579, - [SMALL_STATE(2919)] = 94667, - [SMALL_STATE(2920)] = 94755, - [SMALL_STATE(2921)] = 94843, - [SMALL_STATE(2922)] = 94931, - [SMALL_STATE(2923)] = 94985, - [SMALL_STATE(2924)] = 95073, - [SMALL_STATE(2925)] = 95127, - [SMALL_STATE(2926)] = 95215, - [SMALL_STATE(2927)] = 95269, - [SMALL_STATE(2928)] = 95357, - [SMALL_STATE(2929)] = 95445, - [SMALL_STATE(2930)] = 95533, - [SMALL_STATE(2931)] = 95621, - [SMALL_STATE(2932)] = 95709, - [SMALL_STATE(2933)] = 95797, - [SMALL_STATE(2934)] = 95885, - [SMALL_STATE(2935)] = 95973, - [SMALL_STATE(2936)] = 96027, - [SMALL_STATE(2937)] = 96115, - [SMALL_STATE(2938)] = 96169, - [SMALL_STATE(2939)] = 96223, - [SMALL_STATE(2940)] = 96277, - [SMALL_STATE(2941)] = 96365, - [SMALL_STATE(2942)] = 96419, - [SMALL_STATE(2943)] = 96507, - [SMALL_STATE(2944)] = 96595, - [SMALL_STATE(2945)] = 96683, - [SMALL_STATE(2946)] = 96773, - [SMALL_STATE(2947)] = 96861, - [SMALL_STATE(2948)] = 96949, - [SMALL_STATE(2949)] = 97003, - [SMALL_STATE(2950)] = 97091, - [SMALL_STATE(2951)] = 97179, - [SMALL_STATE(2952)] = 97233, - [SMALL_STATE(2953)] = 97321, - [SMALL_STATE(2954)] = 97375, - [SMALL_STATE(2955)] = 97463, - [SMALL_STATE(2956)] = 97551, - [SMALL_STATE(2957)] = 97605, - [SMALL_STATE(2958)] = 97693, - [SMALL_STATE(2959)] = 97747, - [SMALL_STATE(2960)] = 97801, - [SMALL_STATE(2961)] = 97889, - [SMALL_STATE(2962)] = 97977, - [SMALL_STATE(2963)] = 98065, - [SMALL_STATE(2964)] = 98153, - [SMALL_STATE(2965)] = 98241, - [SMALL_STATE(2966)] = 98295, - [SMALL_STATE(2967)] = 98383, - [SMALL_STATE(2968)] = 98471, - [SMALL_STATE(2969)] = 98559, - [SMALL_STATE(2970)] = 98647, - [SMALL_STATE(2971)] = 98734, - [SMALL_STATE(2972)] = 98821, - [SMALL_STATE(2973)] = 98908, - [SMALL_STATE(2974)] = 98995, - [SMALL_STATE(2975)] = 99082, - [SMALL_STATE(2976)] = 99169, - [SMALL_STATE(2977)] = 99256, - [SMALL_STATE(2978)] = 99343, - [SMALL_STATE(2979)] = 99430, - [SMALL_STATE(2980)] = 99517, - [SMALL_STATE(2981)] = 99604, - [SMALL_STATE(2982)] = 99691, - [SMALL_STATE(2983)] = 99778, - [SMALL_STATE(2984)] = 99865, - [SMALL_STATE(2985)] = 99952, - [SMALL_STATE(2986)] = 100039, - [SMALL_STATE(2987)] = 100126, - [SMALL_STATE(2988)] = 100213, - [SMALL_STATE(2989)] = 100300, - [SMALL_STATE(2990)] = 100387, - [SMALL_STATE(2991)] = 100474, - [SMALL_STATE(2992)] = 100561, - [SMALL_STATE(2993)] = 100648, - [SMALL_STATE(2994)] = 100735, - [SMALL_STATE(2995)] = 100822, - [SMALL_STATE(2996)] = 100909, - [SMALL_STATE(2997)] = 100996, - [SMALL_STATE(2998)] = 101083, - [SMALL_STATE(2999)] = 101170, - [SMALL_STATE(3000)] = 101257, - [SMALL_STATE(3001)] = 101344, - [SMALL_STATE(3002)] = 101431, - [SMALL_STATE(3003)] = 101518, - [SMALL_STATE(3004)] = 101605, - [SMALL_STATE(3005)] = 101692, - [SMALL_STATE(3006)] = 101779, - [SMALL_STATE(3007)] = 101866, - [SMALL_STATE(3008)] = 101953, - [SMALL_STATE(3009)] = 102040, - [SMALL_STATE(3010)] = 102127, - [SMALL_STATE(3011)] = 102214, - [SMALL_STATE(3012)] = 102301, - [SMALL_STATE(3013)] = 102388, - [SMALL_STATE(3014)] = 102475, - [SMALL_STATE(3015)] = 102562, - [SMALL_STATE(3016)] = 102649, - [SMALL_STATE(3017)] = 102736, - [SMALL_STATE(3018)] = 102823, - [SMALL_STATE(3019)] = 102910, - [SMALL_STATE(3020)] = 102997, - [SMALL_STATE(3021)] = 103084, - [SMALL_STATE(3022)] = 103171, - [SMALL_STATE(3023)] = 103258, - [SMALL_STATE(3024)] = 103345, - [SMALL_STATE(3025)] = 103432, - [SMALL_STATE(3026)] = 103519, - [SMALL_STATE(3027)] = 103606, - [SMALL_STATE(3028)] = 103693, - [SMALL_STATE(3029)] = 103780, - [SMALL_STATE(3030)] = 103867, - [SMALL_STATE(3031)] = 103954, - [SMALL_STATE(3032)] = 104041, - [SMALL_STATE(3033)] = 104128, - [SMALL_STATE(3034)] = 104215, - [SMALL_STATE(3035)] = 104302, - [SMALL_STATE(3036)] = 104389, - [SMALL_STATE(3037)] = 104476, - [SMALL_STATE(3038)] = 104563, - [SMALL_STATE(3039)] = 104650, - [SMALL_STATE(3040)] = 104737, - [SMALL_STATE(3041)] = 104821, - [SMALL_STATE(3042)] = 104905, - [SMALL_STATE(3043)] = 104989, - [SMALL_STATE(3044)] = 105073, - [SMALL_STATE(3045)] = 105157, - [SMALL_STATE(3046)] = 105241, - [SMALL_STATE(3047)] = 105325, - [SMALL_STATE(3048)] = 105409, - [SMALL_STATE(3049)] = 105493, - [SMALL_STATE(3050)] = 105577, - [SMALL_STATE(3051)] = 105661, - [SMALL_STATE(3052)] = 105745, - [SMALL_STATE(3053)] = 105829, - [SMALL_STATE(3054)] = 105913, - [SMALL_STATE(3055)] = 105997, - [SMALL_STATE(3056)] = 106081, - [SMALL_STATE(3057)] = 106165, - [SMALL_STATE(3058)] = 106249, - [SMALL_STATE(3059)] = 106333, - [SMALL_STATE(3060)] = 106417, - [SMALL_STATE(3061)] = 106501, - [SMALL_STATE(3062)] = 106585, - [SMALL_STATE(3063)] = 106669, - [SMALL_STATE(3064)] = 106753, - [SMALL_STATE(3065)] = 106837, - [SMALL_STATE(3066)] = 106921, - [SMALL_STATE(3067)] = 107005, - [SMALL_STATE(3068)] = 107089, - [SMALL_STATE(3069)] = 107173, - [SMALL_STATE(3070)] = 107257, - [SMALL_STATE(3071)] = 107341, - [SMALL_STATE(3072)] = 107425, - [SMALL_STATE(3073)] = 107509, - [SMALL_STATE(3074)] = 107593, - [SMALL_STATE(3075)] = 107677, - [SMALL_STATE(3076)] = 107761, - [SMALL_STATE(3077)] = 107845, - [SMALL_STATE(3078)] = 107929, - [SMALL_STATE(3079)] = 108013, - [SMALL_STATE(3080)] = 108097, - [SMALL_STATE(3081)] = 108181, - [SMALL_STATE(3082)] = 108265, - [SMALL_STATE(3083)] = 108349, - [SMALL_STATE(3084)] = 108433, - [SMALL_STATE(3085)] = 108517, - [SMALL_STATE(3086)] = 108601, - [SMALL_STATE(3087)] = 108685, - [SMALL_STATE(3088)] = 108769, - [SMALL_STATE(3089)] = 108853, - [SMALL_STATE(3090)] = 108937, - [SMALL_STATE(3091)] = 109021, - [SMALL_STATE(3092)] = 109105, - [SMALL_STATE(3093)] = 109189, - [SMALL_STATE(3094)] = 109273, - [SMALL_STATE(3095)] = 109357, - [SMALL_STATE(3096)] = 109441, - [SMALL_STATE(3097)] = 109525, - [SMALL_STATE(3098)] = 109609, - [SMALL_STATE(3099)] = 109693, - [SMALL_STATE(3100)] = 109777, - [SMALL_STATE(3101)] = 109858, - [SMALL_STATE(3102)] = 109939, - [SMALL_STATE(3103)] = 110020, - [SMALL_STATE(3104)] = 110101, - [SMALL_STATE(3105)] = 110182, - [SMALL_STATE(3106)] = 110263, - [SMALL_STATE(3107)] = 110344, - [SMALL_STATE(3108)] = 110425, - [SMALL_STATE(3109)] = 110506, - [SMALL_STATE(3110)] = 110587, - [SMALL_STATE(3111)] = 110668, - [SMALL_STATE(3112)] = 110749, - [SMALL_STATE(3113)] = 110830, - [SMALL_STATE(3114)] = 110911, - [SMALL_STATE(3115)] = 110992, - [SMALL_STATE(3116)] = 111073, - [SMALL_STATE(3117)] = 111154, - [SMALL_STATE(3118)] = 111235, - [SMALL_STATE(3119)] = 111316, - [SMALL_STATE(3120)] = 111397, - [SMALL_STATE(3121)] = 111478, - [SMALL_STATE(3122)] = 111559, - [SMALL_STATE(3123)] = 111640, - [SMALL_STATE(3124)] = 111721, - [SMALL_STATE(3125)] = 111802, - [SMALL_STATE(3126)] = 111883, - [SMALL_STATE(3127)] = 111964, - [SMALL_STATE(3128)] = 112045, - [SMALL_STATE(3129)] = 112126, - [SMALL_STATE(3130)] = 112207, - [SMALL_STATE(3131)] = 112288, - [SMALL_STATE(3132)] = 112369, - [SMALL_STATE(3133)] = 112450, - [SMALL_STATE(3134)] = 112531, - [SMALL_STATE(3135)] = 112612, - [SMALL_STATE(3136)] = 112693, - [SMALL_STATE(3137)] = 112774, - [SMALL_STATE(3138)] = 112855, - [SMALL_STATE(3139)] = 112936, - [SMALL_STATE(3140)] = 113017, - [SMALL_STATE(3141)] = 113098, - [SMALL_STATE(3142)] = 113179, - [SMALL_STATE(3143)] = 113260, - [SMALL_STATE(3144)] = 113341, - [SMALL_STATE(3145)] = 113422, - [SMALL_STATE(3146)] = 113503, - [SMALL_STATE(3147)] = 113584, - [SMALL_STATE(3148)] = 113665, - [SMALL_STATE(3149)] = 113746, - [SMALL_STATE(3150)] = 113827, - [SMALL_STATE(3151)] = 113908, - [SMALL_STATE(3152)] = 113989, - [SMALL_STATE(3153)] = 114070, - [SMALL_STATE(3154)] = 114151, - [SMALL_STATE(3155)] = 114232, - [SMALL_STATE(3156)] = 114313, - [SMALL_STATE(3157)] = 114394, - [SMALL_STATE(3158)] = 114475, - [SMALL_STATE(3159)] = 114556, - [SMALL_STATE(3160)] = 114637, - [SMALL_STATE(3161)] = 114718, - [SMALL_STATE(3162)] = 114799, - [SMALL_STATE(3163)] = 114880, - [SMALL_STATE(3164)] = 114961, - [SMALL_STATE(3165)] = 115042, - [SMALL_STATE(3166)] = 115123, - [SMALL_STATE(3167)] = 115204, - [SMALL_STATE(3168)] = 115285, - [SMALL_STATE(3169)] = 115366, - [SMALL_STATE(3170)] = 115447, - [SMALL_STATE(3171)] = 115528, - [SMALL_STATE(3172)] = 115609, - [SMALL_STATE(3173)] = 115690, - [SMALL_STATE(3174)] = 115771, - [SMALL_STATE(3175)] = 115852, - [SMALL_STATE(3176)] = 115933, - [SMALL_STATE(3177)] = 116014, - [SMALL_STATE(3178)] = 116095, - [SMALL_STATE(3179)] = 116176, - [SMALL_STATE(3180)] = 116257, - [SMALL_STATE(3181)] = 116338, - [SMALL_STATE(3182)] = 116419, - [SMALL_STATE(3183)] = 116500, - [SMALL_STATE(3184)] = 116581, - [SMALL_STATE(3185)] = 116662, - [SMALL_STATE(3186)] = 116743, - [SMALL_STATE(3187)] = 116824, - [SMALL_STATE(3188)] = 116905, - [SMALL_STATE(3189)] = 116986, - [SMALL_STATE(3190)] = 117067, - [SMALL_STATE(3191)] = 117148, - [SMALL_STATE(3192)] = 117229, - [SMALL_STATE(3193)] = 117310, - [SMALL_STATE(3194)] = 117391, - [SMALL_STATE(3195)] = 117472, - [SMALL_STATE(3196)] = 117553, - [SMALL_STATE(3197)] = 117634, - [SMALL_STATE(3198)] = 117715, - [SMALL_STATE(3199)] = 117796, - [SMALL_STATE(3200)] = 117877, - [SMALL_STATE(3201)] = 117958, - [SMALL_STATE(3202)] = 118039, - [SMALL_STATE(3203)] = 118120, - [SMALL_STATE(3204)] = 118201, - [SMALL_STATE(3205)] = 118282, - [SMALL_STATE(3206)] = 118363, - [SMALL_STATE(3207)] = 118444, - [SMALL_STATE(3208)] = 118525, - [SMALL_STATE(3209)] = 118606, - [SMALL_STATE(3210)] = 118687, - [SMALL_STATE(3211)] = 118768, - [SMALL_STATE(3212)] = 118849, - [SMALL_STATE(3213)] = 118930, - [SMALL_STATE(3214)] = 119011, - [SMALL_STATE(3215)] = 119092, - [SMALL_STATE(3216)] = 119173, - [SMALL_STATE(3217)] = 119254, - [SMALL_STATE(3218)] = 119335, - [SMALL_STATE(3219)] = 119416, - [SMALL_STATE(3220)] = 119497, - [SMALL_STATE(3221)] = 119578, - [SMALL_STATE(3222)] = 119659, - [SMALL_STATE(3223)] = 119740, - [SMALL_STATE(3224)] = 119821, - [SMALL_STATE(3225)] = 119902, - [SMALL_STATE(3226)] = 119983, - [SMALL_STATE(3227)] = 120064, - [SMALL_STATE(3228)] = 120145, - [SMALL_STATE(3229)] = 120226, - [SMALL_STATE(3230)] = 120307, - [SMALL_STATE(3231)] = 120388, - [SMALL_STATE(3232)] = 120469, - [SMALL_STATE(3233)] = 120550, - [SMALL_STATE(3234)] = 120631, - [SMALL_STATE(3235)] = 120712, - [SMALL_STATE(3236)] = 120793, - [SMALL_STATE(3237)] = 120874, - [SMALL_STATE(3238)] = 120955, - [SMALL_STATE(3239)] = 121036, - [SMALL_STATE(3240)] = 121117, - [SMALL_STATE(3241)] = 121198, - [SMALL_STATE(3242)] = 121279, - [SMALL_STATE(3243)] = 121360, - [SMALL_STATE(3244)] = 121441, - [SMALL_STATE(3245)] = 121522, - [SMALL_STATE(3246)] = 121603, - [SMALL_STATE(3247)] = 121684, - [SMALL_STATE(3248)] = 121765, - [SMALL_STATE(3249)] = 121846, - [SMALL_STATE(3250)] = 121927, - [SMALL_STATE(3251)] = 122008, - [SMALL_STATE(3252)] = 122089, - [SMALL_STATE(3253)] = 122170, - [SMALL_STATE(3254)] = 122251, - [SMALL_STATE(3255)] = 122332, - [SMALL_STATE(3256)] = 122413, - [SMALL_STATE(3257)] = 122494, - [SMALL_STATE(3258)] = 122575, - [SMALL_STATE(3259)] = 122656, - [SMALL_STATE(3260)] = 122737, - [SMALL_STATE(3261)] = 122818, - [SMALL_STATE(3262)] = 122899, - [SMALL_STATE(3263)] = 122980, - [SMALL_STATE(3264)] = 123061, - [SMALL_STATE(3265)] = 123142, - [SMALL_STATE(3266)] = 123223, - [SMALL_STATE(3267)] = 123304, - [SMALL_STATE(3268)] = 123385, - [SMALL_STATE(3269)] = 123466, - [SMALL_STATE(3270)] = 123547, - [SMALL_STATE(3271)] = 123628, - [SMALL_STATE(3272)] = 123709, - [SMALL_STATE(3273)] = 123790, - [SMALL_STATE(3274)] = 123871, - [SMALL_STATE(3275)] = 123952, - [SMALL_STATE(3276)] = 124033, - [SMALL_STATE(3277)] = 124114, - [SMALL_STATE(3278)] = 124195, - [SMALL_STATE(3279)] = 124276, - [SMALL_STATE(3280)] = 124357, - [SMALL_STATE(3281)] = 124438, - [SMALL_STATE(3282)] = 124519, - [SMALL_STATE(3283)] = 124600, - [SMALL_STATE(3284)] = 124681, - [SMALL_STATE(3285)] = 124762, - [SMALL_STATE(3286)] = 124843, - [SMALL_STATE(3287)] = 124924, - [SMALL_STATE(3288)] = 125005, - [SMALL_STATE(3289)] = 125086, - [SMALL_STATE(3290)] = 125167, - [SMALL_STATE(3291)] = 125248, - [SMALL_STATE(3292)] = 125329, - [SMALL_STATE(3293)] = 125410, - [SMALL_STATE(3294)] = 125491, - [SMALL_STATE(3295)] = 125572, - [SMALL_STATE(3296)] = 125653, - [SMALL_STATE(3297)] = 125734, - [SMALL_STATE(3298)] = 125815, - [SMALL_STATE(3299)] = 125896, - [SMALL_STATE(3300)] = 125977, - [SMALL_STATE(3301)] = 126058, - [SMALL_STATE(3302)] = 126139, - [SMALL_STATE(3303)] = 126220, - [SMALL_STATE(3304)] = 126301, - [SMALL_STATE(3305)] = 126382, - [SMALL_STATE(3306)] = 126463, - [SMALL_STATE(3307)] = 126544, - [SMALL_STATE(3308)] = 126625, - [SMALL_STATE(3309)] = 126706, - [SMALL_STATE(3310)] = 126787, - [SMALL_STATE(3311)] = 126868, - [SMALL_STATE(3312)] = 126949, - [SMALL_STATE(3313)] = 127030, - [SMALL_STATE(3314)] = 127111, - [SMALL_STATE(3315)] = 127192, - [SMALL_STATE(3316)] = 127273, - [SMALL_STATE(3317)] = 127354, - [SMALL_STATE(3318)] = 127435, - [SMALL_STATE(3319)] = 127516, - [SMALL_STATE(3320)] = 127597, - [SMALL_STATE(3321)] = 127678, - [SMALL_STATE(3322)] = 127759, - [SMALL_STATE(3323)] = 127840, - [SMALL_STATE(3324)] = 127921, - [SMALL_STATE(3325)] = 128002, - [SMALL_STATE(3326)] = 128083, - [SMALL_STATE(3327)] = 128164, - [SMALL_STATE(3328)] = 128245, - [SMALL_STATE(3329)] = 128326, - [SMALL_STATE(3330)] = 128407, - [SMALL_STATE(3331)] = 128488, - [SMALL_STATE(3332)] = 128569, - [SMALL_STATE(3333)] = 128650, - [SMALL_STATE(3334)] = 128731, - [SMALL_STATE(3335)] = 128812, - [SMALL_STATE(3336)] = 128893, - [SMALL_STATE(3337)] = 128974, - [SMALL_STATE(3338)] = 129055, - [SMALL_STATE(3339)] = 129136, - [SMALL_STATE(3340)] = 129217, - [SMALL_STATE(3341)] = 129298, - [SMALL_STATE(3342)] = 129379, - [SMALL_STATE(3343)] = 129460, - [SMALL_STATE(3344)] = 129541, - [SMALL_STATE(3345)] = 129622, - [SMALL_STATE(3346)] = 129703, - [SMALL_STATE(3347)] = 129784, - [SMALL_STATE(3348)] = 129865, - [SMALL_STATE(3349)] = 129946, - [SMALL_STATE(3350)] = 130027, - [SMALL_STATE(3351)] = 130108, - [SMALL_STATE(3352)] = 130189, - [SMALL_STATE(3353)] = 130270, - [SMALL_STATE(3354)] = 130351, - [SMALL_STATE(3355)] = 130432, - [SMALL_STATE(3356)] = 130513, - [SMALL_STATE(3357)] = 130594, - [SMALL_STATE(3358)] = 130675, - [SMALL_STATE(3359)] = 130756, - [SMALL_STATE(3360)] = 130837, - [SMALL_STATE(3361)] = 130918, - [SMALL_STATE(3362)] = 130999, - [SMALL_STATE(3363)] = 131049, - [SMALL_STATE(3364)] = 131099, - [SMALL_STATE(3365)] = 131149, - [SMALL_STATE(3366)] = 131199, - [SMALL_STATE(3367)] = 131249, - [SMALL_STATE(3368)] = 131299, - [SMALL_STATE(3369)] = 131349, - [SMALL_STATE(3370)] = 131401, - [SMALL_STATE(3371)] = 131455, - [SMALL_STATE(3372)] = 131509, - [SMALL_STATE(3373)] = 131556, - [SMALL_STATE(3374)] = 131603, - [SMALL_STATE(3375)] = 131650, - [SMALL_STATE(3376)] = 131697, - [SMALL_STATE(3377)] = 131748, - [SMALL_STATE(3378)] = 131795, - [SMALL_STATE(3379)] = 131842, - [SMALL_STATE(3380)] = 131889, - [SMALL_STATE(3381)] = 131936, - [SMALL_STATE(3382)] = 131987, - [SMALL_STATE(3383)] = 132061, - [SMALL_STATE(3384)] = 132135, - [SMALL_STATE(3385)] = 132187, - [SMALL_STATE(3386)] = 132237, - [SMALL_STATE(3387)] = 132283, - [SMALL_STATE(3388)] = 132333, - [SMALL_STATE(3389)] = 132407, - [SMALL_STATE(3390)] = 132481, - [SMALL_STATE(3391)] = 132527, - [SMALL_STATE(3392)] = 132579, - [SMALL_STATE(3393)] = 132625, - [SMALL_STATE(3394)] = 132699, - [SMALL_STATE(3395)] = 132773, - [SMALL_STATE(3396)] = 132823, - [SMALL_STATE(3397)] = 132873, - [SMALL_STATE(3398)] = 132947, - [SMALL_STATE(3399)] = 133021, - [SMALL_STATE(3400)] = 133095, - [SMALL_STATE(3401)] = 133149, - [SMALL_STATE(3402)] = 133223, - [SMALL_STATE(3403)] = 133269, - [SMALL_STATE(3404)] = 133318, - [SMALL_STATE(3405)] = 133363, - [SMALL_STATE(3406)] = 133412, - [SMALL_STATE(3407)] = 133458, - [SMALL_STATE(3408)] = 133508, - [SMALL_STATE(3409)] = 133558, - [SMALL_STATE(3410)] = 133602, - [SMALL_STATE(3411)] = 133646, - [SMALL_STATE(3412)] = 133692, - [SMALL_STATE(3413)] = 133735, - [SMALL_STATE(3414)] = 133778, - [SMALL_STATE(3415)] = 133821, - [SMALL_STATE(3416)] = 133864, - [SMALL_STATE(3417)] = 133907, - [SMALL_STATE(3418)] = 133950, - [SMALL_STATE(3419)] = 133993, - [SMALL_STATE(3420)] = 134036, - [SMALL_STATE(3421)] = 134079, - [SMALL_STATE(3422)] = 134122, - [SMALL_STATE(3423)] = 134165, - [SMALL_STATE(3424)] = 134208, - [SMALL_STATE(3425)] = 134251, - [SMALL_STATE(3426)] = 134294, - [SMALL_STATE(3427)] = 134337, - [SMALL_STATE(3428)] = 134380, - [SMALL_STATE(3429)] = 134423, - [SMALL_STATE(3430)] = 134466, - [SMALL_STATE(3431)] = 134509, - [SMALL_STATE(3432)] = 134552, - [SMALL_STATE(3433)] = 134595, - [SMALL_STATE(3434)] = 134638, - [SMALL_STATE(3435)] = 134681, - [SMALL_STATE(3436)] = 134726, - [SMALL_STATE(3437)] = 134769, - [SMALL_STATE(3438)] = 134812, - [SMALL_STATE(3439)] = 134855, - [SMALL_STATE(3440)] = 134898, - [SMALL_STATE(3441)] = 134941, - [SMALL_STATE(3442)] = 134984, - [SMALL_STATE(3443)] = 135027, - [SMALL_STATE(3444)] = 135070, - [SMALL_STATE(3445)] = 135112, - [SMALL_STATE(3446)] = 135158, - [SMALL_STATE(3447)] = 135204, - [SMALL_STATE(3448)] = 135254, - [SMALL_STATE(3449)] = 135296, - [SMALL_STATE(3450)] = 135342, - [SMALL_STATE(3451)] = 135388, - [SMALL_STATE(3452)] = 135430, - [SMALL_STATE(3453)] = 135472, - [SMALL_STATE(3454)] = 135513, - [SMALL_STATE(3455)] = 135554, - [SMALL_STATE(3456)] = 135601, - [SMALL_STATE(3457)] = 135648, - [SMALL_STATE(3458)] = 135695, - [SMALL_STATE(3459)] = 135736, - [SMALL_STATE(3460)] = 135783, - [SMALL_STATE(3461)] = 135830, - [SMALL_STATE(3462)] = 135877, - [SMALL_STATE(3463)] = 135924, - [SMALL_STATE(3464)] = 135971, - [SMALL_STATE(3465)] = 136018, - [SMALL_STATE(3466)] = 136065, - [SMALL_STATE(3467)] = 136112, - [SMALL_STATE(3468)] = 136152, - [SMALL_STATE(3469)] = 136192, - [SMALL_STATE(3470)] = 136232, - [SMALL_STATE(3471)] = 136272, - [SMALL_STATE(3472)] = 136312, - [SMALL_STATE(3473)] = 136352, - [SMALL_STATE(3474)] = 136392, - [SMALL_STATE(3475)] = 136451, - [SMALL_STATE(3476)] = 136510, - [SMALL_STATE(3477)] = 136569, - [SMALL_STATE(3478)] = 136628, - [SMALL_STATE(3479)] = 136687, - [SMALL_STATE(3480)] = 136746, - [SMALL_STATE(3481)] = 136805, - [SMALL_STATE(3482)] = 136830, - [SMALL_STATE(3483)] = 136875, - [SMALL_STATE(3484)] = 136900, - [SMALL_STATE(3485)] = 136925, - [SMALL_STATE(3486)] = 136970, - [SMALL_STATE(3487)] = 137015, - [SMALL_STATE(3488)] = 137060, - [SMALL_STATE(3489)] = 137105, - [SMALL_STATE(3490)] = 137150, - [SMALL_STATE(3491)] = 137195, - [SMALL_STATE(3492)] = 137220, - [SMALL_STATE(3493)] = 137262, - [SMALL_STATE(3494)] = 137304, - [SMALL_STATE(3495)] = 137332, - [SMALL_STATE(3496)] = 137360, - [SMALL_STATE(3497)] = 137385, - [SMALL_STATE(3498)] = 137410, - [SMALL_STATE(3499)] = 137446, - [SMALL_STATE(3500)] = 137482, - [SMALL_STATE(3501)] = 137518, - [SMALL_STATE(3502)] = 137554, - [SMALL_STATE(3503)] = 137590, - [SMALL_STATE(3504)] = 137626, - [SMALL_STATE(3505)] = 137662, - [SMALL_STATE(3506)] = 137698, - [SMALL_STATE(3507)] = 137734, - [SMALL_STATE(3508)] = 137770, - [SMALL_STATE(3509)] = 137806, - [SMALL_STATE(3510)] = 137842, - [SMALL_STATE(3511)] = 137878, - [SMALL_STATE(3512)] = 137914, - [SMALL_STATE(3513)] = 137950, - [SMALL_STATE(3514)] = 137986, - [SMALL_STATE(3515)] = 138022, - [SMALL_STATE(3516)] = 138058, - [SMALL_STATE(3517)] = 138094, - [SMALL_STATE(3518)] = 138130, - [SMALL_STATE(3519)] = 138166, - [SMALL_STATE(3520)] = 138202, - [SMALL_STATE(3521)] = 138238, - [SMALL_STATE(3522)] = 138274, - [SMALL_STATE(3523)] = 138310, - [SMALL_STATE(3524)] = 138346, - [SMALL_STATE(3525)] = 138382, - [SMALL_STATE(3526)] = 138418, - [SMALL_STATE(3527)] = 138454, - [SMALL_STATE(3528)] = 138490, - [SMALL_STATE(3529)] = 138526, - [SMALL_STATE(3530)] = 138562, - [SMALL_STATE(3531)] = 138598, - [SMALL_STATE(3532)] = 138634, - [SMALL_STATE(3533)] = 138670, - [SMALL_STATE(3534)] = 138703, - [SMALL_STATE(3535)] = 138736, - [SMALL_STATE(3536)] = 138769, - [SMALL_STATE(3537)] = 138802, - [SMALL_STATE(3538)] = 138835, - [SMALL_STATE(3539)] = 138868, - [SMALL_STATE(3540)] = 138901, - [SMALL_STATE(3541)] = 138934, - [SMALL_STATE(3542)] = 138967, - [SMALL_STATE(3543)] = 139000, - [SMALL_STATE(3544)] = 139033, - [SMALL_STATE(3545)] = 139066, - [SMALL_STATE(3546)] = 139099, - [SMALL_STATE(3547)] = 139132, - [SMALL_STATE(3548)] = 139165, - [SMALL_STATE(3549)] = 139198, - [SMALL_STATE(3550)] = 139231, - [SMALL_STATE(3551)] = 139264, - [SMALL_STATE(3552)] = 139297, - [SMALL_STATE(3553)] = 139330, - [SMALL_STATE(3554)] = 139363, - [SMALL_STATE(3555)] = 139396, - [SMALL_STATE(3556)] = 139429, - [SMALL_STATE(3557)] = 139462, - [SMALL_STATE(3558)] = 139495, - [SMALL_STATE(3559)] = 139528, - [SMALL_STATE(3560)] = 139561, - [SMALL_STATE(3561)] = 139594, - [SMALL_STATE(3562)] = 139614, - [SMALL_STATE(3563)] = 139648, - [SMALL_STATE(3564)] = 139664, - [SMALL_STATE(3565)] = 139698, - [SMALL_STATE(3566)] = 139718, - [SMALL_STATE(3567)] = 139734, - [SMALL_STATE(3568)] = 139768, - [SMALL_STATE(3569)] = 139802, - [SMALL_STATE(3570)] = 139836, - [SMALL_STATE(3571)] = 139870, - [SMALL_STATE(3572)] = 139904, - [SMALL_STATE(3573)] = 139938, - [SMALL_STATE(3574)] = 139972, - [SMALL_STATE(3575)] = 140002, - [SMALL_STATE(3576)] = 140036, - [SMALL_STATE(3577)] = 140070, - [SMALL_STATE(3578)] = 140104, - [SMALL_STATE(3579)] = 140138, - [SMALL_STATE(3580)] = 140172, - [SMALL_STATE(3581)] = 140206, - [SMALL_STATE(3582)] = 140240, - [SMALL_STATE(3583)] = 140274, - [SMALL_STATE(3584)] = 140308, - [SMALL_STATE(3585)] = 140324, - [SMALL_STATE(3586)] = 140344, - [SMALL_STATE(3587)] = 140378, - [SMALL_STATE(3588)] = 140412, - [SMALL_STATE(3589)] = 140442, - [SMALL_STATE(3590)] = 140476, - [SMALL_STATE(3591)] = 140510, - [SMALL_STATE(3592)] = 140544, - [SMALL_STATE(3593)] = 140578, - [SMALL_STATE(3594)] = 140612, - [SMALL_STATE(3595)] = 140646, - [SMALL_STATE(3596)] = 140666, - [SMALL_STATE(3597)] = 140700, - [SMALL_STATE(3598)] = 140734, - [SMALL_STATE(3599)] = 140768, - [SMALL_STATE(3600)] = 140802, - [SMALL_STATE(3601)] = 140836, - [SMALL_STATE(3602)] = 140870, - [SMALL_STATE(3603)] = 140904, - [SMALL_STATE(3604)] = 140938, - [SMALL_STATE(3605)] = 140972, - [SMALL_STATE(3606)] = 140987, - [SMALL_STATE(3607)] = 141014, - [SMALL_STATE(3608)] = 141043, - [SMALL_STATE(3609)] = 141072, - [SMALL_STATE(3610)] = 141099, - [SMALL_STATE(3611)] = 141124, - [SMALL_STATE(3612)] = 141153, - [SMALL_STATE(3613)] = 141180, - [SMALL_STATE(3614)] = 141201, - [SMALL_STATE(3615)] = 141222, - [SMALL_STATE(3616)] = 141251, - [SMALL_STATE(3617)] = 141280, - [SMALL_STATE(3618)] = 141307, - [SMALL_STATE(3619)] = 141335, - [SMALL_STATE(3620)] = 141363, - [SMALL_STATE(3621)] = 141391, - [SMALL_STATE(3622)] = 141419, - [SMALL_STATE(3623)] = 141447, - [SMALL_STATE(3624)] = 141475, - [SMALL_STATE(3625)] = 141503, - [SMALL_STATE(3626)] = 141531, - [SMALL_STATE(3627)] = 141559, - [SMALL_STATE(3628)] = 141583, - [SMALL_STATE(3629)] = 141611, - [SMALL_STATE(3630)] = 141627, - [SMALL_STATE(3631)] = 141651, - [SMALL_STATE(3632)] = 141667, - [SMALL_STATE(3633)] = 141695, - [SMALL_STATE(3634)] = 141723, - [SMALL_STATE(3635)] = 141751, - [SMALL_STATE(3636)] = 141779, - [SMALL_STATE(3637)] = 141807, - [SMALL_STATE(3638)] = 141835, - [SMALL_STATE(3639)] = 141859, - [SMALL_STATE(3640)] = 141887, - [SMALL_STATE(3641)] = 141915, - [SMALL_STATE(3642)] = 141943, - [SMALL_STATE(3643)] = 141971, - [SMALL_STATE(3644)] = 141999, - [SMALL_STATE(3645)] = 142027, - [SMALL_STATE(3646)] = 142051, - [SMALL_STATE(3647)] = 142067, - [SMALL_STATE(3648)] = 142095, - [SMALL_STATE(3649)] = 142123, - [SMALL_STATE(3650)] = 142151, - [SMALL_STATE(3651)] = 142179, - [SMALL_STATE(3652)] = 142207, - [SMALL_STATE(3653)] = 142235, - [SMALL_STATE(3654)] = 142259, - [SMALL_STATE(3655)] = 142287, - [SMALL_STATE(3656)] = 142315, - [SMALL_STATE(3657)] = 142333, - [SMALL_STATE(3658)] = 142361, - [SMALL_STATE(3659)] = 142379, - [SMALL_STATE(3660)] = 142407, - [SMALL_STATE(3661)] = 142435, - [SMALL_STATE(3662)] = 142463, - [SMALL_STATE(3663)] = 142491, - [SMALL_STATE(3664)] = 142519, - [SMALL_STATE(3665)] = 142547, - [SMALL_STATE(3666)] = 142575, - [SMALL_STATE(3667)] = 142597, - [SMALL_STATE(3668)] = 142625, - [SMALL_STATE(3669)] = 142653, - [SMALL_STATE(3670)] = 142681, - [SMALL_STATE(3671)] = 142709, - [SMALL_STATE(3672)] = 142737, - [SMALL_STATE(3673)] = 142765, - [SMALL_STATE(3674)] = 142793, - [SMALL_STATE(3675)] = 142821, - [SMALL_STATE(3676)] = 142845, - [SMALL_STATE(3677)] = 142873, - [SMALL_STATE(3678)] = 142901, - [SMALL_STATE(3679)] = 142929, - [SMALL_STATE(3680)] = 142957, - [SMALL_STATE(3681)] = 142975, - [SMALL_STATE(3682)] = 142993, - [SMALL_STATE(3683)] = 143021, - [SMALL_STATE(3684)] = 143049, - [SMALL_STATE(3685)] = 143077, - [SMALL_STATE(3686)] = 143105, - [SMALL_STATE(3687)] = 143133, - [SMALL_STATE(3688)] = 143161, - [SMALL_STATE(3689)] = 143189, - [SMALL_STATE(3690)] = 143217, - [SMALL_STATE(3691)] = 143245, - [SMALL_STATE(3692)] = 143265, - [SMALL_STATE(3693)] = 143293, - [SMALL_STATE(3694)] = 143321, - [SMALL_STATE(3695)] = 143345, - [SMALL_STATE(3696)] = 143373, - [SMALL_STATE(3697)] = 143401, - [SMALL_STATE(3698)] = 143429, - [SMALL_STATE(3699)] = 143457, - [SMALL_STATE(3700)] = 143485, - [SMALL_STATE(3701)] = 143509, - [SMALL_STATE(3702)] = 143522, - [SMALL_STATE(3703)] = 143539, - [SMALL_STATE(3704)] = 143560, - [SMALL_STATE(3705)] = 143585, - [SMALL_STATE(3706)] = 143598, - [SMALL_STATE(3707)] = 143611, - [SMALL_STATE(3708)] = 143632, - [SMALL_STATE(3709)] = 143645, - [SMALL_STATE(3710)] = 143670, - [SMALL_STATE(3711)] = 143687, - [SMALL_STATE(3712)] = 143710, - [SMALL_STATE(3713)] = 143735, - [SMALL_STATE(3714)] = 143758, - [SMALL_STATE(3715)] = 143773, - [SMALL_STATE(3716)] = 143790, - [SMALL_STATE(3717)] = 143815, - [SMALL_STATE(3718)] = 143840, - [SMALL_STATE(3719)] = 143859, - [SMALL_STATE(3720)] = 143882, - [SMALL_STATE(3721)] = 143907, - [SMALL_STATE(3722)] = 143928, - [SMALL_STATE(3723)] = 143945, - [SMALL_STATE(3724)] = 143962, - [SMALL_STATE(3725)] = 143975, - [SMALL_STATE(3726)] = 143998, - [SMALL_STATE(3727)] = 144023, - [SMALL_STATE(3728)] = 144040, - [SMALL_STATE(3729)] = 144055, - [SMALL_STATE(3730)] = 144070, - [SMALL_STATE(3731)] = 144087, - [SMALL_STATE(3732)] = 144106, - [SMALL_STATE(3733)] = 144119, - [SMALL_STATE(3734)] = 144136, - [SMALL_STATE(3735)] = 144149, - [SMALL_STATE(3736)] = 144170, - [SMALL_STATE(3737)] = 144193, - [SMALL_STATE(3738)] = 144206, - [SMALL_STATE(3739)] = 144231, - [SMALL_STATE(3740)] = 144252, - [SMALL_STATE(3741)] = 144273, - [SMALL_STATE(3742)] = 144298, - [SMALL_STATE(3743)] = 144319, - [SMALL_STATE(3744)] = 144342, - [SMALL_STATE(3745)] = 144365, - [SMALL_STATE(3746)] = 144378, - [SMALL_STATE(3747)] = 144399, - [SMALL_STATE(3748)] = 144418, - [SMALL_STATE(3749)] = 144443, - [SMALL_STATE(3750)] = 144456, - [SMALL_STATE(3751)] = 144473, - [SMALL_STATE(3752)] = 144485, - [SMALL_STATE(3753)] = 144507, - [SMALL_STATE(3754)] = 144519, - [SMALL_STATE(3755)] = 144541, - [SMALL_STATE(3756)] = 144563, - [SMALL_STATE(3757)] = 144575, - [SMALL_STATE(3758)] = 144597, - [SMALL_STATE(3759)] = 144619, - [SMALL_STATE(3760)] = 144641, - [SMALL_STATE(3761)] = 144663, - [SMALL_STATE(3762)] = 144685, - [SMALL_STATE(3763)] = 144707, - [SMALL_STATE(3764)] = 144729, - [SMALL_STATE(3765)] = 144751, - [SMALL_STATE(3766)] = 144773, - [SMALL_STATE(3767)] = 144791, - [SMALL_STATE(3768)] = 144813, - [SMALL_STATE(3769)] = 144835, - [SMALL_STATE(3770)] = 144857, - [SMALL_STATE(3771)] = 144879, - [SMALL_STATE(3772)] = 144901, - [SMALL_STATE(3773)] = 144923, - [SMALL_STATE(3774)] = 144945, - [SMALL_STATE(3775)] = 144967, - [SMALL_STATE(3776)] = 144989, - [SMALL_STATE(3777)] = 145007, - [SMALL_STATE(3778)] = 145029, - [SMALL_STATE(3779)] = 145047, - [SMALL_STATE(3780)] = 145069, - [SMALL_STATE(3781)] = 145081, - [SMALL_STATE(3782)] = 145093, - [SMALL_STATE(3783)] = 145115, - [SMALL_STATE(3784)] = 145133, - [SMALL_STATE(3785)] = 145155, - [SMALL_STATE(3786)] = 145167, - [SMALL_STATE(3787)] = 145179, - [SMALL_STATE(3788)] = 145195, - [SMALL_STATE(3789)] = 145217, - [SMALL_STATE(3790)] = 145233, - [SMALL_STATE(3791)] = 145255, - [SMALL_STATE(3792)] = 145273, - [SMALL_STATE(3793)] = 145295, - [SMALL_STATE(3794)] = 145317, - [SMALL_STATE(3795)] = 145339, - [SMALL_STATE(3796)] = 145361, - [SMALL_STATE(3797)] = 145379, - [SMALL_STATE(3798)] = 145401, - [SMALL_STATE(3799)] = 145423, - [SMALL_STATE(3800)] = 145445, - [SMALL_STATE(3801)] = 145467, - [SMALL_STATE(3802)] = 145489, - [SMALL_STATE(3803)] = 145511, - [SMALL_STATE(3804)] = 145533, - [SMALL_STATE(3805)] = 145555, - [SMALL_STATE(3806)] = 145577, - [SMALL_STATE(3807)] = 145599, - [SMALL_STATE(3808)] = 145621, - [SMALL_STATE(3809)] = 145643, - [SMALL_STATE(3810)] = 145665, - [SMALL_STATE(3811)] = 145677, - [SMALL_STATE(3812)] = 145699, - [SMALL_STATE(3813)] = 145721, - [SMALL_STATE(3814)] = 145739, - [SMALL_STATE(3815)] = 145757, - [SMALL_STATE(3816)] = 145779, - [SMALL_STATE(3817)] = 145797, - [SMALL_STATE(3818)] = 145819, - [SMALL_STATE(3819)] = 145841, - [SMALL_STATE(3820)] = 145859, - [SMALL_STATE(3821)] = 145871, - [SMALL_STATE(3822)] = 145893, - [SMALL_STATE(3823)] = 145915, - [SMALL_STATE(3824)] = 145937, - [SMALL_STATE(3825)] = 145959, - [SMALL_STATE(3826)] = 145981, - [SMALL_STATE(3827)] = 146003, - [SMALL_STATE(3828)] = 146025, - [SMALL_STATE(3829)] = 146037, - [SMALL_STATE(3830)] = 146059, - [SMALL_STATE(3831)] = 146081, - [SMALL_STATE(3832)] = 146103, - [SMALL_STATE(3833)] = 146125, - [SMALL_STATE(3834)] = 146147, - [SMALL_STATE(3835)] = 146169, - [SMALL_STATE(3836)] = 146191, - [SMALL_STATE(3837)] = 146213, - [SMALL_STATE(3838)] = 146225, - [SMALL_STATE(3839)] = 146247, - [SMALL_STATE(3840)] = 146259, - [SMALL_STATE(3841)] = 146281, - [SMALL_STATE(3842)] = 146299, - [SMALL_STATE(3843)] = 146311, - [SMALL_STATE(3844)] = 146333, - [SMALL_STATE(3845)] = 146355, - [SMALL_STATE(3846)] = 146377, - [SMALL_STATE(3847)] = 146389, - [SMALL_STATE(3848)] = 146411, - [SMALL_STATE(3849)] = 146433, - [SMALL_STATE(3850)] = 146455, - [SMALL_STATE(3851)] = 146467, - [SMALL_STATE(3852)] = 146489, - [SMALL_STATE(3853)] = 146511, - [SMALL_STATE(3854)] = 146523, - [SMALL_STATE(3855)] = 146545, - [SMALL_STATE(3856)] = 146561, - [SMALL_STATE(3857)] = 146575, - [SMALL_STATE(3858)] = 146597, - [SMALL_STATE(3859)] = 146619, - [SMALL_STATE(3860)] = 146637, - [SMALL_STATE(3861)] = 146659, - [SMALL_STATE(3862)] = 146677, - [SMALL_STATE(3863)] = 146689, - [SMALL_STATE(3864)] = 146711, - [SMALL_STATE(3865)] = 146733, - [SMALL_STATE(3866)] = 146755, - [SMALL_STATE(3867)] = 146767, - [SMALL_STATE(3868)] = 146789, - [SMALL_STATE(3869)] = 146811, - [SMALL_STATE(3870)] = 146833, - [SMALL_STATE(3871)] = 146855, - [SMALL_STATE(3872)] = 146877, - [SMALL_STATE(3873)] = 146889, - [SMALL_STATE(3874)] = 146911, - [SMALL_STATE(3875)] = 146933, - [SMALL_STATE(3876)] = 146955, - [SMALL_STATE(3877)] = 146977, - [SMALL_STATE(3878)] = 146999, - [SMALL_STATE(3879)] = 147017, - [SMALL_STATE(3880)] = 147039, - [SMALL_STATE(3881)] = 147061, - [SMALL_STATE(3882)] = 147083, - [SMALL_STATE(3883)] = 147105, - [SMALL_STATE(3884)] = 147127, - [SMALL_STATE(3885)] = 147139, - [SMALL_STATE(3886)] = 147161, - [SMALL_STATE(3887)] = 147183, - [SMALL_STATE(3888)] = 147195, - [SMALL_STATE(3889)] = 147217, - [SMALL_STATE(3890)] = 147239, - [SMALL_STATE(3891)] = 147257, - [SMALL_STATE(3892)] = 147269, - [SMALL_STATE(3893)] = 147281, - [SMALL_STATE(3894)] = 147303, - [SMALL_STATE(3895)] = 147325, - [SMALL_STATE(3896)] = 147347, - [SMALL_STATE(3897)] = 147369, - [SMALL_STATE(3898)] = 147391, - [SMALL_STATE(3899)] = 147413, - [SMALL_STATE(3900)] = 147435, - [SMALL_STATE(3901)] = 147457, - [SMALL_STATE(3902)] = 147479, - [SMALL_STATE(3903)] = 147501, - [SMALL_STATE(3904)] = 147513, - [SMALL_STATE(3905)] = 147535, - [SMALL_STATE(3906)] = 147553, - [SMALL_STATE(3907)] = 147575, - [SMALL_STATE(3908)] = 147597, - [SMALL_STATE(3909)] = 147619, - [SMALL_STATE(3910)] = 147641, - [SMALL_STATE(3911)] = 147653, - [SMALL_STATE(3912)] = 147671, - [SMALL_STATE(3913)] = 147693, - [SMALL_STATE(3914)] = 147715, - [SMALL_STATE(3915)] = 147737, - [SMALL_STATE(3916)] = 147759, - [SMALL_STATE(3917)] = 147781, - [SMALL_STATE(3918)] = 147803, - [SMALL_STATE(3919)] = 147815, - [SMALL_STATE(3920)] = 147837, - [SMALL_STATE(3921)] = 147859, - [SMALL_STATE(3922)] = 147877, - [SMALL_STATE(3923)] = 147899, - [SMALL_STATE(3924)] = 147911, - [SMALL_STATE(3925)] = 147929, - [SMALL_STATE(3926)] = 147947, - [SMALL_STATE(3927)] = 147969, - [SMALL_STATE(3928)] = 147991, - [SMALL_STATE(3929)] = 148003, - [SMALL_STATE(3930)] = 148015, - [SMALL_STATE(3931)] = 148027, - [SMALL_STATE(3932)] = 148049, - [SMALL_STATE(3933)] = 148061, - [SMALL_STATE(3934)] = 148073, - [SMALL_STATE(3935)] = 148095, - [SMALL_STATE(3936)] = 148114, - [SMALL_STATE(3937)] = 148133, - [SMALL_STATE(3938)] = 148146, - [SMALL_STATE(3939)] = 148159, - [SMALL_STATE(3940)] = 148178, - [SMALL_STATE(3941)] = 148191, - [SMALL_STATE(3942)] = 148210, - [SMALL_STATE(3943)] = 148223, - [SMALL_STATE(3944)] = 148242, - [SMALL_STATE(3945)] = 148255, - [SMALL_STATE(3946)] = 148268, - [SMALL_STATE(3947)] = 148281, - [SMALL_STATE(3948)] = 148300, - [SMALL_STATE(3949)] = 148313, - [SMALL_STATE(3950)] = 148332, - [SMALL_STATE(3951)] = 148345, - [SMALL_STATE(3952)] = 148358, - [SMALL_STATE(3953)] = 148371, - [SMALL_STATE(3954)] = 148390, - [SMALL_STATE(3955)] = 148403, - [SMALL_STATE(3956)] = 148422, - [SMALL_STATE(3957)] = 148441, - [SMALL_STATE(3958)] = 148460, - [SMALL_STATE(3959)] = 148475, - [SMALL_STATE(3960)] = 148488, - [SMALL_STATE(3961)] = 148507, - [SMALL_STATE(3962)] = 148526, - [SMALL_STATE(3963)] = 148545, - [SMALL_STATE(3964)] = 148564, - [SMALL_STATE(3965)] = 148581, - [SMALL_STATE(3966)] = 148600, - [SMALL_STATE(3967)] = 148619, - [SMALL_STATE(3968)] = 148638, - [SMALL_STATE(3969)] = 148657, - [SMALL_STATE(3970)] = 148672, - [SMALL_STATE(3971)] = 148691, - [SMALL_STATE(3972)] = 148710, - [SMALL_STATE(3973)] = 148729, - [SMALL_STATE(3974)] = 148748, - [SMALL_STATE(3975)] = 148761, - [SMALL_STATE(3976)] = 148780, - [SMALL_STATE(3977)] = 148799, - [SMALL_STATE(3978)] = 148814, - [SMALL_STATE(3979)] = 148833, - [SMALL_STATE(3980)] = 148852, - [SMALL_STATE(3981)] = 148871, - [SMALL_STATE(3982)] = 148890, - [SMALL_STATE(3983)] = 148909, - [SMALL_STATE(3984)] = 148928, - [SMALL_STATE(3985)] = 148943, - [SMALL_STATE(3986)] = 148962, - [SMALL_STATE(3987)] = 148981, - [SMALL_STATE(3988)] = 148994, - [SMALL_STATE(3989)] = 149013, - [SMALL_STATE(3990)] = 149026, - [SMALL_STATE(3991)] = 149039, - [SMALL_STATE(3992)] = 149058, - [SMALL_STATE(3993)] = 149071, - [SMALL_STATE(3994)] = 149084, - [SMALL_STATE(3995)] = 149097, - [SMALL_STATE(3996)] = 149116, - [SMALL_STATE(3997)] = 149135, - [SMALL_STATE(3998)] = 149154, - [SMALL_STATE(3999)] = 149173, - [SMALL_STATE(4000)] = 149186, - [SMALL_STATE(4001)] = 149205, - [SMALL_STATE(4002)] = 149224, - [SMALL_STATE(4003)] = 149243, - [SMALL_STATE(4004)] = 149262, - [SMALL_STATE(4005)] = 149281, - [SMALL_STATE(4006)] = 149300, - [SMALL_STATE(4007)] = 149319, - [SMALL_STATE(4008)] = 149334, - [SMALL_STATE(4009)] = 149353, - [SMALL_STATE(4010)] = 149372, - [SMALL_STATE(4011)] = 149391, - [SMALL_STATE(4012)] = 149410, - [SMALL_STATE(4013)] = 149429, - [SMALL_STATE(4014)] = 149448, - [SMALL_STATE(4015)] = 149459, - [SMALL_STATE(4016)] = 149478, - [SMALL_STATE(4017)] = 149497, - [SMALL_STATE(4018)] = 149516, - [SMALL_STATE(4019)] = 149535, - [SMALL_STATE(4020)] = 149554, - [SMALL_STATE(4021)] = 149573, - [SMALL_STATE(4022)] = 149592, - [SMALL_STATE(4023)] = 149605, - [SMALL_STATE(4024)] = 149620, - [SMALL_STATE(4025)] = 149635, - [SMALL_STATE(4026)] = 149650, - [SMALL_STATE(4027)] = 149667, - [SMALL_STATE(4028)] = 149686, - [SMALL_STATE(4029)] = 149705, - [SMALL_STATE(4030)] = 149720, - [SMALL_STATE(4031)] = 149739, - [SMALL_STATE(4032)] = 149758, - [SMALL_STATE(4033)] = 149777, - [SMALL_STATE(4034)] = 149792, - [SMALL_STATE(4035)] = 149807, - [SMALL_STATE(4036)] = 149826, - [SMALL_STATE(4037)] = 149841, - [SMALL_STATE(4038)] = 149856, - [SMALL_STATE(4039)] = 149875, - [SMALL_STATE(4040)] = 149890, - [SMALL_STATE(4041)] = 149905, - [SMALL_STATE(4042)] = 149920, - [SMALL_STATE(4043)] = 149937, - [SMALL_STATE(4044)] = 149952, - [SMALL_STATE(4045)] = 149971, - [SMALL_STATE(4046)] = 149988, - [SMALL_STATE(4047)] = 150007, - [SMALL_STATE(4048)] = 150026, - [SMALL_STATE(4049)] = 150041, - [SMALL_STATE(4050)] = 150058, - [SMALL_STATE(4051)] = 150069, - [SMALL_STATE(4052)] = 150084, - [SMALL_STATE(4053)] = 150103, - [SMALL_STATE(4054)] = 150118, - [SMALL_STATE(4055)] = 150137, - [SMALL_STATE(4056)] = 150152, - [SMALL_STATE(4057)] = 150167, - [SMALL_STATE(4058)] = 150180, - [SMALL_STATE(4059)] = 150199, - [SMALL_STATE(4060)] = 150218, - [SMALL_STATE(4061)] = 150237, - [SMALL_STATE(4062)] = 150252, - [SMALL_STATE(4063)] = 150271, - [SMALL_STATE(4064)] = 150290, - [SMALL_STATE(4065)] = 150307, - [SMALL_STATE(4066)] = 150320, - [SMALL_STATE(4067)] = 150339, - [SMALL_STATE(4068)] = 150353, - [SMALL_STATE(4069)] = 150367, - [SMALL_STATE(4070)] = 150383, - [SMALL_STATE(4071)] = 150399, - [SMALL_STATE(4072)] = 150413, - [SMALL_STATE(4073)] = 150427, - [SMALL_STATE(4074)] = 150443, - [SMALL_STATE(4075)] = 150459, - [SMALL_STATE(4076)] = 150475, - [SMALL_STATE(4077)] = 150489, - [SMALL_STATE(4078)] = 150505, - [SMALL_STATE(4079)] = 150521, - [SMALL_STATE(4080)] = 150537, - [SMALL_STATE(4081)] = 150553, - [SMALL_STATE(4082)] = 150569, - [SMALL_STATE(4083)] = 150585, - [SMALL_STATE(4084)] = 150599, - [SMALL_STATE(4085)] = 150615, - [SMALL_STATE(4086)] = 150631, - [SMALL_STATE(4087)] = 150643, - [SMALL_STATE(4088)] = 150659, - [SMALL_STATE(4089)] = 150675, - [SMALL_STATE(4090)] = 150689, - [SMALL_STATE(4091)] = 150705, - [SMALL_STATE(4092)] = 150721, - [SMALL_STATE(4093)] = 150737, - [SMALL_STATE(4094)] = 150753, - [SMALL_STATE(4095)] = 150769, - [SMALL_STATE(4096)] = 150785, - [SMALL_STATE(4097)] = 150801, - [SMALL_STATE(4098)] = 150817, - [SMALL_STATE(4099)] = 150833, - [SMALL_STATE(4100)] = 150847, - [SMALL_STATE(4101)] = 150863, - [SMALL_STATE(4102)] = 150879, - [SMALL_STATE(4103)] = 150895, - [SMALL_STATE(4104)] = 150911, - [SMALL_STATE(4105)] = 150927, - [SMALL_STATE(4106)] = 150943, - [SMALL_STATE(4107)] = 150959, - [SMALL_STATE(4108)] = 150973, - [SMALL_STATE(4109)] = 150989, - [SMALL_STATE(4110)] = 151005, - [SMALL_STATE(4111)] = 151021, - [SMALL_STATE(4112)] = 151037, - [SMALL_STATE(4113)] = 151053, - [SMALL_STATE(4114)] = 151067, - [SMALL_STATE(4115)] = 151083, - [SMALL_STATE(4116)] = 151097, - [SMALL_STATE(4117)] = 151109, - [SMALL_STATE(4118)] = 151123, - [SMALL_STATE(4119)] = 151137, - [SMALL_STATE(4120)] = 151151, - [SMALL_STATE(4121)] = 151161, - [SMALL_STATE(4122)] = 151177, - [SMALL_STATE(4123)] = 151193, - [SMALL_STATE(4124)] = 151209, - [SMALL_STATE(4125)] = 151223, - [SMALL_STATE(4126)] = 151237, - [SMALL_STATE(4127)] = 151253, - [SMALL_STATE(4128)] = 151267, - [SMALL_STATE(4129)] = 151283, - [SMALL_STATE(4130)] = 151297, - [SMALL_STATE(4131)] = 151313, - [SMALL_STATE(4132)] = 151327, - [SMALL_STATE(4133)] = 151343, - [SMALL_STATE(4134)] = 151359, - [SMALL_STATE(4135)] = 151375, - [SMALL_STATE(4136)] = 151391, - [SMALL_STATE(4137)] = 151407, - [SMALL_STATE(4138)] = 151423, - [SMALL_STATE(4139)] = 151439, - [SMALL_STATE(4140)] = 151453, - [SMALL_STATE(4141)] = 151463, - [SMALL_STATE(4142)] = 151477, - [SMALL_STATE(4143)] = 151493, - [SMALL_STATE(4144)] = 151509, - [SMALL_STATE(4145)] = 151525, - [SMALL_STATE(4146)] = 151541, - [SMALL_STATE(4147)] = 151557, - [SMALL_STATE(4148)] = 151573, - [SMALL_STATE(4149)] = 151589, - [SMALL_STATE(4150)] = 151605, - [SMALL_STATE(4151)] = 151621, - [SMALL_STATE(4152)] = 151637, - [SMALL_STATE(4153)] = 151653, - [SMALL_STATE(4154)] = 151669, - [SMALL_STATE(4155)] = 151685, - [SMALL_STATE(4156)] = 151699, - [SMALL_STATE(4157)] = 151715, - [SMALL_STATE(4158)] = 151725, - [SMALL_STATE(4159)] = 151741, - [SMALL_STATE(4160)] = 151757, - [SMALL_STATE(4161)] = 151773, - [SMALL_STATE(4162)] = 151789, - [SMALL_STATE(4163)] = 151805, - [SMALL_STATE(4164)] = 151819, - [SMALL_STATE(4165)] = 151833, - [SMALL_STATE(4166)] = 151849, - [SMALL_STATE(4167)] = 151863, - [SMALL_STATE(4168)] = 151879, - [SMALL_STATE(4169)] = 151895, - [SMALL_STATE(4170)] = 151911, - [SMALL_STATE(4171)] = 151927, - [SMALL_STATE(4172)] = 151943, - [SMALL_STATE(4173)] = 151957, - [SMALL_STATE(4174)] = 151973, - [SMALL_STATE(4175)] = 151987, - [SMALL_STATE(4176)] = 152003, - [SMALL_STATE(4177)] = 152017, - [SMALL_STATE(4178)] = 152033, - [SMALL_STATE(4179)] = 152049, - [SMALL_STATE(4180)] = 152059, - [SMALL_STATE(4181)] = 152073, - [SMALL_STATE(4182)] = 152089, - [SMALL_STATE(4183)] = 152105, - [SMALL_STATE(4184)] = 152119, - [SMALL_STATE(4185)] = 152135, - [SMALL_STATE(4186)] = 152151, - [SMALL_STATE(4187)] = 152165, - [SMALL_STATE(4188)] = 152179, - [SMALL_STATE(4189)] = 152195, - [SMALL_STATE(4190)] = 152211, - [SMALL_STATE(4191)] = 152225, - [SMALL_STATE(4192)] = 152239, - [SMALL_STATE(4193)] = 152253, - [SMALL_STATE(4194)] = 152267, - [SMALL_STATE(4195)] = 152283, - [SMALL_STATE(4196)] = 152297, - [SMALL_STATE(4197)] = 152311, - [SMALL_STATE(4198)] = 152325, - [SMALL_STATE(4199)] = 152339, - [SMALL_STATE(4200)] = 152353, - [SMALL_STATE(4201)] = 152367, - [SMALL_STATE(4202)] = 152381, - [SMALL_STATE(4203)] = 152393, - [SMALL_STATE(4204)] = 152407, - [SMALL_STATE(4205)] = 152421, - [SMALL_STATE(4206)] = 152437, - [SMALL_STATE(4207)] = 152451, - [SMALL_STATE(4208)] = 152467, - [SMALL_STATE(4209)] = 152481, - [SMALL_STATE(4210)] = 152495, - [SMALL_STATE(4211)] = 152509, - [SMALL_STATE(4212)] = 152523, - [SMALL_STATE(4213)] = 152539, - [SMALL_STATE(4214)] = 152555, - [SMALL_STATE(4215)] = 152571, - [SMALL_STATE(4216)] = 152587, - [SMALL_STATE(4217)] = 152601, - [SMALL_STATE(4218)] = 152617, - [SMALL_STATE(4219)] = 152631, - [SMALL_STATE(4220)] = 152645, - [SMALL_STATE(4221)] = 152661, - [SMALL_STATE(4222)] = 152677, - [SMALL_STATE(4223)] = 152693, - [SMALL_STATE(4224)] = 152707, - [SMALL_STATE(4225)] = 152723, - [SMALL_STATE(4226)] = 152739, - [SMALL_STATE(4227)] = 152755, - [SMALL_STATE(4228)] = 152771, - [SMALL_STATE(4229)] = 152781, - [SMALL_STATE(4230)] = 152797, - [SMALL_STATE(4231)] = 152813, - [SMALL_STATE(4232)] = 152827, - [SMALL_STATE(4233)] = 152843, - [SMALL_STATE(4234)] = 152859, - [SMALL_STATE(4235)] = 152873, - [SMALL_STATE(4236)] = 152887, - [SMALL_STATE(4237)] = 152903, - [SMALL_STATE(4238)] = 152919, - [SMALL_STATE(4239)] = 152933, - [SMALL_STATE(4240)] = 152949, - [SMALL_STATE(4241)] = 152965, - [SMALL_STATE(4242)] = 152979, - [SMALL_STATE(4243)] = 152993, - [SMALL_STATE(4244)] = 153009, - [SMALL_STATE(4245)] = 153025, - [SMALL_STATE(4246)] = 153041, - [SMALL_STATE(4247)] = 153055, - [SMALL_STATE(4248)] = 153071, - [SMALL_STATE(4249)] = 153087, - [SMALL_STATE(4250)] = 153103, - [SMALL_STATE(4251)] = 153119, - [SMALL_STATE(4252)] = 153133, - [SMALL_STATE(4253)] = 153147, - [SMALL_STATE(4254)] = 153163, - [SMALL_STATE(4255)] = 153179, - [SMALL_STATE(4256)] = 153193, - [SMALL_STATE(4257)] = 153209, - [SMALL_STATE(4258)] = 153223, - [SMALL_STATE(4259)] = 153239, - [SMALL_STATE(4260)] = 153255, - [SMALL_STATE(4261)] = 153271, - [SMALL_STATE(4262)] = 153287, - [SMALL_STATE(4263)] = 153303, - [SMALL_STATE(4264)] = 153317, - [SMALL_STATE(4265)] = 153331, - [SMALL_STATE(4266)] = 153347, - [SMALL_STATE(4267)] = 153363, - [SMALL_STATE(4268)] = 153379, - [SMALL_STATE(4269)] = 153395, - [SMALL_STATE(4270)] = 153411, - [SMALL_STATE(4271)] = 153427, - [SMALL_STATE(4272)] = 153443, - [SMALL_STATE(4273)] = 153459, - [SMALL_STATE(4274)] = 153475, - [SMALL_STATE(4275)] = 153491, - [SMALL_STATE(4276)] = 153507, - [SMALL_STATE(4277)] = 153523, - [SMALL_STATE(4278)] = 153539, - [SMALL_STATE(4279)] = 153555, - [SMALL_STATE(4280)] = 153571, - [SMALL_STATE(4281)] = 153587, - [SMALL_STATE(4282)] = 153601, - [SMALL_STATE(4283)] = 153617, - [SMALL_STATE(4284)] = 153631, - [SMALL_STATE(4285)] = 153647, - [SMALL_STATE(4286)] = 153661, - [SMALL_STATE(4287)] = 153677, - [SMALL_STATE(4288)] = 153693, - [SMALL_STATE(4289)] = 153707, - [SMALL_STATE(4290)] = 153723, - [SMALL_STATE(4291)] = 153739, - [SMALL_STATE(4292)] = 153753, - [SMALL_STATE(4293)] = 153769, - [SMALL_STATE(4294)] = 153783, - [SMALL_STATE(4295)] = 153799, - [SMALL_STATE(4296)] = 153813, - [SMALL_STATE(4297)] = 153829, - [SMALL_STATE(4298)] = 153845, - [SMALL_STATE(4299)] = 153859, - [SMALL_STATE(4300)] = 153873, - [SMALL_STATE(4301)] = 153887, - [SMALL_STATE(4302)] = 153901, - [SMALL_STATE(4303)] = 153915, - [SMALL_STATE(4304)] = 153931, - [SMALL_STATE(4305)] = 153947, - [SMALL_STATE(4306)] = 153963, - [SMALL_STATE(4307)] = 153979, - [SMALL_STATE(4308)] = 153995, - [SMALL_STATE(4309)] = 154009, - [SMALL_STATE(4310)] = 154025, - [SMALL_STATE(4311)] = 154039, - [SMALL_STATE(4312)] = 154055, - [SMALL_STATE(4313)] = 154071, - [SMALL_STATE(4314)] = 154085, - [SMALL_STATE(4315)] = 154101, - [SMALL_STATE(4316)] = 154115, - [SMALL_STATE(4317)] = 154131, - [SMALL_STATE(4318)] = 154147, - [SMALL_STATE(4319)] = 154163, - [SMALL_STATE(4320)] = 154179, - [SMALL_STATE(4321)] = 154195, - [SMALL_STATE(4322)] = 154209, - [SMALL_STATE(4323)] = 154225, - [SMALL_STATE(4324)] = 154241, - [SMALL_STATE(4325)] = 154257, - [SMALL_STATE(4326)] = 154273, - [SMALL_STATE(4327)] = 154289, - [SMALL_STATE(4328)] = 154303, - [SMALL_STATE(4329)] = 154319, - [SMALL_STATE(4330)] = 154335, - [SMALL_STATE(4331)] = 154351, - [SMALL_STATE(4332)] = 154367, - [SMALL_STATE(4333)] = 154383, - [SMALL_STATE(4334)] = 154399, - [SMALL_STATE(4335)] = 154415, - [SMALL_STATE(4336)] = 154431, - [SMALL_STATE(4337)] = 154445, - [SMALL_STATE(4338)] = 154461, - [SMALL_STATE(4339)] = 154477, - [SMALL_STATE(4340)] = 154493, - [SMALL_STATE(4341)] = 154509, - [SMALL_STATE(4342)] = 154525, - [SMALL_STATE(4343)] = 154541, - [SMALL_STATE(4344)] = 154557, - [SMALL_STATE(4345)] = 154573, - [SMALL_STATE(4346)] = 154587, - [SMALL_STATE(4347)] = 154601, - [SMALL_STATE(4348)] = 154617, - [SMALL_STATE(4349)] = 154633, - [SMALL_STATE(4350)] = 154649, - [SMALL_STATE(4351)] = 154663, - [SMALL_STATE(4352)] = 154679, - [SMALL_STATE(4353)] = 154695, - [SMALL_STATE(4354)] = 154711, - [SMALL_STATE(4355)] = 154727, - [SMALL_STATE(4356)] = 154743, - [SMALL_STATE(4357)] = 154759, - [SMALL_STATE(4358)] = 154775, - [SMALL_STATE(4359)] = 154789, - [SMALL_STATE(4360)] = 154803, - [SMALL_STATE(4361)] = 154819, - [SMALL_STATE(4362)] = 154833, - [SMALL_STATE(4363)] = 154849, - [SMALL_STATE(4364)] = 154865, - [SMALL_STATE(4365)] = 154879, - [SMALL_STATE(4366)] = 154895, - [SMALL_STATE(4367)] = 154911, - [SMALL_STATE(4368)] = 154927, - [SMALL_STATE(4369)] = 154943, - [SMALL_STATE(4370)] = 154959, - [SMALL_STATE(4371)] = 154973, - [SMALL_STATE(4372)] = 154987, - [SMALL_STATE(4373)] = 155003, - [SMALL_STATE(4374)] = 155019, - [SMALL_STATE(4375)] = 155035, - [SMALL_STATE(4376)] = 155049, - [SMALL_STATE(4377)] = 155065, - [SMALL_STATE(4378)] = 155078, - [SMALL_STATE(4379)] = 155091, - [SMALL_STATE(4380)] = 155104, - [SMALL_STATE(4381)] = 155117, - [SMALL_STATE(4382)] = 155130, - [SMALL_STATE(4383)] = 155141, - [SMALL_STATE(4384)] = 155154, - [SMALL_STATE(4385)] = 155167, - [SMALL_STATE(4386)] = 155180, - [SMALL_STATE(4387)] = 155193, - [SMALL_STATE(4388)] = 155206, - [SMALL_STATE(4389)] = 155219, - [SMALL_STATE(4390)] = 155232, - [SMALL_STATE(4391)] = 155245, - [SMALL_STATE(4392)] = 155258, - [SMALL_STATE(4393)] = 155271, - [SMALL_STATE(4394)] = 155284, - [SMALL_STATE(4395)] = 155297, - [SMALL_STATE(4396)] = 155310, - [SMALL_STATE(4397)] = 155323, - [SMALL_STATE(4398)] = 155336, - [SMALL_STATE(4399)] = 155349, - [SMALL_STATE(4400)] = 155362, - [SMALL_STATE(4401)] = 155375, - [SMALL_STATE(4402)] = 155388, - [SMALL_STATE(4403)] = 155401, - [SMALL_STATE(4404)] = 155414, - [SMALL_STATE(4405)] = 155427, - [SMALL_STATE(4406)] = 155440, - [SMALL_STATE(4407)] = 155453, - [SMALL_STATE(4408)] = 155466, - [SMALL_STATE(4409)] = 155479, - [SMALL_STATE(4410)] = 155492, - [SMALL_STATE(4411)] = 155505, - [SMALL_STATE(4412)] = 155518, - [SMALL_STATE(4413)] = 155531, - [SMALL_STATE(4414)] = 155544, - [SMALL_STATE(4415)] = 155557, - [SMALL_STATE(4416)] = 155570, - [SMALL_STATE(4417)] = 155583, - [SMALL_STATE(4418)] = 155594, - [SMALL_STATE(4419)] = 155607, - [SMALL_STATE(4420)] = 155620, - [SMALL_STATE(4421)] = 155633, - [SMALL_STATE(4422)] = 155646, - [SMALL_STATE(4423)] = 155659, - [SMALL_STATE(4424)] = 155672, - [SMALL_STATE(4425)] = 155685, - [SMALL_STATE(4426)] = 155698, - [SMALL_STATE(4427)] = 155711, - [SMALL_STATE(4428)] = 155724, - [SMALL_STATE(4429)] = 155737, - [SMALL_STATE(4430)] = 155750, - [SMALL_STATE(4431)] = 155763, - [SMALL_STATE(4432)] = 155776, - [SMALL_STATE(4433)] = 155789, - [SMALL_STATE(4434)] = 155802, - [SMALL_STATE(4435)] = 155815, - [SMALL_STATE(4436)] = 155828, - [SMALL_STATE(4437)] = 155841, - [SMALL_STATE(4438)] = 155854, - [SMALL_STATE(4439)] = 155867, - [SMALL_STATE(4440)] = 155880, - [SMALL_STATE(4441)] = 155891, - [SMALL_STATE(4442)] = 155904, - [SMALL_STATE(4443)] = 155917, - [SMALL_STATE(4444)] = 155930, - [SMALL_STATE(4445)] = 155943, - [SMALL_STATE(4446)] = 155956, - [SMALL_STATE(4447)] = 155969, - [SMALL_STATE(4448)] = 155982, - [SMALL_STATE(4449)] = 155995, - [SMALL_STATE(4450)] = 156008, - [SMALL_STATE(4451)] = 156021, - [SMALL_STATE(4452)] = 156034, - [SMALL_STATE(4453)] = 156047, - [SMALL_STATE(4454)] = 156060, - [SMALL_STATE(4455)] = 156073, - [SMALL_STATE(4456)] = 156086, - [SMALL_STATE(4457)] = 156099, - [SMALL_STATE(4458)] = 156112, - [SMALL_STATE(4459)] = 156125, - [SMALL_STATE(4460)] = 156134, - [SMALL_STATE(4461)] = 156147, - [SMALL_STATE(4462)] = 156160, - [SMALL_STATE(4463)] = 156173, - [SMALL_STATE(4464)] = 156186, - [SMALL_STATE(4465)] = 156199, - [SMALL_STATE(4466)] = 156212, - [SMALL_STATE(4467)] = 156225, - [SMALL_STATE(4468)] = 156238, - [SMALL_STATE(4469)] = 156251, - [SMALL_STATE(4470)] = 156264, - [SMALL_STATE(4471)] = 156277, - [SMALL_STATE(4472)] = 156290, - [SMALL_STATE(4473)] = 156303, - [SMALL_STATE(4474)] = 156316, - [SMALL_STATE(4475)] = 156329, - [SMALL_STATE(4476)] = 156342, - [SMALL_STATE(4477)] = 156355, - [SMALL_STATE(4478)] = 156368, - [SMALL_STATE(4479)] = 156381, - [SMALL_STATE(4480)] = 156394, - [SMALL_STATE(4481)] = 156407, - [SMALL_STATE(4482)] = 156420, - [SMALL_STATE(4483)] = 156433, - [SMALL_STATE(4484)] = 156446, - [SMALL_STATE(4485)] = 156459, - [SMALL_STATE(4486)] = 156472, - [SMALL_STATE(4487)] = 156485, - [SMALL_STATE(4488)] = 156498, - [SMALL_STATE(4489)] = 156511, - [SMALL_STATE(4490)] = 156524, - [SMALL_STATE(4491)] = 156537, - [SMALL_STATE(4492)] = 156550, - [SMALL_STATE(4493)] = 156563, - [SMALL_STATE(4494)] = 156576, - [SMALL_STATE(4495)] = 156589, - [SMALL_STATE(4496)] = 156602, - [SMALL_STATE(4497)] = 156615, - [SMALL_STATE(4498)] = 156628, - [SMALL_STATE(4499)] = 156641, - [SMALL_STATE(4500)] = 156654, - [SMALL_STATE(4501)] = 156667, - [SMALL_STATE(4502)] = 156680, - [SMALL_STATE(4503)] = 156693, - [SMALL_STATE(4504)] = 156706, - [SMALL_STATE(4505)] = 156717, - [SMALL_STATE(4506)] = 156730, - [SMALL_STATE(4507)] = 156743, - [SMALL_STATE(4508)] = 156756, - [SMALL_STATE(4509)] = 156769, - [SMALL_STATE(4510)] = 156782, - [SMALL_STATE(4511)] = 156795, - [SMALL_STATE(4512)] = 156808, - [SMALL_STATE(4513)] = 156821, - [SMALL_STATE(4514)] = 156834, - [SMALL_STATE(4515)] = 156847, - [SMALL_STATE(4516)] = 156860, - [SMALL_STATE(4517)] = 156873, - [SMALL_STATE(4518)] = 156886, - [SMALL_STATE(4519)] = 156899, - [SMALL_STATE(4520)] = 156912, - [SMALL_STATE(4521)] = 156925, - [SMALL_STATE(4522)] = 156938, - [SMALL_STATE(4523)] = 156951, - [SMALL_STATE(4524)] = 156964, - [SMALL_STATE(4525)] = 156977, - [SMALL_STATE(4526)] = 156988, - [SMALL_STATE(4527)] = 157001, - [SMALL_STATE(4528)] = 157014, - [SMALL_STATE(4529)] = 157027, - [SMALL_STATE(4530)] = 157040, - [SMALL_STATE(4531)] = 157053, - [SMALL_STATE(4532)] = 157066, - [SMALL_STATE(4533)] = 157079, - [SMALL_STATE(4534)] = 157092, - [SMALL_STATE(4535)] = 157105, - [SMALL_STATE(4536)] = 157118, - [SMALL_STATE(4537)] = 157131, - [SMALL_STATE(4538)] = 157144, - [SMALL_STATE(4539)] = 157157, - [SMALL_STATE(4540)] = 157170, - [SMALL_STATE(4541)] = 157183, - [SMALL_STATE(4542)] = 157196, - [SMALL_STATE(4543)] = 157209, - [SMALL_STATE(4544)] = 157222, - [SMALL_STATE(4545)] = 157235, - [SMALL_STATE(4546)] = 157248, - [SMALL_STATE(4547)] = 157261, - [SMALL_STATE(4548)] = 157274, - [SMALL_STATE(4549)] = 157287, - [SMALL_STATE(4550)] = 157300, - [SMALL_STATE(4551)] = 157313, - [SMALL_STATE(4552)] = 157326, - [SMALL_STATE(4553)] = 157339, - [SMALL_STATE(4554)] = 157350, - [SMALL_STATE(4555)] = 157363, - [SMALL_STATE(4556)] = 157376, - [SMALL_STATE(4557)] = 157389, - [SMALL_STATE(4558)] = 157400, - [SMALL_STATE(4559)] = 157413, - [SMALL_STATE(4560)] = 157426, - [SMALL_STATE(4561)] = 157439, - [SMALL_STATE(4562)] = 157452, - [SMALL_STATE(4563)] = 157465, - [SMALL_STATE(4564)] = 157478, - [SMALL_STATE(4565)] = 157491, - [SMALL_STATE(4566)] = 157504, - [SMALL_STATE(4567)] = 157517, - [SMALL_STATE(4568)] = 157530, - [SMALL_STATE(4569)] = 157543, - [SMALL_STATE(4570)] = 157556, - [SMALL_STATE(4571)] = 157569, - [SMALL_STATE(4572)] = 157582, - [SMALL_STATE(4573)] = 157595, - [SMALL_STATE(4574)] = 157608, - [SMALL_STATE(4575)] = 157621, - [SMALL_STATE(4576)] = 157634, - [SMALL_STATE(4577)] = 157647, - [SMALL_STATE(4578)] = 157660, - [SMALL_STATE(4579)] = 157673, - [SMALL_STATE(4580)] = 157686, - [SMALL_STATE(4581)] = 157699, - [SMALL_STATE(4582)] = 157712, - [SMALL_STATE(4583)] = 157725, - [SMALL_STATE(4584)] = 157738, - [SMALL_STATE(4585)] = 157751, - [SMALL_STATE(4586)] = 157764, - [SMALL_STATE(4587)] = 157777, - [SMALL_STATE(4588)] = 157790, - [SMALL_STATE(4589)] = 157803, - [SMALL_STATE(4590)] = 157816, - [SMALL_STATE(4591)] = 157829, - [SMALL_STATE(4592)] = 157842, - [SMALL_STATE(4593)] = 157855, - [SMALL_STATE(4594)] = 157868, - [SMALL_STATE(4595)] = 157881, - [SMALL_STATE(4596)] = 157894, - [SMALL_STATE(4597)] = 157907, - [SMALL_STATE(4598)] = 157920, - [SMALL_STATE(4599)] = 157933, - [SMALL_STATE(4600)] = 157946, - [SMALL_STATE(4601)] = 157959, - [SMALL_STATE(4602)] = 157972, - [SMALL_STATE(4603)] = 157985, - [SMALL_STATE(4604)] = 157998, - [SMALL_STATE(4605)] = 158011, - [SMALL_STATE(4606)] = 158022, - [SMALL_STATE(4607)] = 158033, - [SMALL_STATE(4608)] = 158044, - [SMALL_STATE(4609)] = 158057, - [SMALL_STATE(4610)] = 158068, - [SMALL_STATE(4611)] = 158079, - [SMALL_STATE(4612)] = 158092, - [SMALL_STATE(4613)] = 158105, - [SMALL_STATE(4614)] = 158116, - [SMALL_STATE(4615)] = 158127, - [SMALL_STATE(4616)] = 158138, - [SMALL_STATE(4617)] = 158151, - [SMALL_STATE(4618)] = 158164, - [SMALL_STATE(4619)] = 158177, - [SMALL_STATE(4620)] = 158190, - [SMALL_STATE(4621)] = 158201, - [SMALL_STATE(4622)] = 158214, - [SMALL_STATE(4623)] = 158227, - [SMALL_STATE(4624)] = 158238, - [SMALL_STATE(4625)] = 158249, - [SMALL_STATE(4626)] = 158260, - [SMALL_STATE(4627)] = 158271, - [SMALL_STATE(4628)] = 158284, - [SMALL_STATE(4629)] = 158295, - [SMALL_STATE(4630)] = 158308, - [SMALL_STATE(4631)] = 158319, - [SMALL_STATE(4632)] = 158330, - [SMALL_STATE(4633)] = 158341, - [SMALL_STATE(4634)] = 158352, - [SMALL_STATE(4635)] = 158363, - [SMALL_STATE(4636)] = 158376, - [SMALL_STATE(4637)] = 158387, - [SMALL_STATE(4638)] = 158398, - [SMALL_STATE(4639)] = 158409, - [SMALL_STATE(4640)] = 158420, - [SMALL_STATE(4641)] = 158431, - [SMALL_STATE(4642)] = 158442, - [SMALL_STATE(4643)] = 158455, - [SMALL_STATE(4644)] = 158468, - [SMALL_STATE(4645)] = 158481, - [SMALL_STATE(4646)] = 158494, - [SMALL_STATE(4647)] = 158507, - [SMALL_STATE(4648)] = 158518, - [SMALL_STATE(4649)] = 158529, - [SMALL_STATE(4650)] = 158540, - [SMALL_STATE(4651)] = 158549, - [SMALL_STATE(4652)] = 158560, - [SMALL_STATE(4653)] = 158573, - [SMALL_STATE(4654)] = 158586, - [SMALL_STATE(4655)] = 158599, - [SMALL_STATE(4656)] = 158610, - [SMALL_STATE(4657)] = 158621, - [SMALL_STATE(4658)] = 158634, - [SMALL_STATE(4659)] = 158647, - [SMALL_STATE(4660)] = 158658, - [SMALL_STATE(4661)] = 158669, - [SMALL_STATE(4662)] = 158680, - [SMALL_STATE(4663)] = 158693, - [SMALL_STATE(4664)] = 158706, - [SMALL_STATE(4665)] = 158719, - [SMALL_STATE(4666)] = 158732, - [SMALL_STATE(4667)] = 158743, - [SMALL_STATE(4668)] = 158756, - [SMALL_STATE(4669)] = 158769, - [SMALL_STATE(4670)] = 158778, - [SMALL_STATE(4671)] = 158791, - [SMALL_STATE(4672)] = 158804, - [SMALL_STATE(4673)] = 158817, - [SMALL_STATE(4674)] = 158830, - [SMALL_STATE(4675)] = 158841, - [SMALL_STATE(4676)] = 158852, - [SMALL_STATE(4677)] = 158863, - [SMALL_STATE(4678)] = 158874, - [SMALL_STATE(4679)] = 158887, - [SMALL_STATE(4680)] = 158900, - [SMALL_STATE(4681)] = 158911, - [SMALL_STATE(4682)] = 158924, - [SMALL_STATE(4683)] = 158937, - [SMALL_STATE(4684)] = 158950, - [SMALL_STATE(4685)] = 158963, - [SMALL_STATE(4686)] = 158974, - [SMALL_STATE(4687)] = 158985, - [SMALL_STATE(4688)] = 158996, - [SMALL_STATE(4689)] = 159007, - [SMALL_STATE(4690)] = 159018, - [SMALL_STATE(4691)] = 159029, - [SMALL_STATE(4692)] = 159042, - [SMALL_STATE(4693)] = 159055, - [SMALL_STATE(4694)] = 159066, - [SMALL_STATE(4695)] = 159079, - [SMALL_STATE(4696)] = 159090, - [SMALL_STATE(4697)] = 159101, - [SMALL_STATE(4698)] = 159112, - [SMALL_STATE(4699)] = 159123, - [SMALL_STATE(4700)] = 159136, - [SMALL_STATE(4701)] = 159147, - [SMALL_STATE(4702)] = 159160, - [SMALL_STATE(4703)] = 159173, - [SMALL_STATE(4704)] = 159186, - [SMALL_STATE(4705)] = 159197, - [SMALL_STATE(4706)] = 159210, - [SMALL_STATE(4707)] = 159221, - [SMALL_STATE(4708)] = 159234, - [SMALL_STATE(4709)] = 159247, - [SMALL_STATE(4710)] = 159260, - [SMALL_STATE(4711)] = 159271, - [SMALL_STATE(4712)] = 159284, - [SMALL_STATE(4713)] = 159297, - [SMALL_STATE(4714)] = 159310, - [SMALL_STATE(4715)] = 159321, - [SMALL_STATE(4716)] = 159332, - [SMALL_STATE(4717)] = 159345, - [SMALL_STATE(4718)] = 159358, - [SMALL_STATE(4719)] = 159369, - [SMALL_STATE(4720)] = 159382, - [SMALL_STATE(4721)] = 159395, - [SMALL_STATE(4722)] = 159406, - [SMALL_STATE(4723)] = 159419, - [SMALL_STATE(4724)] = 159430, - [SMALL_STATE(4725)] = 159443, - [SMALL_STATE(4726)] = 159454, - [SMALL_STATE(4727)] = 159465, - [SMALL_STATE(4728)] = 159476, - [SMALL_STATE(4729)] = 159489, - [SMALL_STATE(4730)] = 159502, - [SMALL_STATE(4731)] = 159515, - [SMALL_STATE(4732)] = 159528, - [SMALL_STATE(4733)] = 159539, - [SMALL_STATE(4734)] = 159552, - [SMALL_STATE(4735)] = 159563, - [SMALL_STATE(4736)] = 159576, - [SMALL_STATE(4737)] = 159587, - [SMALL_STATE(4738)] = 159600, - [SMALL_STATE(4739)] = 159611, - [SMALL_STATE(4740)] = 159624, - [SMALL_STATE(4741)] = 159635, - [SMALL_STATE(4742)] = 159646, - [SMALL_STATE(4743)] = 159657, - [SMALL_STATE(4744)] = 159670, - [SMALL_STATE(4745)] = 159681, - [SMALL_STATE(4746)] = 159694, - [SMALL_STATE(4747)] = 159707, - [SMALL_STATE(4748)] = 159720, - [SMALL_STATE(4749)] = 159731, - [SMALL_STATE(4750)] = 159744, - [SMALL_STATE(4751)] = 159755, - [SMALL_STATE(4752)] = 159768, - [SMALL_STATE(4753)] = 159779, - [SMALL_STATE(4754)] = 159792, - [SMALL_STATE(4755)] = 159803, - [SMALL_STATE(4756)] = 159816, - [SMALL_STATE(4757)] = 159827, - [SMALL_STATE(4758)] = 159838, - [SMALL_STATE(4759)] = 159851, - [SMALL_STATE(4760)] = 159864, - [SMALL_STATE(4761)] = 159875, - [SMALL_STATE(4762)] = 159888, - [SMALL_STATE(4763)] = 159897, - [SMALL_STATE(4764)] = 159910, - [SMALL_STATE(4765)] = 159923, - [SMALL_STATE(4766)] = 159934, - [SMALL_STATE(4767)] = 159947, - [SMALL_STATE(4768)] = 159958, - [SMALL_STATE(4769)] = 159971, - [SMALL_STATE(4770)] = 159982, - [SMALL_STATE(4771)] = 159995, - [SMALL_STATE(4772)] = 160008, - [SMALL_STATE(4773)] = 160021, - [SMALL_STATE(4774)] = 160034, - [SMALL_STATE(4775)] = 160045, - [SMALL_STATE(4776)] = 160056, - [SMALL_STATE(4777)] = 160067, - [SMALL_STATE(4778)] = 160078, - [SMALL_STATE(4779)] = 160089, - [SMALL_STATE(4780)] = 160100, - [SMALL_STATE(4781)] = 160111, - [SMALL_STATE(4782)] = 160124, - [SMALL_STATE(4783)] = 160135, - [SMALL_STATE(4784)] = 160148, - [SMALL_STATE(4785)] = 160161, - [SMALL_STATE(4786)] = 160172, - [SMALL_STATE(4787)] = 160185, - [SMALL_STATE(4788)] = 160198, - [SMALL_STATE(4789)] = 160211, - [SMALL_STATE(4790)] = 160222, - [SMALL_STATE(4791)] = 160235, - [SMALL_STATE(4792)] = 160246, - [SMALL_STATE(4793)] = 160259, - [SMALL_STATE(4794)] = 160270, - [SMALL_STATE(4795)] = 160283, - [SMALL_STATE(4796)] = 160294, - [SMALL_STATE(4797)] = 160307, - [SMALL_STATE(4798)] = 160320, - [SMALL_STATE(4799)] = 160333, - [SMALL_STATE(4800)] = 160346, - [SMALL_STATE(4801)] = 160357, - [SMALL_STATE(4802)] = 160370, - [SMALL_STATE(4803)] = 160381, - [SMALL_STATE(4804)] = 160392, - [SMALL_STATE(4805)] = 160403, - [SMALL_STATE(4806)] = 160416, - [SMALL_STATE(4807)] = 160429, - [SMALL_STATE(4808)] = 160440, - [SMALL_STATE(4809)] = 160453, - [SMALL_STATE(4810)] = 160464, - [SMALL_STATE(4811)] = 160475, - [SMALL_STATE(4812)] = 160486, - [SMALL_STATE(4813)] = 160497, - [SMALL_STATE(4814)] = 160508, - [SMALL_STATE(4815)] = 160519, - [SMALL_STATE(4816)] = 160532, - [SMALL_STATE(4817)] = 160543, - [SMALL_STATE(4818)] = 160554, - [SMALL_STATE(4819)] = 160567, - [SMALL_STATE(4820)] = 160580, - [SMALL_STATE(4821)] = 160591, - [SMALL_STATE(4822)] = 160604, - [SMALL_STATE(4823)] = 160615, - [SMALL_STATE(4824)] = 160628, - [SMALL_STATE(4825)] = 160639, - [SMALL_STATE(4826)] = 160652, - [SMALL_STATE(4827)] = 160663, - [SMALL_STATE(4828)] = 160676, - [SMALL_STATE(4829)] = 160687, - [SMALL_STATE(4830)] = 160700, - [SMALL_STATE(4831)] = 160713, - [SMALL_STATE(4832)] = 160726, - [SMALL_STATE(4833)] = 160739, - [SMALL_STATE(4834)] = 160752, - [SMALL_STATE(4835)] = 160763, - [SMALL_STATE(4836)] = 160776, - [SMALL_STATE(4837)] = 160789, - [SMALL_STATE(4838)] = 160800, - [SMALL_STATE(4839)] = 160811, - [SMALL_STATE(4840)] = 160824, - [SMALL_STATE(4841)] = 160835, - [SMALL_STATE(4842)] = 160846, - [SMALL_STATE(4843)] = 160857, - [SMALL_STATE(4844)] = 160868, - [SMALL_STATE(4845)] = 160879, - [SMALL_STATE(4846)] = 160892, - [SMALL_STATE(4847)] = 160903, - [SMALL_STATE(4848)] = 160914, - [SMALL_STATE(4849)] = 160927, - [SMALL_STATE(4850)] = 160938, - [SMALL_STATE(4851)] = 160949, - [SMALL_STATE(4852)] = 160960, - [SMALL_STATE(4853)] = 160971, - [SMALL_STATE(4854)] = 160984, - [SMALL_STATE(4855)] = 160995, - [SMALL_STATE(4856)] = 161006, - [SMALL_STATE(4857)] = 161019, - [SMALL_STATE(4858)] = 161030, - [SMALL_STATE(4859)] = 161043, - [SMALL_STATE(4860)] = 161054, - [SMALL_STATE(4861)] = 161065, - [SMALL_STATE(4862)] = 161076, - [SMALL_STATE(4863)] = 161087, - [SMALL_STATE(4864)] = 161098, - [SMALL_STATE(4865)] = 161111, - [SMALL_STATE(4866)] = 161124, - [SMALL_STATE(4867)] = 161137, - [SMALL_STATE(4868)] = 161148, - [SMALL_STATE(4869)] = 161161, - [SMALL_STATE(4870)] = 161172, - [SMALL_STATE(4871)] = 161183, - [SMALL_STATE(4872)] = 161194, - [SMALL_STATE(4873)] = 161207, - [SMALL_STATE(4874)] = 161218, - [SMALL_STATE(4875)] = 161229, - [SMALL_STATE(4876)] = 161242, - [SMALL_STATE(4877)] = 161253, - [SMALL_STATE(4878)] = 161264, - [SMALL_STATE(4879)] = 161275, - [SMALL_STATE(4880)] = 161288, - [SMALL_STATE(4881)] = 161297, - [SMALL_STATE(4882)] = 161308, - [SMALL_STATE(4883)] = 161321, - [SMALL_STATE(4884)] = 161332, - [SMALL_STATE(4885)] = 161343, - [SMALL_STATE(4886)] = 161354, - [SMALL_STATE(4887)] = 161365, - [SMALL_STATE(4888)] = 161378, - [SMALL_STATE(4889)] = 161389, - [SMALL_STATE(4890)] = 161402, - [SMALL_STATE(4891)] = 161415, - [SMALL_STATE(4892)] = 161428, - [SMALL_STATE(4893)] = 161439, - [SMALL_STATE(4894)] = 161450, - [SMALL_STATE(4895)] = 161463, - [SMALL_STATE(4896)] = 161476, - [SMALL_STATE(4897)] = 161489, - [SMALL_STATE(4898)] = 161500, - [SMALL_STATE(4899)] = 161511, - [SMALL_STATE(4900)] = 161520, - [SMALL_STATE(4901)] = 161533, - [SMALL_STATE(4902)] = 161546, - [SMALL_STATE(4903)] = 161559, - [SMALL_STATE(4904)] = 161570, - [SMALL_STATE(4905)] = 161583, - [SMALL_STATE(4906)] = 161596, - [SMALL_STATE(4907)] = 161609, - [SMALL_STATE(4908)] = 161622, - [SMALL_STATE(4909)] = 161635, - [SMALL_STATE(4910)] = 161648, - [SMALL_STATE(4911)] = 161659, - [SMALL_STATE(4912)] = 161670, - [SMALL_STATE(4913)] = 161683, - [SMALL_STATE(4914)] = 161694, - [SMALL_STATE(4915)] = 161705, - [SMALL_STATE(4916)] = 161716, - [SMALL_STATE(4917)] = 161729, - [SMALL_STATE(4918)] = 161740, - [SMALL_STATE(4919)] = 161751, - [SMALL_STATE(4920)] = 161764, - [SMALL_STATE(4921)] = 161775, - [SMALL_STATE(4922)] = 161786, - [SMALL_STATE(4923)] = 161797, - [SMALL_STATE(4924)] = 161808, - [SMALL_STATE(4925)] = 161819, - [SMALL_STATE(4926)] = 161830, - [SMALL_STATE(4927)] = 161841, - [SMALL_STATE(4928)] = 161852, - [SMALL_STATE(4929)] = 161863, - [SMALL_STATE(4930)] = 161874, - [SMALL_STATE(4931)] = 161885, - [SMALL_STATE(4932)] = 161898, - [SMALL_STATE(4933)] = 161909, - [SMALL_STATE(4934)] = 161922, - [SMALL_STATE(4935)] = 161935, - [SMALL_STATE(4936)] = 161946, - [SMALL_STATE(4937)] = 161959, - [SMALL_STATE(4938)] = 161972, - [SMALL_STATE(4939)] = 161985, - [SMALL_STATE(4940)] = 161998, - [SMALL_STATE(4941)] = 162011, - [SMALL_STATE(4942)] = 162024, - [SMALL_STATE(4943)] = 162037, - [SMALL_STATE(4944)] = 162050, - [SMALL_STATE(4945)] = 162063, - [SMALL_STATE(4946)] = 162076, - [SMALL_STATE(4947)] = 162089, - [SMALL_STATE(4948)] = 162102, - [SMALL_STATE(4949)] = 162115, - [SMALL_STATE(4950)] = 162128, - [SMALL_STATE(4951)] = 162139, - [SMALL_STATE(4952)] = 162152, - [SMALL_STATE(4953)] = 162165, - [SMALL_STATE(4954)] = 162178, - [SMALL_STATE(4955)] = 162191, - [SMALL_STATE(4956)] = 162204, - [SMALL_STATE(4957)] = 162217, - [SMALL_STATE(4958)] = 162230, - [SMALL_STATE(4959)] = 162243, - [SMALL_STATE(4960)] = 162254, - [SMALL_STATE(4961)] = 162267, - [SMALL_STATE(4962)] = 162280, - [SMALL_STATE(4963)] = 162293, - [SMALL_STATE(4964)] = 162306, - [SMALL_STATE(4965)] = 162317, - [SMALL_STATE(4966)] = 162330, - [SMALL_STATE(4967)] = 162343, - [SMALL_STATE(4968)] = 162356, - [SMALL_STATE(4969)] = 162369, - [SMALL_STATE(4970)] = 162382, - [SMALL_STATE(4971)] = 162393, - [SMALL_STATE(4972)] = 162406, - [SMALL_STATE(4973)] = 162419, - [SMALL_STATE(4974)] = 162432, - [SMALL_STATE(4975)] = 162443, - [SMALL_STATE(4976)] = 162456, - [SMALL_STATE(4977)] = 162469, - [SMALL_STATE(4978)] = 162482, - [SMALL_STATE(4979)] = 162495, - [SMALL_STATE(4980)] = 162508, - [SMALL_STATE(4981)] = 162521, - [SMALL_STATE(4982)] = 162534, - [SMALL_STATE(4983)] = 162547, - [SMALL_STATE(4984)] = 162558, - [SMALL_STATE(4985)] = 162571, - [SMALL_STATE(4986)] = 162584, - [SMALL_STATE(4987)] = 162597, - [SMALL_STATE(4988)] = 162610, - [SMALL_STATE(4989)] = 162623, - [SMALL_STATE(4990)] = 162636, - [SMALL_STATE(4991)] = 162647, - [SMALL_STATE(4992)] = 162660, - [SMALL_STATE(4993)] = 162673, - [SMALL_STATE(4994)] = 162686, - [SMALL_STATE(4995)] = 162699, - [SMALL_STATE(4996)] = 162710, - [SMALL_STATE(4997)] = 162721, - [SMALL_STATE(4998)] = 162734, - [SMALL_STATE(4999)] = 162747, - [SMALL_STATE(5000)] = 162758, - [SMALL_STATE(5001)] = 162769, - [SMALL_STATE(5002)] = 162780, - [SMALL_STATE(5003)] = 162791, - [SMALL_STATE(5004)] = 162804, - [SMALL_STATE(5005)] = 162817, - [SMALL_STATE(5006)] = 162830, - [SMALL_STATE(5007)] = 162841, - [SMALL_STATE(5008)] = 162854, - [SMALL_STATE(5009)] = 162867, - [SMALL_STATE(5010)] = 162880, - [SMALL_STATE(5011)] = 162893, - [SMALL_STATE(5012)] = 162906, - [SMALL_STATE(5013)] = 162919, - [SMALL_STATE(5014)] = 162932, - [SMALL_STATE(5015)] = 162945, - [SMALL_STATE(5016)] = 162958, - [SMALL_STATE(5017)] = 162971, - [SMALL_STATE(5018)] = 162984, - [SMALL_STATE(5019)] = 162997, - [SMALL_STATE(5020)] = 163008, - [SMALL_STATE(5021)] = 163021, - [SMALL_STATE(5022)] = 163034, - [SMALL_STATE(5023)] = 163047, - [SMALL_STATE(5024)] = 163060, - [SMALL_STATE(5025)] = 163073, - [SMALL_STATE(5026)] = 163086, - [SMALL_STATE(5027)] = 163097, - [SMALL_STATE(5028)] = 163110, - [SMALL_STATE(5029)] = 163123, - [SMALL_STATE(5030)] = 163134, - [SMALL_STATE(5031)] = 163147, - [SMALL_STATE(5032)] = 163160, - [SMALL_STATE(5033)] = 163173, - [SMALL_STATE(5034)] = 163186, - [SMALL_STATE(5035)] = 163199, - [SMALL_STATE(5036)] = 163212, - [SMALL_STATE(5037)] = 163223, - [SMALL_STATE(5038)] = 163236, - [SMALL_STATE(5039)] = 163249, - [SMALL_STATE(5040)] = 163262, - [SMALL_STATE(5041)] = 163273, - [SMALL_STATE(5042)] = 163286, - [SMALL_STATE(5043)] = 163299, - [SMALL_STATE(5044)] = 163312, - [SMALL_STATE(5045)] = 163325, - [SMALL_STATE(5046)] = 163338, - [SMALL_STATE(5047)] = 163351, - [SMALL_STATE(5048)] = 163362, - [SMALL_STATE(5049)] = 163375, - [SMALL_STATE(5050)] = 163388, - [SMALL_STATE(5051)] = 163401, - [SMALL_STATE(5052)] = 163414, - [SMALL_STATE(5053)] = 163427, - [SMALL_STATE(5054)] = 163440, - [SMALL_STATE(5055)] = 163453, - [SMALL_STATE(5056)] = 163466, - [SMALL_STATE(5057)] = 163479, - [SMALL_STATE(5058)] = 163490, - [SMALL_STATE(5059)] = 163503, - [SMALL_STATE(5060)] = 163514, - [SMALL_STATE(5061)] = 163527, - [SMALL_STATE(5062)] = 163540, - [SMALL_STATE(5063)] = 163553, - [SMALL_STATE(5064)] = 163566, - [SMALL_STATE(5065)] = 163579, - [SMALL_STATE(5066)] = 163592, - [SMALL_STATE(5067)] = 163605, - [SMALL_STATE(5068)] = 163618, - [SMALL_STATE(5069)] = 163629, - [SMALL_STATE(5070)] = 163642, - [SMALL_STATE(5071)] = 163655, - [SMALL_STATE(5072)] = 163668, - [SMALL_STATE(5073)] = 163681, - [SMALL_STATE(5074)] = 163694, - [SMALL_STATE(5075)] = 163707, - [SMALL_STATE(5076)] = 163720, - [SMALL_STATE(5077)] = 163733, - [SMALL_STATE(5078)] = 163746, - [SMALL_STATE(5079)] = 163759, - [SMALL_STATE(5080)] = 163772, - [SMALL_STATE(5081)] = 163783, - [SMALL_STATE(5082)] = 163794, - [SMALL_STATE(5083)] = 163807, - [SMALL_STATE(5084)] = 163820, - [SMALL_STATE(5085)] = 163833, - [SMALL_STATE(5086)] = 163846, - [SMALL_STATE(5087)] = 163859, - [SMALL_STATE(5088)] = 163872, - [SMALL_STATE(5089)] = 163885, - [SMALL_STATE(5090)] = 163898, - [SMALL_STATE(5091)] = 163911, - [SMALL_STATE(5092)] = 163924, - [SMALL_STATE(5093)] = 163937, - [SMALL_STATE(5094)] = 163950, - [SMALL_STATE(5095)] = 163961, - [SMALL_STATE(5096)] = 163974, - [SMALL_STATE(5097)] = 163987, - [SMALL_STATE(5098)] = 164000, - [SMALL_STATE(5099)] = 164011, - [SMALL_STATE(5100)] = 164022, - [SMALL_STATE(5101)] = 164033, - [SMALL_STATE(5102)] = 164046, - [SMALL_STATE(5103)] = 164059, - [SMALL_STATE(5104)] = 164072, - [SMALL_STATE(5105)] = 164085, - [SMALL_STATE(5106)] = 164098, - [SMALL_STATE(5107)] = 164111, - [SMALL_STATE(5108)] = 164124, - [SMALL_STATE(5109)] = 164137, - [SMALL_STATE(5110)] = 164150, - [SMALL_STATE(5111)] = 164163, - [SMALL_STATE(5112)] = 164174, - [SMALL_STATE(5113)] = 164187, - [SMALL_STATE(5114)] = 164200, - [SMALL_STATE(5115)] = 164213, - [SMALL_STATE(5116)] = 164226, - [SMALL_STATE(5117)] = 164239, - [SMALL_STATE(5118)] = 164252, - [SMALL_STATE(5119)] = 164265, - [SMALL_STATE(5120)] = 164278, - [SMALL_STATE(5121)] = 164291, - [SMALL_STATE(5122)] = 164304, - [SMALL_STATE(5123)] = 164317, - [SMALL_STATE(5124)] = 164330, - [SMALL_STATE(5125)] = 164343, - [SMALL_STATE(5126)] = 164356, - [SMALL_STATE(5127)] = 164369, - [SMALL_STATE(5128)] = 164382, - [SMALL_STATE(5129)] = 164395, - [SMALL_STATE(5130)] = 164408, - [SMALL_STATE(5131)] = 164421, - [SMALL_STATE(5132)] = 164434, - [SMALL_STATE(5133)] = 164445, - [SMALL_STATE(5134)] = 164458, - [SMALL_STATE(5135)] = 164471, - [SMALL_STATE(5136)] = 164484, - [SMALL_STATE(5137)] = 164497, - [SMALL_STATE(5138)] = 164510, - [SMALL_STATE(5139)] = 164523, - [SMALL_STATE(5140)] = 164534, - [SMALL_STATE(5141)] = 164542, - [SMALL_STATE(5142)] = 164552, - [SMALL_STATE(5143)] = 164562, - [SMALL_STATE(5144)] = 164572, - [SMALL_STATE(5145)] = 164582, - [SMALL_STATE(5146)] = 164592, - [SMALL_STATE(5147)] = 164600, - [SMALL_STATE(5148)] = 164610, - [SMALL_STATE(5149)] = 164620, - [SMALL_STATE(5150)] = 164630, - [SMALL_STATE(5151)] = 164640, - [SMALL_STATE(5152)] = 164650, - [SMALL_STATE(5153)] = 164660, - [SMALL_STATE(5154)] = 164670, - [SMALL_STATE(5155)] = 164680, - [SMALL_STATE(5156)] = 164690, - [SMALL_STATE(5157)] = 164700, - [SMALL_STATE(5158)] = 164710, - [SMALL_STATE(5159)] = 164720, - [SMALL_STATE(5160)] = 164730, - [SMALL_STATE(5161)] = 164740, - [SMALL_STATE(5162)] = 164750, - [SMALL_STATE(5163)] = 164760, - [SMALL_STATE(5164)] = 164770, - [SMALL_STATE(5165)] = 164780, - [SMALL_STATE(5166)] = 164788, - [SMALL_STATE(5167)] = 164796, - [SMALL_STATE(5168)] = 164806, - [SMALL_STATE(5169)] = 164816, - [SMALL_STATE(5170)] = 164826, - [SMALL_STATE(5171)] = 164836, - [SMALL_STATE(5172)] = 164846, - [SMALL_STATE(5173)] = 164856, - [SMALL_STATE(5174)] = 164866, - [SMALL_STATE(5175)] = 164876, - [SMALL_STATE(5176)] = 164884, - [SMALL_STATE(5177)] = 164894, - [SMALL_STATE(5178)] = 164904, - [SMALL_STATE(5179)] = 164914, - [SMALL_STATE(5180)] = 164922, - [SMALL_STATE(5181)] = 164930, - [SMALL_STATE(5182)] = 164940, - [SMALL_STATE(5183)] = 164950, - [SMALL_STATE(5184)] = 164958, - [SMALL_STATE(5185)] = 164966, - [SMALL_STATE(5186)] = 164976, - [SMALL_STATE(5187)] = 164986, - [SMALL_STATE(5188)] = 164994, - [SMALL_STATE(5189)] = 165002, - [SMALL_STATE(5190)] = 165012, - [SMALL_STATE(5191)] = 165022, - [SMALL_STATE(5192)] = 165032, - [SMALL_STATE(5193)] = 165042, - [SMALL_STATE(5194)] = 165052, - [SMALL_STATE(5195)] = 165062, - [SMALL_STATE(5196)] = 165072, - [SMALL_STATE(5197)] = 165082, - [SMALL_STATE(5198)] = 165092, - [SMALL_STATE(5199)] = 165102, - [SMALL_STATE(5200)] = 165112, - [SMALL_STATE(5201)] = 165122, - [SMALL_STATE(5202)] = 165132, - [SMALL_STATE(5203)] = 165142, - [SMALL_STATE(5204)] = 165152, - [SMALL_STATE(5205)] = 165162, - [SMALL_STATE(5206)] = 165172, - [SMALL_STATE(5207)] = 165182, - [SMALL_STATE(5208)] = 165192, - [SMALL_STATE(5209)] = 165202, - [SMALL_STATE(5210)] = 165212, - [SMALL_STATE(5211)] = 165222, - [SMALL_STATE(5212)] = 165230, - [SMALL_STATE(5213)] = 165240, - [SMALL_STATE(5214)] = 165250, - [SMALL_STATE(5215)] = 165260, - [SMALL_STATE(5216)] = 165270, - [SMALL_STATE(5217)] = 165278, - [SMALL_STATE(5218)] = 165288, - [SMALL_STATE(5219)] = 165298, - [SMALL_STATE(5220)] = 165308, - [SMALL_STATE(5221)] = 165316, - [SMALL_STATE(5222)] = 165326, - [SMALL_STATE(5223)] = 165334, - [SMALL_STATE(5224)] = 165344, - [SMALL_STATE(5225)] = 165354, - [SMALL_STATE(5226)] = 165364, - [SMALL_STATE(5227)] = 165374, - [SMALL_STATE(5228)] = 165384, - [SMALL_STATE(5229)] = 165394, - [SMALL_STATE(5230)] = 165402, - [SMALL_STATE(5231)] = 165412, - [SMALL_STATE(5232)] = 165422, - [SMALL_STATE(5233)] = 165432, - [SMALL_STATE(5234)] = 165442, - [SMALL_STATE(5235)] = 165452, - [SMALL_STATE(5236)] = 165462, - [SMALL_STATE(5237)] = 165472, - [SMALL_STATE(5238)] = 165482, - [SMALL_STATE(5239)] = 165492, - [SMALL_STATE(5240)] = 165502, - [SMALL_STATE(5241)] = 165512, - [SMALL_STATE(5242)] = 165522, - [SMALL_STATE(5243)] = 165532, - [SMALL_STATE(5244)] = 165542, - [SMALL_STATE(5245)] = 165552, - [SMALL_STATE(5246)] = 165562, - [SMALL_STATE(5247)] = 165572, - [SMALL_STATE(5248)] = 165582, - [SMALL_STATE(5249)] = 165590, - [SMALL_STATE(5250)] = 165600, - [SMALL_STATE(5251)] = 165610, - [SMALL_STATE(5252)] = 165620, - [SMALL_STATE(5253)] = 165630, - [SMALL_STATE(5254)] = 165640, - [SMALL_STATE(5255)] = 165650, - [SMALL_STATE(5256)] = 165660, - [SMALL_STATE(5257)] = 165670, - [SMALL_STATE(5258)] = 165680, - [SMALL_STATE(5259)] = 165690, - [SMALL_STATE(5260)] = 165700, - [SMALL_STATE(5261)] = 165710, - [SMALL_STATE(5262)] = 165720, - [SMALL_STATE(5263)] = 165730, - [SMALL_STATE(5264)] = 165740, - [SMALL_STATE(5265)] = 165750, - [SMALL_STATE(5266)] = 165760, - [SMALL_STATE(5267)] = 165770, - [SMALL_STATE(5268)] = 165780, - [SMALL_STATE(5269)] = 165790, - [SMALL_STATE(5270)] = 165800, - [SMALL_STATE(5271)] = 165810, - [SMALL_STATE(5272)] = 165820, - [SMALL_STATE(5273)] = 165830, - [SMALL_STATE(5274)] = 165840, - [SMALL_STATE(5275)] = 165848, - [SMALL_STATE(5276)] = 165858, - [SMALL_STATE(5277)] = 165868, - [SMALL_STATE(5278)] = 165878, - [SMALL_STATE(5279)] = 165888, - [SMALL_STATE(5280)] = 165898, - [SMALL_STATE(5281)] = 165908, - [SMALL_STATE(5282)] = 165918, - [SMALL_STATE(5283)] = 165928, - [SMALL_STATE(5284)] = 165938, - [SMALL_STATE(5285)] = 165948, - [SMALL_STATE(5286)] = 165958, - [SMALL_STATE(5287)] = 165968, - [SMALL_STATE(5288)] = 165978, - [SMALL_STATE(5289)] = 165988, - [SMALL_STATE(5290)] = 165996, - [SMALL_STATE(5291)] = 166004, - [SMALL_STATE(5292)] = 166014, - [SMALL_STATE(5293)] = 166024, - [SMALL_STATE(5294)] = 166034, - [SMALL_STATE(5295)] = 166044, - [SMALL_STATE(5296)] = 166054, - [SMALL_STATE(5297)] = 166064, - [SMALL_STATE(5298)] = 166074, - [SMALL_STATE(5299)] = 166084, - [SMALL_STATE(5300)] = 166094, - [SMALL_STATE(5301)] = 166102, - [SMALL_STATE(5302)] = 166112, - [SMALL_STATE(5303)] = 166122, - [SMALL_STATE(5304)] = 166132, - [SMALL_STATE(5305)] = 166142, - [SMALL_STATE(5306)] = 166150, - [SMALL_STATE(5307)] = 166158, - [SMALL_STATE(5308)] = 166168, - [SMALL_STATE(5309)] = 166178, - [SMALL_STATE(5310)] = 166188, - [SMALL_STATE(5311)] = 166198, - [SMALL_STATE(5312)] = 166208, - [SMALL_STATE(5313)] = 166218, - [SMALL_STATE(5314)] = 166228, - [SMALL_STATE(5315)] = 166238, - [SMALL_STATE(5316)] = 166246, - [SMALL_STATE(5317)] = 166256, - [SMALL_STATE(5318)] = 166264, - [SMALL_STATE(5319)] = 166272, - [SMALL_STATE(5320)] = 166282, - [SMALL_STATE(5321)] = 166290, - [SMALL_STATE(5322)] = 166300, - [SMALL_STATE(5323)] = 166310, - [SMALL_STATE(5324)] = 166320, - [SMALL_STATE(5325)] = 166330, - [SMALL_STATE(5326)] = 166340, - [SMALL_STATE(5327)] = 166348, - [SMALL_STATE(5328)] = 166358, - [SMALL_STATE(5329)] = 166368, - [SMALL_STATE(5330)] = 166378, - [SMALL_STATE(5331)] = 166388, - [SMALL_STATE(5332)] = 166396, - [SMALL_STATE(5333)] = 166406, - [SMALL_STATE(5334)] = 166416, - [SMALL_STATE(5335)] = 166426, - [SMALL_STATE(5336)] = 166436, - [SMALL_STATE(5337)] = 166446, - [SMALL_STATE(5338)] = 166456, - [SMALL_STATE(5339)] = 166466, - [SMALL_STATE(5340)] = 166476, - [SMALL_STATE(5341)] = 166486, - [SMALL_STATE(5342)] = 166496, - [SMALL_STATE(5343)] = 166506, - [SMALL_STATE(5344)] = 166516, - [SMALL_STATE(5345)] = 166526, - [SMALL_STATE(5346)] = 166536, - [SMALL_STATE(5347)] = 166546, - [SMALL_STATE(5348)] = 166556, - [SMALL_STATE(5349)] = 166566, - [SMALL_STATE(5350)] = 166574, - [SMALL_STATE(5351)] = 166582, - [SMALL_STATE(5352)] = 166592, - [SMALL_STATE(5353)] = 166602, - [SMALL_STATE(5354)] = 166612, - [SMALL_STATE(5355)] = 166622, - [SMALL_STATE(5356)] = 166632, - [SMALL_STATE(5357)] = 166642, - [SMALL_STATE(5358)] = 166650, - [SMALL_STATE(5359)] = 166660, - [SMALL_STATE(5360)] = 166670, - [SMALL_STATE(5361)] = 166680, - [SMALL_STATE(5362)] = 166690, - [SMALL_STATE(5363)] = 166700, - [SMALL_STATE(5364)] = 166710, - [SMALL_STATE(5365)] = 166720, - [SMALL_STATE(5366)] = 166730, - [SMALL_STATE(5367)] = 166740, - [SMALL_STATE(5368)] = 166750, - [SMALL_STATE(5369)] = 166760, - [SMALL_STATE(5370)] = 166770, - [SMALL_STATE(5371)] = 166778, - [SMALL_STATE(5372)] = 166788, - [SMALL_STATE(5373)] = 166798, - [SMALL_STATE(5374)] = 166808, - [SMALL_STATE(5375)] = 166818, - [SMALL_STATE(5376)] = 166828, - [SMALL_STATE(5377)] = 166838, - [SMALL_STATE(5378)] = 166848, - [SMALL_STATE(5379)] = 166858, - [SMALL_STATE(5380)] = 166868, - [SMALL_STATE(5381)] = 166878, - [SMALL_STATE(5382)] = 166888, - [SMALL_STATE(5383)] = 166898, - [SMALL_STATE(5384)] = 166906, - [SMALL_STATE(5385)] = 166916, - [SMALL_STATE(5386)] = 166926, - [SMALL_STATE(5387)] = 166934, - [SMALL_STATE(5388)] = 166944, - [SMALL_STATE(5389)] = 166952, - [SMALL_STATE(5390)] = 166962, - [SMALL_STATE(5391)] = 166972, - [SMALL_STATE(5392)] = 166982, - [SMALL_STATE(5393)] = 166992, - [SMALL_STATE(5394)] = 167002, - [SMALL_STATE(5395)] = 167012, - [SMALL_STATE(5396)] = 167022, - [SMALL_STATE(5397)] = 167032, - [SMALL_STATE(5398)] = 167042, - [SMALL_STATE(5399)] = 167052, - [SMALL_STATE(5400)] = 167060, - [SMALL_STATE(5401)] = 167070, - [SMALL_STATE(5402)] = 167078, - [SMALL_STATE(5403)] = 167088, - [SMALL_STATE(5404)] = 167098, - [SMALL_STATE(5405)] = 167106, - [SMALL_STATE(5406)] = 167116, - [SMALL_STATE(5407)] = 167126, - [SMALL_STATE(5408)] = 167136, - [SMALL_STATE(5409)] = 167146, - [SMALL_STATE(5410)] = 167156, - [SMALL_STATE(5411)] = 167166, - [SMALL_STATE(5412)] = 167176, - [SMALL_STATE(5413)] = 167186, - [SMALL_STATE(5414)] = 167196, - [SMALL_STATE(5415)] = 167206, - [SMALL_STATE(5416)] = 167216, - [SMALL_STATE(5417)] = 167226, - [SMALL_STATE(5418)] = 167236, - [SMALL_STATE(5419)] = 167246, - [SMALL_STATE(5420)] = 167256, - [SMALL_STATE(5421)] = 167266, - [SMALL_STATE(5422)] = 167276, - [SMALL_STATE(5423)] = 167286, - [SMALL_STATE(5424)] = 167294, - [SMALL_STATE(5425)] = 167304, - [SMALL_STATE(5426)] = 167314, - [SMALL_STATE(5427)] = 167324, - [SMALL_STATE(5428)] = 167334, - [SMALL_STATE(5429)] = 167344, - [SMALL_STATE(5430)] = 167354, - [SMALL_STATE(5431)] = 167364, - [SMALL_STATE(5432)] = 167374, - [SMALL_STATE(5433)] = 167384, - [SMALL_STATE(5434)] = 167394, - [SMALL_STATE(5435)] = 167404, - [SMALL_STATE(5436)] = 167414, - [SMALL_STATE(5437)] = 167424, - [SMALL_STATE(5438)] = 167434, - [SMALL_STATE(5439)] = 167444, - [SMALL_STATE(5440)] = 167452, - [SMALL_STATE(5441)] = 167462, - [SMALL_STATE(5442)] = 167472, - [SMALL_STATE(5443)] = 167482, - [SMALL_STATE(5444)] = 167492, - [SMALL_STATE(5445)] = 167502, - [SMALL_STATE(5446)] = 167512, - [SMALL_STATE(5447)] = 167522, - [SMALL_STATE(5448)] = 167532, - [SMALL_STATE(5449)] = 167542, - [SMALL_STATE(5450)] = 167552, - [SMALL_STATE(5451)] = 167560, - [SMALL_STATE(5452)] = 167570, - [SMALL_STATE(5453)] = 167580, - [SMALL_STATE(5454)] = 167590, - [SMALL_STATE(5455)] = 167600, - [SMALL_STATE(5456)] = 167610, - [SMALL_STATE(5457)] = 167620, - [SMALL_STATE(5458)] = 167630, - [SMALL_STATE(5459)] = 167640, - [SMALL_STATE(5460)] = 167650, - [SMALL_STATE(5461)] = 167660, - [SMALL_STATE(5462)] = 167670, - [SMALL_STATE(5463)] = 167680, - [SMALL_STATE(5464)] = 167690, - [SMALL_STATE(5465)] = 167700, - [SMALL_STATE(5466)] = 167710, - [SMALL_STATE(5467)] = 167720, - [SMALL_STATE(5468)] = 167730, - [SMALL_STATE(5469)] = 167740, - [SMALL_STATE(5470)] = 167750, - [SMALL_STATE(5471)] = 167760, - [SMALL_STATE(5472)] = 167770, - [SMALL_STATE(5473)] = 167780, - [SMALL_STATE(5474)] = 167788, - [SMALL_STATE(5475)] = 167798, - [SMALL_STATE(5476)] = 167808, - [SMALL_STATE(5477)] = 167818, - [SMALL_STATE(5478)] = 167828, - [SMALL_STATE(5479)] = 167838, - [SMALL_STATE(5480)] = 167848, - [SMALL_STATE(5481)] = 167858, - [SMALL_STATE(5482)] = 167868, - [SMALL_STATE(5483)] = 167878, - [SMALL_STATE(5484)] = 167886, - [SMALL_STATE(5485)] = 167896, - [SMALL_STATE(5486)] = 167906, - [SMALL_STATE(5487)] = 167916, - [SMALL_STATE(5488)] = 167926, - [SMALL_STATE(5489)] = 167936, - [SMALL_STATE(5490)] = 167944, - [SMALL_STATE(5491)] = 167954, - [SMALL_STATE(5492)] = 167962, - [SMALL_STATE(5493)] = 167972, - [SMALL_STATE(5494)] = 167982, - [SMALL_STATE(5495)] = 167992, - [SMALL_STATE(5496)] = 168002, - [SMALL_STATE(5497)] = 168012, - [SMALL_STATE(5498)] = 168022, - [SMALL_STATE(5499)] = 168032, - [SMALL_STATE(5500)] = 168042, - [SMALL_STATE(5501)] = 168052, - [SMALL_STATE(5502)] = 168062, - [SMALL_STATE(5503)] = 168072, - [SMALL_STATE(5504)] = 168082, - [SMALL_STATE(5505)] = 168092, - [SMALL_STATE(5506)] = 168102, - [SMALL_STATE(5507)] = 168110, - [SMALL_STATE(5508)] = 168120, - [SMALL_STATE(5509)] = 168130, - [SMALL_STATE(5510)] = 168140, - [SMALL_STATE(5511)] = 168150, - [SMALL_STATE(5512)] = 168160, - [SMALL_STATE(5513)] = 168170, - [SMALL_STATE(5514)] = 168180, - [SMALL_STATE(5515)] = 168190, - [SMALL_STATE(5516)] = 168198, - [SMALL_STATE(5517)] = 168208, - [SMALL_STATE(5518)] = 168218, - [SMALL_STATE(5519)] = 168226, - [SMALL_STATE(5520)] = 168236, - [SMALL_STATE(5521)] = 168246, - [SMALL_STATE(5522)] = 168256, - [SMALL_STATE(5523)] = 168266, - [SMALL_STATE(5524)] = 168276, - [SMALL_STATE(5525)] = 168286, - [SMALL_STATE(5526)] = 168296, - [SMALL_STATE(5527)] = 168306, - [SMALL_STATE(5528)] = 168316, - [SMALL_STATE(5529)] = 168326, - [SMALL_STATE(5530)] = 168334, - [SMALL_STATE(5531)] = 168344, - [SMALL_STATE(5532)] = 168354, - [SMALL_STATE(5533)] = 168364, - [SMALL_STATE(5534)] = 168374, - [SMALL_STATE(5535)] = 168382, - [SMALL_STATE(5536)] = 168392, - [SMALL_STATE(5537)] = 168402, - [SMALL_STATE(5538)] = 168412, - [SMALL_STATE(5539)] = 168422, - [SMALL_STATE(5540)] = 168432, - [SMALL_STATE(5541)] = 168442, - [SMALL_STATE(5542)] = 168452, - [SMALL_STATE(5543)] = 168462, - [SMALL_STATE(5544)] = 168472, - [SMALL_STATE(5545)] = 168482, - [SMALL_STATE(5546)] = 168492, - [SMALL_STATE(5547)] = 168502, - [SMALL_STATE(5548)] = 168512, - [SMALL_STATE(5549)] = 168522, - [SMALL_STATE(5550)] = 168532, - [SMALL_STATE(5551)] = 168542, - [SMALL_STATE(5552)] = 168552, - [SMALL_STATE(5553)] = 168562, - [SMALL_STATE(5554)] = 168572, - [SMALL_STATE(5555)] = 168582, - [SMALL_STATE(5556)] = 168592, - [SMALL_STATE(5557)] = 168602, - [SMALL_STATE(5558)] = 168612, - [SMALL_STATE(5559)] = 168622, - [SMALL_STATE(5560)] = 168632, - [SMALL_STATE(5561)] = 168642, - [SMALL_STATE(5562)] = 168652, - [SMALL_STATE(5563)] = 168662, - [SMALL_STATE(5564)] = 168672, - [SMALL_STATE(5565)] = 168682, - [SMALL_STATE(5566)] = 168692, - [SMALL_STATE(5567)] = 168702, - [SMALL_STATE(5568)] = 168712, - [SMALL_STATE(5569)] = 168722, - [SMALL_STATE(5570)] = 168732, - [SMALL_STATE(5571)] = 168742, - [SMALL_STATE(5572)] = 168752, - [SMALL_STATE(5573)] = 168762, - [SMALL_STATE(5574)] = 168772, - [SMALL_STATE(5575)] = 168782, - [SMALL_STATE(5576)] = 168792, - [SMALL_STATE(5577)] = 168802, - [SMALL_STATE(5578)] = 168812, - [SMALL_STATE(5579)] = 168820, - [SMALL_STATE(5580)] = 168830, - [SMALL_STATE(5581)] = 168840, - [SMALL_STATE(5582)] = 168850, - [SMALL_STATE(5583)] = 168860, - [SMALL_STATE(5584)] = 168870, - [SMALL_STATE(5585)] = 168880, - [SMALL_STATE(5586)] = 168890, - [SMALL_STATE(5587)] = 168900, - [SMALL_STATE(5588)] = 168910, - [SMALL_STATE(5589)] = 168920, - [SMALL_STATE(5590)] = 168930, - [SMALL_STATE(5591)] = 168940, - [SMALL_STATE(5592)] = 168950, - [SMALL_STATE(5593)] = 168960, - [SMALL_STATE(5594)] = 168970, - [SMALL_STATE(5595)] = 168980, - [SMALL_STATE(5596)] = 168990, - [SMALL_STATE(5597)] = 169000, - [SMALL_STATE(5598)] = 169010, - [SMALL_STATE(5599)] = 169020, - [SMALL_STATE(5600)] = 169030, - [SMALL_STATE(5601)] = 169040, - [SMALL_STATE(5602)] = 169050, - [SMALL_STATE(5603)] = 169060, - [SMALL_STATE(5604)] = 169070, - [SMALL_STATE(5605)] = 169080, - [SMALL_STATE(5606)] = 169090, - [SMALL_STATE(5607)] = 169100, - [SMALL_STATE(5608)] = 169110, - [SMALL_STATE(5609)] = 169120, - [SMALL_STATE(5610)] = 169130, - [SMALL_STATE(5611)] = 169140, - [SMALL_STATE(5612)] = 169150, - [SMALL_STATE(5613)] = 169160, - [SMALL_STATE(5614)] = 169170, - [SMALL_STATE(5615)] = 169180, - [SMALL_STATE(5616)] = 169190, - [SMALL_STATE(5617)] = 169200, - [SMALL_STATE(5618)] = 169210, - [SMALL_STATE(5619)] = 169220, - [SMALL_STATE(5620)] = 169228, - [SMALL_STATE(5621)] = 169238, - [SMALL_STATE(5622)] = 169248, - [SMALL_STATE(5623)] = 169258, - [SMALL_STATE(5624)] = 169268, - [SMALL_STATE(5625)] = 169278, - [SMALL_STATE(5626)] = 169288, - [SMALL_STATE(5627)] = 169298, - [SMALL_STATE(5628)] = 169308, - [SMALL_STATE(5629)] = 169318, - [SMALL_STATE(5630)] = 169328, - [SMALL_STATE(5631)] = 169338, - [SMALL_STATE(5632)] = 169348, - [SMALL_STATE(5633)] = 169358, - [SMALL_STATE(5634)] = 169365, - [SMALL_STATE(5635)] = 169372, - [SMALL_STATE(5636)] = 169379, - [SMALL_STATE(5637)] = 169386, - [SMALL_STATE(5638)] = 169393, - [SMALL_STATE(5639)] = 169400, - [SMALL_STATE(5640)] = 169407, - [SMALL_STATE(5641)] = 169414, - [SMALL_STATE(5642)] = 169421, - [SMALL_STATE(5643)] = 169428, - [SMALL_STATE(5644)] = 169435, - [SMALL_STATE(5645)] = 169442, - [SMALL_STATE(5646)] = 169449, - [SMALL_STATE(5647)] = 169456, - [SMALL_STATE(5648)] = 169463, - [SMALL_STATE(5649)] = 169470, - [SMALL_STATE(5650)] = 169477, - [SMALL_STATE(5651)] = 169484, - [SMALL_STATE(5652)] = 169491, - [SMALL_STATE(5653)] = 169498, - [SMALL_STATE(5654)] = 169505, - [SMALL_STATE(5655)] = 169512, - [SMALL_STATE(5656)] = 169519, - [SMALL_STATE(5657)] = 169526, - [SMALL_STATE(5658)] = 169533, - [SMALL_STATE(5659)] = 169540, - [SMALL_STATE(5660)] = 169547, - [SMALL_STATE(5661)] = 169554, - [SMALL_STATE(5662)] = 169561, - [SMALL_STATE(5663)] = 169568, - [SMALL_STATE(5664)] = 169575, - [SMALL_STATE(5665)] = 169582, - [SMALL_STATE(5666)] = 169589, - [SMALL_STATE(5667)] = 169596, - [SMALL_STATE(5668)] = 169603, - [SMALL_STATE(5669)] = 169610, - [SMALL_STATE(5670)] = 169617, - [SMALL_STATE(5671)] = 169624, - [SMALL_STATE(5672)] = 169631, - [SMALL_STATE(5673)] = 169638, - [SMALL_STATE(5674)] = 169645, - [SMALL_STATE(5675)] = 169652, - [SMALL_STATE(5676)] = 169659, - [SMALL_STATE(5677)] = 169666, - [SMALL_STATE(5678)] = 169673, - [SMALL_STATE(5679)] = 169680, - [SMALL_STATE(5680)] = 169687, - [SMALL_STATE(5681)] = 169694, - [SMALL_STATE(5682)] = 169701, - [SMALL_STATE(5683)] = 169708, - [SMALL_STATE(5684)] = 169715, - [SMALL_STATE(5685)] = 169722, - [SMALL_STATE(5686)] = 169729, - [SMALL_STATE(5687)] = 169736, - [SMALL_STATE(5688)] = 169743, - [SMALL_STATE(5689)] = 169750, - [SMALL_STATE(5690)] = 169757, - [SMALL_STATE(5691)] = 169764, - [SMALL_STATE(5692)] = 169771, - [SMALL_STATE(5693)] = 169778, - [SMALL_STATE(5694)] = 169785, - [SMALL_STATE(5695)] = 169792, - [SMALL_STATE(5696)] = 169799, - [SMALL_STATE(5697)] = 169806, - [SMALL_STATE(5698)] = 169813, - [SMALL_STATE(5699)] = 169820, - [SMALL_STATE(5700)] = 169827, - [SMALL_STATE(5701)] = 169834, - [SMALL_STATE(5702)] = 169841, - [SMALL_STATE(5703)] = 169848, - [SMALL_STATE(5704)] = 169855, - [SMALL_STATE(5705)] = 169862, - [SMALL_STATE(5706)] = 169869, - [SMALL_STATE(5707)] = 169876, - [SMALL_STATE(5708)] = 169883, - [SMALL_STATE(5709)] = 169890, - [SMALL_STATE(5710)] = 169897, - [SMALL_STATE(5711)] = 169904, - [SMALL_STATE(5712)] = 169911, - [SMALL_STATE(5713)] = 169918, - [SMALL_STATE(5714)] = 169925, - [SMALL_STATE(5715)] = 169932, - [SMALL_STATE(5716)] = 169939, - [SMALL_STATE(5717)] = 169946, - [SMALL_STATE(5718)] = 169953, - [SMALL_STATE(5719)] = 169960, - [SMALL_STATE(5720)] = 169967, - [SMALL_STATE(5721)] = 169974, - [SMALL_STATE(5722)] = 169981, - [SMALL_STATE(5723)] = 169988, - [SMALL_STATE(5724)] = 169995, - [SMALL_STATE(5725)] = 170002, - [SMALL_STATE(5726)] = 170009, - [SMALL_STATE(5727)] = 170016, - [SMALL_STATE(5728)] = 170023, - [SMALL_STATE(5729)] = 170030, - [SMALL_STATE(5730)] = 170037, - [SMALL_STATE(5731)] = 170044, - [SMALL_STATE(5732)] = 170051, - [SMALL_STATE(5733)] = 170058, - [SMALL_STATE(5734)] = 170065, - [SMALL_STATE(5735)] = 170072, - [SMALL_STATE(5736)] = 170079, - [SMALL_STATE(5737)] = 170086, - [SMALL_STATE(5738)] = 170093, - [SMALL_STATE(5739)] = 170100, - [SMALL_STATE(5740)] = 170107, - [SMALL_STATE(5741)] = 170114, - [SMALL_STATE(5742)] = 170121, - [SMALL_STATE(5743)] = 170128, - [SMALL_STATE(5744)] = 170135, - [SMALL_STATE(5745)] = 170142, - [SMALL_STATE(5746)] = 170149, - [SMALL_STATE(5747)] = 170156, - [SMALL_STATE(5748)] = 170163, - [SMALL_STATE(5749)] = 170170, - [SMALL_STATE(5750)] = 170177, - [SMALL_STATE(5751)] = 170184, - [SMALL_STATE(5752)] = 170191, - [SMALL_STATE(5753)] = 170198, - [SMALL_STATE(5754)] = 170205, - [SMALL_STATE(5755)] = 170212, - [SMALL_STATE(5756)] = 170219, - [SMALL_STATE(5757)] = 170226, - [SMALL_STATE(5758)] = 170233, - [SMALL_STATE(5759)] = 170240, - [SMALL_STATE(5760)] = 170247, - [SMALL_STATE(5761)] = 170254, - [SMALL_STATE(5762)] = 170261, - [SMALL_STATE(5763)] = 170268, - [SMALL_STATE(5764)] = 170275, - [SMALL_STATE(5765)] = 170282, - [SMALL_STATE(5766)] = 170289, - [SMALL_STATE(5767)] = 170296, - [SMALL_STATE(5768)] = 170303, - [SMALL_STATE(5769)] = 170310, - [SMALL_STATE(5770)] = 170317, - [SMALL_STATE(5771)] = 170324, - [SMALL_STATE(5772)] = 170331, - [SMALL_STATE(5773)] = 170338, - [SMALL_STATE(5774)] = 170345, - [SMALL_STATE(5775)] = 170352, - [SMALL_STATE(5776)] = 170359, - [SMALL_STATE(5777)] = 170366, - [SMALL_STATE(5778)] = 170373, - [SMALL_STATE(5779)] = 170380, - [SMALL_STATE(5780)] = 170387, - [SMALL_STATE(5781)] = 170394, - [SMALL_STATE(5782)] = 170401, - [SMALL_STATE(5783)] = 170408, - [SMALL_STATE(5784)] = 170415, - [SMALL_STATE(5785)] = 170422, - [SMALL_STATE(5786)] = 170429, - [SMALL_STATE(5787)] = 170436, - [SMALL_STATE(5788)] = 170443, - [SMALL_STATE(5789)] = 170450, - [SMALL_STATE(5790)] = 170457, - [SMALL_STATE(5791)] = 170464, - [SMALL_STATE(5792)] = 170471, - [SMALL_STATE(5793)] = 170478, - [SMALL_STATE(5794)] = 170485, - [SMALL_STATE(5795)] = 170492, - [SMALL_STATE(5796)] = 170499, - [SMALL_STATE(5797)] = 170506, - [SMALL_STATE(5798)] = 170513, - [SMALL_STATE(5799)] = 170520, - [SMALL_STATE(5800)] = 170527, - [SMALL_STATE(5801)] = 170534, - [SMALL_STATE(5802)] = 170541, - [SMALL_STATE(5803)] = 170548, - [SMALL_STATE(5804)] = 170555, - [SMALL_STATE(5805)] = 170562, - [SMALL_STATE(5806)] = 170569, - [SMALL_STATE(5807)] = 170576, - [SMALL_STATE(5808)] = 170583, - [SMALL_STATE(5809)] = 170590, - [SMALL_STATE(5810)] = 170597, - [SMALL_STATE(5811)] = 170604, - [SMALL_STATE(5812)] = 170611, - [SMALL_STATE(5813)] = 170618, - [SMALL_STATE(5814)] = 170625, - [SMALL_STATE(5815)] = 170632, - [SMALL_STATE(5816)] = 170639, - [SMALL_STATE(5817)] = 170646, - [SMALL_STATE(5818)] = 170653, - [SMALL_STATE(5819)] = 170660, - [SMALL_STATE(5820)] = 170667, - [SMALL_STATE(5821)] = 170674, - [SMALL_STATE(5822)] = 170681, - [SMALL_STATE(5823)] = 170688, - [SMALL_STATE(5824)] = 170695, - [SMALL_STATE(5825)] = 170702, - [SMALL_STATE(5826)] = 170709, - [SMALL_STATE(5827)] = 170716, - [SMALL_STATE(5828)] = 170723, - [SMALL_STATE(5829)] = 170730, - [SMALL_STATE(5830)] = 170737, - [SMALL_STATE(5831)] = 170744, - [SMALL_STATE(5832)] = 170751, - [SMALL_STATE(5833)] = 170758, - [SMALL_STATE(5834)] = 170765, - [SMALL_STATE(5835)] = 170772, - [SMALL_STATE(5836)] = 170779, - [SMALL_STATE(5837)] = 170786, - [SMALL_STATE(5838)] = 170793, - [SMALL_STATE(5839)] = 170800, - [SMALL_STATE(5840)] = 170807, - [SMALL_STATE(5841)] = 170814, - [SMALL_STATE(5842)] = 170821, - [SMALL_STATE(5843)] = 170828, - [SMALL_STATE(5844)] = 170835, - [SMALL_STATE(5845)] = 170842, - [SMALL_STATE(5846)] = 170849, - [SMALL_STATE(5847)] = 170856, - [SMALL_STATE(5848)] = 170863, - [SMALL_STATE(5849)] = 170870, - [SMALL_STATE(5850)] = 170877, - [SMALL_STATE(5851)] = 170884, - [SMALL_STATE(5852)] = 170891, - [SMALL_STATE(5853)] = 170898, - [SMALL_STATE(5854)] = 170905, - [SMALL_STATE(5855)] = 170912, - [SMALL_STATE(5856)] = 170919, - [SMALL_STATE(5857)] = 170926, - [SMALL_STATE(5858)] = 170933, - [SMALL_STATE(5859)] = 170940, - [SMALL_STATE(5860)] = 170947, - [SMALL_STATE(5861)] = 170954, - [SMALL_STATE(5862)] = 170961, - [SMALL_STATE(5863)] = 170968, - [SMALL_STATE(5864)] = 170975, - [SMALL_STATE(5865)] = 170982, - [SMALL_STATE(5866)] = 170989, - [SMALL_STATE(5867)] = 170996, - [SMALL_STATE(5868)] = 171003, - [SMALL_STATE(5869)] = 171010, - [SMALL_STATE(5870)] = 171017, - [SMALL_STATE(5871)] = 171024, - [SMALL_STATE(5872)] = 171031, - [SMALL_STATE(5873)] = 171038, - [SMALL_STATE(5874)] = 171045, - [SMALL_STATE(5875)] = 171052, - [SMALL_STATE(5876)] = 171059, - [SMALL_STATE(5877)] = 171066, - [SMALL_STATE(5878)] = 171073, - [SMALL_STATE(5879)] = 171080, - [SMALL_STATE(5880)] = 171087, - [SMALL_STATE(5881)] = 171094, - [SMALL_STATE(5882)] = 171101, - [SMALL_STATE(5883)] = 171108, - [SMALL_STATE(5884)] = 171115, - [SMALL_STATE(5885)] = 171122, - [SMALL_STATE(5886)] = 171129, - [SMALL_STATE(5887)] = 171136, - [SMALL_STATE(5888)] = 171143, - [SMALL_STATE(5889)] = 171150, - [SMALL_STATE(5890)] = 171157, - [SMALL_STATE(5891)] = 171164, - [SMALL_STATE(5892)] = 171171, - [SMALL_STATE(5893)] = 171178, - [SMALL_STATE(5894)] = 171185, - [SMALL_STATE(5895)] = 171192, - [SMALL_STATE(5896)] = 171199, - [SMALL_STATE(5897)] = 171206, - [SMALL_STATE(5898)] = 171213, - [SMALL_STATE(5899)] = 171220, - [SMALL_STATE(5900)] = 171227, - [SMALL_STATE(5901)] = 171234, - [SMALL_STATE(5902)] = 171241, - [SMALL_STATE(5903)] = 171248, - [SMALL_STATE(5904)] = 171255, - [SMALL_STATE(5905)] = 171262, - [SMALL_STATE(5906)] = 171269, - [SMALL_STATE(5907)] = 171276, - [SMALL_STATE(5908)] = 171283, - [SMALL_STATE(5909)] = 171290, - [SMALL_STATE(5910)] = 171297, - [SMALL_STATE(5911)] = 171304, - [SMALL_STATE(5912)] = 171311, - [SMALL_STATE(5913)] = 171318, - [SMALL_STATE(5914)] = 171325, - [SMALL_STATE(5915)] = 171332, - [SMALL_STATE(5916)] = 171339, - [SMALL_STATE(5917)] = 171346, - [SMALL_STATE(5918)] = 171353, - [SMALL_STATE(5919)] = 171360, - [SMALL_STATE(5920)] = 171367, - [SMALL_STATE(5921)] = 171374, - [SMALL_STATE(5922)] = 171381, - [SMALL_STATE(5923)] = 171388, - [SMALL_STATE(5924)] = 171395, - [SMALL_STATE(5925)] = 171402, - [SMALL_STATE(5926)] = 171409, - [SMALL_STATE(5927)] = 171416, - [SMALL_STATE(5928)] = 171423, - [SMALL_STATE(5929)] = 171430, - [SMALL_STATE(5930)] = 171437, - [SMALL_STATE(5931)] = 171444, - [SMALL_STATE(5932)] = 171451, - [SMALL_STATE(5933)] = 171458, - [SMALL_STATE(5934)] = 171465, - [SMALL_STATE(5935)] = 171472, - [SMALL_STATE(5936)] = 171479, - [SMALL_STATE(5937)] = 171486, - [SMALL_STATE(5938)] = 171493, - [SMALL_STATE(5939)] = 171500, - [SMALL_STATE(5940)] = 171507, - [SMALL_STATE(5941)] = 171514, - [SMALL_STATE(5942)] = 171521, - [SMALL_STATE(5943)] = 171528, - [SMALL_STATE(5944)] = 171535, - [SMALL_STATE(5945)] = 171542, - [SMALL_STATE(5946)] = 171549, - [SMALL_STATE(5947)] = 171556, - [SMALL_STATE(5948)] = 171563, - [SMALL_STATE(5949)] = 171570, - [SMALL_STATE(5950)] = 171577, - [SMALL_STATE(5951)] = 171584, - [SMALL_STATE(5952)] = 171591, - [SMALL_STATE(5953)] = 171598, - [SMALL_STATE(5954)] = 171605, - [SMALL_STATE(5955)] = 171612, - [SMALL_STATE(5956)] = 171619, - [SMALL_STATE(5957)] = 171626, - [SMALL_STATE(5958)] = 171633, - [SMALL_STATE(5959)] = 171640, - [SMALL_STATE(5960)] = 171647, - [SMALL_STATE(5961)] = 171654, - [SMALL_STATE(5962)] = 171661, - [SMALL_STATE(5963)] = 171668, - [SMALL_STATE(5964)] = 171675, - [SMALL_STATE(5965)] = 171682, - [SMALL_STATE(5966)] = 171689, - [SMALL_STATE(5967)] = 171696, - [SMALL_STATE(5968)] = 171703, - [SMALL_STATE(5969)] = 171710, - [SMALL_STATE(5970)] = 171717, - [SMALL_STATE(5971)] = 171724, - [SMALL_STATE(5972)] = 171731, - [SMALL_STATE(5973)] = 171738, - [SMALL_STATE(5974)] = 171745, - [SMALL_STATE(5975)] = 171752, - [SMALL_STATE(5976)] = 171759, - [SMALL_STATE(5977)] = 171766, - [SMALL_STATE(5978)] = 171773, - [SMALL_STATE(5979)] = 171780, - [SMALL_STATE(5980)] = 171787, - [SMALL_STATE(5981)] = 171794, - [SMALL_STATE(5982)] = 171801, - [SMALL_STATE(5983)] = 171808, - [SMALL_STATE(5984)] = 171815, - [SMALL_STATE(5985)] = 171822, - [SMALL_STATE(5986)] = 171829, - [SMALL_STATE(5987)] = 171836, - [SMALL_STATE(5988)] = 171843, - [SMALL_STATE(5989)] = 171850, - [SMALL_STATE(5990)] = 171857, - [SMALL_STATE(5991)] = 171864, - [SMALL_STATE(5992)] = 171871, - [SMALL_STATE(5993)] = 171878, - [SMALL_STATE(5994)] = 171885, - [SMALL_STATE(5995)] = 171892, - [SMALL_STATE(5996)] = 171899, - [SMALL_STATE(5997)] = 171906, - [SMALL_STATE(5998)] = 171913, - [SMALL_STATE(5999)] = 171920, - [SMALL_STATE(6000)] = 171927, - [SMALL_STATE(6001)] = 171934, - [SMALL_STATE(6002)] = 171941, - [SMALL_STATE(6003)] = 171948, - [SMALL_STATE(6004)] = 171955, - [SMALL_STATE(6005)] = 171962, - [SMALL_STATE(6006)] = 171969, - [SMALL_STATE(6007)] = 171976, - [SMALL_STATE(6008)] = 171983, - [SMALL_STATE(6009)] = 171990, - [SMALL_STATE(6010)] = 171997, - [SMALL_STATE(6011)] = 172004, - [SMALL_STATE(6012)] = 172011, - [SMALL_STATE(6013)] = 172018, - [SMALL_STATE(6014)] = 172025, - [SMALL_STATE(6015)] = 172032, - [SMALL_STATE(6016)] = 172039, - [SMALL_STATE(6017)] = 172046, - [SMALL_STATE(6018)] = 172053, - [SMALL_STATE(6019)] = 172060, - [SMALL_STATE(6020)] = 172067, - [SMALL_STATE(6021)] = 172074, - [SMALL_STATE(6022)] = 172081, - [SMALL_STATE(6023)] = 172088, - [SMALL_STATE(6024)] = 172095, - [SMALL_STATE(6025)] = 172102, - [SMALL_STATE(6026)] = 172109, - [SMALL_STATE(6027)] = 172116, - [SMALL_STATE(6028)] = 172123, - [SMALL_STATE(6029)] = 172130, - [SMALL_STATE(6030)] = 172137, - [SMALL_STATE(6031)] = 172144, - [SMALL_STATE(6032)] = 172151, - [SMALL_STATE(6033)] = 172158, - [SMALL_STATE(6034)] = 172165, - [SMALL_STATE(6035)] = 172172, - [SMALL_STATE(6036)] = 172179, - [SMALL_STATE(6037)] = 172186, - [SMALL_STATE(6038)] = 172193, - [SMALL_STATE(6039)] = 172200, - [SMALL_STATE(6040)] = 172207, - [SMALL_STATE(6041)] = 172214, - [SMALL_STATE(6042)] = 172221, - [SMALL_STATE(6043)] = 172228, - [SMALL_STATE(6044)] = 172235, - [SMALL_STATE(6045)] = 172242, - [SMALL_STATE(6046)] = 172249, - [SMALL_STATE(6047)] = 172256, - [SMALL_STATE(6048)] = 172263, - [SMALL_STATE(6049)] = 172270, - [SMALL_STATE(6050)] = 172277, - [SMALL_STATE(6051)] = 172284, - [SMALL_STATE(6052)] = 172291, - [SMALL_STATE(6053)] = 172298, - [SMALL_STATE(6054)] = 172305, - [SMALL_STATE(6055)] = 172312, - [SMALL_STATE(6056)] = 172319, - [SMALL_STATE(6057)] = 172326, - [SMALL_STATE(6058)] = 172333, - [SMALL_STATE(6059)] = 172340, - [SMALL_STATE(6060)] = 172347, - [SMALL_STATE(6061)] = 172354, - [SMALL_STATE(6062)] = 172361, - [SMALL_STATE(6063)] = 172368, - [SMALL_STATE(6064)] = 172375, - [SMALL_STATE(6065)] = 172382, - [SMALL_STATE(6066)] = 172389, - [SMALL_STATE(6067)] = 172396, - [SMALL_STATE(6068)] = 172403, - [SMALL_STATE(6069)] = 172410, - [SMALL_STATE(6070)] = 172417, - [SMALL_STATE(6071)] = 172424, - [SMALL_STATE(6072)] = 172431, - [SMALL_STATE(6073)] = 172438, - [SMALL_STATE(6074)] = 172445, - [SMALL_STATE(6075)] = 172452, - [SMALL_STATE(6076)] = 172459, - [SMALL_STATE(6077)] = 172466, - [SMALL_STATE(6078)] = 172473, - [SMALL_STATE(6079)] = 172480, - [SMALL_STATE(6080)] = 172487, - [SMALL_STATE(6081)] = 172494, - [SMALL_STATE(6082)] = 172501, - [SMALL_STATE(6083)] = 172508, - [SMALL_STATE(6084)] = 172515, - [SMALL_STATE(6085)] = 172522, - [SMALL_STATE(6086)] = 172529, - [SMALL_STATE(6087)] = 172536, - [SMALL_STATE(6088)] = 172543, - [SMALL_STATE(6089)] = 172550, - [SMALL_STATE(6090)] = 172557, - [SMALL_STATE(6091)] = 172564, - [SMALL_STATE(6092)] = 172571, - [SMALL_STATE(6093)] = 172578, - [SMALL_STATE(6094)] = 172585, - [SMALL_STATE(6095)] = 172592, - [SMALL_STATE(6096)] = 172599, - [SMALL_STATE(6097)] = 172606, - [SMALL_STATE(6098)] = 172613, - [SMALL_STATE(6099)] = 172620, - [SMALL_STATE(6100)] = 172627, - [SMALL_STATE(6101)] = 172634, - [SMALL_STATE(6102)] = 172641, - [SMALL_STATE(6103)] = 172648, - [SMALL_STATE(6104)] = 172655, - [SMALL_STATE(6105)] = 172662, - [SMALL_STATE(6106)] = 172669, - [SMALL_STATE(6107)] = 172676, - [SMALL_STATE(6108)] = 172683, - [SMALL_STATE(6109)] = 172690, - [SMALL_STATE(6110)] = 172697, - [SMALL_STATE(6111)] = 172704, - [SMALL_STATE(6112)] = 172711, - [SMALL_STATE(6113)] = 172718, - [SMALL_STATE(6114)] = 172725, - [SMALL_STATE(6115)] = 172732, - [SMALL_STATE(6116)] = 172739, - [SMALL_STATE(6117)] = 172746, - [SMALL_STATE(6118)] = 172753, - [SMALL_STATE(6119)] = 172760, - [SMALL_STATE(6120)] = 172767, - [SMALL_STATE(6121)] = 172774, - [SMALL_STATE(6122)] = 172781, - [SMALL_STATE(6123)] = 172788, - [SMALL_STATE(6124)] = 172795, - [SMALL_STATE(6125)] = 172802, - [SMALL_STATE(6126)] = 172809, - [SMALL_STATE(6127)] = 172816, - [SMALL_STATE(6128)] = 172823, - [SMALL_STATE(6129)] = 172830, - [SMALL_STATE(6130)] = 172837, - [SMALL_STATE(6131)] = 172844, - [SMALL_STATE(6132)] = 172851, - [SMALL_STATE(6133)] = 172858, - [SMALL_STATE(6134)] = 172865, - [SMALL_STATE(6135)] = 172872, - [SMALL_STATE(6136)] = 172879, - [SMALL_STATE(6137)] = 172886, - [SMALL_STATE(6138)] = 172893, - [SMALL_STATE(6139)] = 172900, - [SMALL_STATE(6140)] = 172907, - [SMALL_STATE(6141)] = 172914, - [SMALL_STATE(6142)] = 172921, - [SMALL_STATE(6143)] = 172928, - [SMALL_STATE(6144)] = 172935, - [SMALL_STATE(6145)] = 172942, - [SMALL_STATE(6146)] = 172949, - [SMALL_STATE(6147)] = 172956, - [SMALL_STATE(6148)] = 172963, - [SMALL_STATE(6149)] = 172970, - [SMALL_STATE(6150)] = 172977, - [SMALL_STATE(6151)] = 172984, - [SMALL_STATE(6152)] = 172991, - [SMALL_STATE(6153)] = 172998, - [SMALL_STATE(6154)] = 173005, - [SMALL_STATE(6155)] = 173012, - [SMALL_STATE(6156)] = 173019, - [SMALL_STATE(6157)] = 173026, - [SMALL_STATE(6158)] = 173033, - [SMALL_STATE(6159)] = 173040, - [SMALL_STATE(6160)] = 173047, - [SMALL_STATE(6161)] = 173054, - [SMALL_STATE(6162)] = 173061, - [SMALL_STATE(6163)] = 173068, - [SMALL_STATE(6164)] = 173075, - [SMALL_STATE(6165)] = 173082, - [SMALL_STATE(6166)] = 173089, - [SMALL_STATE(6167)] = 173096, - [SMALL_STATE(6168)] = 173103, - [SMALL_STATE(6169)] = 173110, - [SMALL_STATE(6170)] = 173117, - [SMALL_STATE(6171)] = 173124, - [SMALL_STATE(6172)] = 173131, - [SMALL_STATE(6173)] = 173138, - [SMALL_STATE(6174)] = 173145, - [SMALL_STATE(6175)] = 173152, - [SMALL_STATE(6176)] = 173159, - [SMALL_STATE(6177)] = 173166, - [SMALL_STATE(6178)] = 173173, - [SMALL_STATE(6179)] = 173180, - [SMALL_STATE(6180)] = 173187, - [SMALL_STATE(6181)] = 173194, - [SMALL_STATE(6182)] = 173201, - [SMALL_STATE(6183)] = 173208, - [SMALL_STATE(6184)] = 173215, - [SMALL_STATE(6185)] = 173222, - [SMALL_STATE(6186)] = 173229, - [SMALL_STATE(6187)] = 173236, - [SMALL_STATE(6188)] = 173243, - [SMALL_STATE(6189)] = 173250, - [SMALL_STATE(6190)] = 173257, - [SMALL_STATE(6191)] = 173264, - [SMALL_STATE(6192)] = 173271, - [SMALL_STATE(6193)] = 173278, - [SMALL_STATE(6194)] = 173285, - [SMALL_STATE(6195)] = 173292, - [SMALL_STATE(6196)] = 173299, - [SMALL_STATE(6197)] = 173306, - [SMALL_STATE(6198)] = 173313, - [SMALL_STATE(6199)] = 173320, - [SMALL_STATE(6200)] = 173327, - [SMALL_STATE(6201)] = 173334, - [SMALL_STATE(6202)] = 173341, - [SMALL_STATE(6203)] = 173348, - [SMALL_STATE(6204)] = 173355, - [SMALL_STATE(6205)] = 173362, - [SMALL_STATE(6206)] = 173369, - [SMALL_STATE(6207)] = 173376, - [SMALL_STATE(6208)] = 173383, - [SMALL_STATE(6209)] = 173390, - [SMALL_STATE(6210)] = 173397, - [SMALL_STATE(6211)] = 173404, - [SMALL_STATE(6212)] = 173411, - [SMALL_STATE(6213)] = 173418, - [SMALL_STATE(6214)] = 173425, - [SMALL_STATE(6215)] = 173432, - [SMALL_STATE(6216)] = 173439, - [SMALL_STATE(6217)] = 173446, - [SMALL_STATE(6218)] = 173453, - [SMALL_STATE(6219)] = 173460, - [SMALL_STATE(6220)] = 173467, - [SMALL_STATE(6221)] = 173474, - [SMALL_STATE(6222)] = 173481, - [SMALL_STATE(6223)] = 173488, - [SMALL_STATE(6224)] = 173495, - [SMALL_STATE(6225)] = 173502, - [SMALL_STATE(6226)] = 173509, - [SMALL_STATE(6227)] = 173516, - [SMALL_STATE(6228)] = 173523, - [SMALL_STATE(6229)] = 173530, - [SMALL_STATE(6230)] = 173537, - [SMALL_STATE(6231)] = 173544, - [SMALL_STATE(6232)] = 173551, - [SMALL_STATE(6233)] = 173558, - [SMALL_STATE(6234)] = 173565, - [SMALL_STATE(6235)] = 173572, - [SMALL_STATE(6236)] = 173579, - [SMALL_STATE(6237)] = 173586, - [SMALL_STATE(6238)] = 173593, - [SMALL_STATE(6239)] = 173600, - [SMALL_STATE(6240)] = 173607, - [SMALL_STATE(6241)] = 173614, - [SMALL_STATE(6242)] = 173621, - [SMALL_STATE(6243)] = 173628, - [SMALL_STATE(6244)] = 173635, - [SMALL_STATE(6245)] = 173642, - [SMALL_STATE(6246)] = 173649, - [SMALL_STATE(6247)] = 173656, - [SMALL_STATE(6248)] = 173663, - [SMALL_STATE(6249)] = 173670, - [SMALL_STATE(6250)] = 173677, - [SMALL_STATE(6251)] = 173684, - [SMALL_STATE(6252)] = 173691, - [SMALL_STATE(6253)] = 173698, - [SMALL_STATE(6254)] = 173705, - [SMALL_STATE(6255)] = 173712, - [SMALL_STATE(6256)] = 173719, - [SMALL_STATE(6257)] = 173726, - [SMALL_STATE(6258)] = 173733, - [SMALL_STATE(6259)] = 173740, - [SMALL_STATE(6260)] = 173747, - [SMALL_STATE(6261)] = 173754, - [SMALL_STATE(6262)] = 173761, - [SMALL_STATE(6263)] = 173768, - [SMALL_STATE(6264)] = 173775, - [SMALL_STATE(6265)] = 173782, - [SMALL_STATE(6266)] = 173789, - [SMALL_STATE(6267)] = 173796, - [SMALL_STATE(6268)] = 173803, - [SMALL_STATE(6269)] = 173810, - [SMALL_STATE(6270)] = 173817, - [SMALL_STATE(6271)] = 173824, - [SMALL_STATE(6272)] = 173831, - [SMALL_STATE(6273)] = 173838, - [SMALL_STATE(6274)] = 173845, - [SMALL_STATE(6275)] = 173852, - [SMALL_STATE(6276)] = 173859, - [SMALL_STATE(6277)] = 173866, - [SMALL_STATE(6278)] = 173873, - [SMALL_STATE(6279)] = 173880, - [SMALL_STATE(6280)] = 173887, - [SMALL_STATE(6281)] = 173894, - [SMALL_STATE(6282)] = 173901, - [SMALL_STATE(6283)] = 173908, - [SMALL_STATE(6284)] = 173915, - [SMALL_STATE(6285)] = 173922, - [SMALL_STATE(6286)] = 173929, - [SMALL_STATE(6287)] = 173936, - [SMALL_STATE(6288)] = 173943, - [SMALL_STATE(6289)] = 173950, - [SMALL_STATE(6290)] = 173957, - [SMALL_STATE(6291)] = 173964, - [SMALL_STATE(6292)] = 173971, - [SMALL_STATE(6293)] = 173978, - [SMALL_STATE(6294)] = 173985, - [SMALL_STATE(6295)] = 173992, - [SMALL_STATE(6296)] = 173999, - [SMALL_STATE(6297)] = 174006, - [SMALL_STATE(6298)] = 174013, - [SMALL_STATE(6299)] = 174020, - [SMALL_STATE(6300)] = 174027, - [SMALL_STATE(6301)] = 174034, - [SMALL_STATE(6302)] = 174041, - [SMALL_STATE(6303)] = 174048, - [SMALL_STATE(6304)] = 174055, - [SMALL_STATE(6305)] = 174062, - [SMALL_STATE(6306)] = 174069, - [SMALL_STATE(6307)] = 174076, - [SMALL_STATE(6308)] = 174083, - [SMALL_STATE(6309)] = 174090, - [SMALL_STATE(6310)] = 174097, - [SMALL_STATE(6311)] = 174104, - [SMALL_STATE(6312)] = 174111, - [SMALL_STATE(6313)] = 174118, - [SMALL_STATE(6314)] = 174125, - [SMALL_STATE(6315)] = 174132, - [SMALL_STATE(6316)] = 174139, - [SMALL_STATE(6317)] = 174146, - [SMALL_STATE(6318)] = 174153, - [SMALL_STATE(6319)] = 174160, - [SMALL_STATE(6320)] = 174167, - [SMALL_STATE(6321)] = 174174, - [SMALL_STATE(6322)] = 174181, - [SMALL_STATE(6323)] = 174188, - [SMALL_STATE(6324)] = 174195, - [SMALL_STATE(6325)] = 174202, - [SMALL_STATE(6326)] = 174209, - [SMALL_STATE(6327)] = 174216, - [SMALL_STATE(6328)] = 174223, - [SMALL_STATE(6329)] = 174230, - [SMALL_STATE(6330)] = 174237, - [SMALL_STATE(6331)] = 174244, - [SMALL_STATE(6332)] = 174251, - [SMALL_STATE(6333)] = 174258, - [SMALL_STATE(6334)] = 174265, + [SMALL_STATE(1778)] = 0, + [SMALL_STATE(1779)] = 71, + [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(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(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, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -337503,4504 +344583,4602 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [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(1730), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1730), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1824), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1841), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6145), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6293), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6292), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(551), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(503), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(505), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(708), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6283), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1757), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6280), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(30), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1314), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(410), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(409), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(408), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(690), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(691), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5878), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(200), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5270), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3533), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4381), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2722), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5444), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5451), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6281), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5533), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(146), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6181), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5445), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(371), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1929), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1929), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1928), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1937), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1932), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(523), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(529), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3956), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5183), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(529), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(533), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(534), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6228), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3957), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(473), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3958), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(472), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5888), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5886), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4970), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5161), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3942), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6203), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4047), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5881), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1841), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 36), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 36), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 36), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 36), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5987), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(896), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(10), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1624), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(374), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(376), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(377), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(548), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(547), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5640), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5469), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3535), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2723), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5411), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5623), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6215), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5465), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(100), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5990), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5410), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(380), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5953), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5954), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4995), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5194), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3954), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4060), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5642), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 1), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6166), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(904), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(16), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1460), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(492), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(491), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(489), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(508), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(518), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6279), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5160), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3545), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2727), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5164), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5169), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6254), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5171), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(148), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6244), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5176), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(480), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6217), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6214), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4382), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5197), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3959), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3961), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6198), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 2), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection_expression, 3, .production_id = 13), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection_expression, 3, .production_id = 13), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 6), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 6), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 8), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 8), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1809), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2389), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1800), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2423), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1819), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2433), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_modifier, 1), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 1), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 1), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 125), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 125), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 5), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 5), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 5), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 5), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4, .production_id = 102), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 4, .production_id = 102), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5304), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5807), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 35), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 35), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 133), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 133), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 154), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 154), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 15), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 15), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 15), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 15), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 15), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 15), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 23), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 23), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 24), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 24), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 4), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 4), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 4), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 4), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 4), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, .production_id = 36), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, .production_id = 36), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 5), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 5), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_declarations, 2), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_declarations, 2), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 4, .production_id = 38), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 4, .production_id = 38), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 38), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 38), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 38), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 38), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [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), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [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), + [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), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [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), + [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), + [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), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [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), + [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), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [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), + [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), + [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), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 37), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 37), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [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), + [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), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [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), + [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), + [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_trait_declaration, 4, .production_id = 39), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 4, .production_id = 39), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 5), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 53), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 53), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 36), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 36), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 55), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 55), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_declarations, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_declarations, 3), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 5, .production_id = 58), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 5, .production_id = 58), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 58), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 58), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 58), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 58), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 59), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 59), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 60), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 60), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 5, .production_id = 59), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 5, .production_id = 59), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 59), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 59), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 81), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 81), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 6), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 3, .production_id = 15), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 3, .production_id = 15), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 6, .production_id = 85), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 6, .production_id = 85), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 3, .production_id = 18), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 3, .production_id = 18), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 85), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 82), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 82), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 175), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 175), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 11, .production_id = 163), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 11, .production_id = 163), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 166), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 166), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 164), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 164), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 163), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 163), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 150), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 150), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 10, .production_id = 130), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 10, .production_id = 130), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 10, .production_id = 149), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 10, .production_id = 149), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 162), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 162), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 85), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 85), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 145), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 145), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 155), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 155), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 86), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 86), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 151), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 151), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 150), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 150), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 2, .production_id = 5), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 2, .production_id = 5), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 130), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 130), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 9, .production_id = 149), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 9, .production_id = 149), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 9, .production_id = 148), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 9, .production_id = 148), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 147), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 147), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 146), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 146), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 145), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 145), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 130), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 130), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 111), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 111), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 9, .production_id = 129), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 9, .production_id = 129), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 140), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 140), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 139), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 139), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 9), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 9), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 134), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 134), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 130), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 130), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 8, .production_id = 111), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 8, .production_id = 111), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_statement, 2), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 2), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 2), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 132), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 132), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 131), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 131), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 8, .production_id = 130), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 8, .production_id = 130), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 111), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 111), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 8, .production_id = 129), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 8, .production_id = 129), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 177), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 177), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 123), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 123), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 8), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 8), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 8, .production_id = 118), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 8, .production_id = 118), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 7), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 7), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 115), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 115), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 111), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 111), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 112), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 112), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 11), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 11), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 7, .production_id = 112), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 7, .production_id = 112), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 7), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 114), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 114), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 3, .production_id = 14), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 3, .production_id = 14), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 113), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 113), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 3), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 112), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 112), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 7, .production_id = 111), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 7, .production_id = 111), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 86), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 86), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 110), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 110), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 103), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 103), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 7), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 7), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 7, .production_id = 91), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7, .production_id = 91), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 87), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 87), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 6, .production_id = 87), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 6, .production_id = 87), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 10), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 10), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [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_for_statement, 8, .production_id = 124), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 124), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 87), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 87), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5238), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5681), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5536), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(6002), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2765), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(4748), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6037), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5232), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6138), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3367), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3092), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3281), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6089), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2578), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2873), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3472), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3467), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3470), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3497), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5593), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(4027), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(4459), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3364), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(1743), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3368), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3497), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2934), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3750), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5662), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6283), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection_expression, 3, .production_id = 12), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection_expression, 3, .production_id = 12), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3062), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3042), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_parameter, 1, .production_id = 1), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_type_specifier, 1), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 2), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 2), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3042), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_type_specifier, 1), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_identifier, 1), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_identifier, 1), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6327), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constant, 2), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constant, 2), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 3), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_constant, 3), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constant, 1), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constant, 1), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 3), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 3), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym__type_constant, 3), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym__type_constant, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 13, .production_id = 189), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 13, .production_id = 189), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 14, .production_id = 192), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 14, .production_id = 192), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 15, .production_id = 193), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 15, .production_id = 193), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 22), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 22), - [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3057), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 12, .production_id = 185), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 12, .production_id = 185), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 11, .production_id = 176), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 11, .production_id = 176), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 9), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 9), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 10, .production_id = 165), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 10, .production_id = 165), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6227), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 3), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 3), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 77), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 77), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 3), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 3), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 9, .production_id = 153), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 9, .production_id = 153), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 4), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 4), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 5), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 5), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 8, .production_id = 137), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 8, .production_id = 137), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 4, .production_id = 43), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 4, .production_id = 43), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5992), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 5), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 5), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 4), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 4), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 4), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 4), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 43), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 43), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3062), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 43), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 43), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 6), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 6), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 7), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 7), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3062), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 7, .production_id = 77), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 7, .production_id = 77), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 6), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 6), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 77), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 77), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3047), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3074), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .production_id = 22), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .production_id = 22), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 17), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 17), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 3), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 3), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 6), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 6), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6, .production_id = 79), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6, .production_id = 79), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 5), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 5), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 8, .production_id = 135), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 8, .production_id = 135), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6, .production_id = 82), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6, .production_id = 82), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_awaitable_expression, 2), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_awaitable_expression, 2), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_string, 2, .production_id = 3), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_string, 2, .production_id = 3), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 82), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 82), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 62), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 62), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 8, .production_id = 135), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 8, .production_id = 135), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, .production_id = 19), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, .production_id = 19), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 1), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 1), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 4), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 4), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_label, 2), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_label, 2), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 51), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 51), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 101), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 101), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 52), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 52), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, .production_id = 19), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, .production_id = 19), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_label, 3, .production_id = 20), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_label, 3, .production_id = 20), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 52), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 52), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 3), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 3), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 4, .production_id = 31), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 4, .production_id = 31), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 5), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 5), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open_close, 3), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open_close, 3), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 80), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 80), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 79), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 79), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_close, 3), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_close, 3), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, .production_id = 19), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, .production_id = 19), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 2), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 2), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 31), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 31), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, .production_id = 19), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, .production_id = 19), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open_close, 4), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open_close, 4), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 3, .production_id = 17), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 3, .production_id = 17), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 7, .production_id = 101), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 7, .production_id = 101), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, .production_id = 19), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, .production_id = 19), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 4), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 4), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 117), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 117), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 3), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 3), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 6), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 6), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 4), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 4), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 4), SHIFT(218), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 4), SHIFT(217), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variadic_modifier, 1), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_modifier, 1), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), REDUCE(sym_qualified_identifier, 2), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 26), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 26), - [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 26), SHIFT(218), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_type_specifier, 3), REDUCE(sym_shape, 3), - [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_shape_type_specifier, 3), REDUCE(sym_shape, 3), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 61), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 61), - [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), SHIFT(218), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 2), REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_initializer, 3), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 26), SHIFT(217), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), SHIFT(217), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), SHIFT(219), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 4), SHIFT(219), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 26), SHIFT(219), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3080), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3080), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 4, .production_id = 126), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6126), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 3, .production_id = 106), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 1), - [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_parameter, 1, .production_id = 1), - [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(641), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_echo_statement_repeat1, 2), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 4), SHIFT(220), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3074), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3074), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), SHIFT(220), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 26), SHIFT(220), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 120), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 119), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 8, .production_id = 138), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 25), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(565), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declarator, 3, .production_id = 32), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, .production_id = 32), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, .production_id = 33), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 96), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 97), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 98), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 44), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 3, .production_id = 32), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 46), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 3, .production_id = 33), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 121), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 71), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 72), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 73), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6138), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_children_declaration, 4), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_children_declaration, 4), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 109), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 109), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, .production_id = 57), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, .production_id = 57), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_category_declaration, 3), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_category_declaration, 3), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_children_declaration, 3), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_children_declaration, 3), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_attribute_declaration, 3), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute_declaration, 3), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 3, .production_id = 83), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 83), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 6), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 6), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 141), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 141), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 142), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 142), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 141), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 141), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 3), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 3), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 143), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 143), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 11, .production_id = 191), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 11, .production_id = 191), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 109), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 109), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 144), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 144), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 128), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 128), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 127), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 127), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 34), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 34), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 5, .production_id = 48), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 5, .production_id = 48), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 11, .production_id = 190), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 11, .production_id = 190), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 48), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 48), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 76), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 76), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 5, .production_id = 48), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 5, .production_id = 48), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 127), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 127), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 6, .production_id = 128), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 6, .production_id = 128), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 4), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 4), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 4, .production_id = 28), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 4, .production_id = 28), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 4, .production_id = 28), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 4, .production_id = 28), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 105), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 105), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 83), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 83), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_extends_clause, 4), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_extends_clause, 4), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 24), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 24), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 170), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 170), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 10, .production_id = 188), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 10, .production_id = 188), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_implements_clause, 5), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_implements_clause, 5), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 156), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 156), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 157), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 157), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 10, .production_id = 187), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 10, .production_id = 187), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_category_declaration, 4), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_category_declaration, 4), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 158), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 158), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_extends_clause, 5), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_extends_clause, 5), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 10, .production_id = 186), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 10, .production_id = 186), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 159), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 159), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 57), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 57), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 160), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 160), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 5), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 5), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_implements_clause, 4), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_implements_clause, 4), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 169), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 169), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 168), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 168), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_attribute_declaration, 4), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute_declaration, 4), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 167), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 167), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 105), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 105), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 184), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 184), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 10), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 10), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 11), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 11), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 183), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 183), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 182), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 182), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 181), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 181), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 161), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 161), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 180), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 180), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 179), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 179), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 23), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 23), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 108), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 108), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 178), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 178), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 158), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 158), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 34), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 34), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 1, .production_id = 37), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 1, .production_id = 37), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 5, .production_id = 28), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 5, .production_id = 28), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 107), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 107), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 174), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 174), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 173), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 173), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 172), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 172), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 171), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 171), - [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 76), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 76), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(2765), - [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(6037), - [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(5232), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(6138), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3092), - [4431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(2873), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3472), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3467), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3470), - [4443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3381), - [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3381), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2765), - [4528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6037), - [4531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5232), - [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6138), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3092), - [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2873), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3472), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3467), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3470), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3381), - [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3182), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3381), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 2), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3367), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3364), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(2877), - [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3368), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2765), - [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6037), - [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5232), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6138), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3092), - [4674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2873), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3472), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3467), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3470), - [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3381), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3381), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 6), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 6), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 5), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 5), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 4), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 4), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 3), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 3), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_modifier, 1), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_modifier, 1), - [5082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__member_modifier, 1), SHIFT(5834), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), SHIFT(5804), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5804), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), SHIFT(5804), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 1, .production_id = 1), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 1, .production_id = 56), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_constraint, 3, .production_id = 84), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_constraint, 3, .production_id = 84), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 1), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 1), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_enumerator, 2), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_enumerator, 2), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), - [5198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3220), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_specifier_repeat1, 2), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), - [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3472), - [5208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3467), - [5211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3470), - [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 4), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 4), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 4), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 4), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 7), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 7), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(610), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(5401), - [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(3588), - [5527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(3588), - [5530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5747), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(4182), - [5544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(5227), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(6283), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 3), - [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 3), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 4), - [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 4), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 2), - [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 2), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), SHIFT_REPEAT(391), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), - [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), SHIFT_REPEAT(5964), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3356), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), SHIFT(6138), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 4, .production_id = 14), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 3, .production_id = 14), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), SHIFT(6138), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 4, .production_id = 28), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_children_declaration_repeat1, 2), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_binary_expression, 3), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_postfix_unary_expression, 2), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_parenthesized_expression, 3), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability, 1), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 28), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_parenthesized_expression, 4), - [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(3747), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(633), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 1, .production_id = 57), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_identifier, 1), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__namespace_identifier, 1), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 6), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 4), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), - [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(571), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(5734), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 5), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_modifier, 1), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_identifier, 2), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open, 3), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open, 3), - [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 94), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 93), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 92), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 28), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 2, .production_id = 16), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 28), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 69), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 68), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 67), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 66), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 65), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 64), - [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 64), SHIFT_REPEAT(3267), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 14), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_embedded_braced_expression, 3), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 42), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 41), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 40), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open, 4), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open, 4), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 2), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6297), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_modifier_repeat1, 2), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 1), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2), - [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2), SHIFT_REPEAT(3539), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_echo_statement_repeat1, 2), SHIFT_REPEAT(635), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 50), - [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(458), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute, 3), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 63), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 78), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_spread_expression, 4), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 90), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute, 1), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 100), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_children_declaration_repeat1, 2), SHIFT_REPEAT(3733), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2), SHIFT_REPEAT(6100), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 116), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 2), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 14), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 122), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 136), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 3), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 152), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [6398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5208), - [6401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 54), SHIFT_REPEAT(5752), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_type, 1), - [6452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_use_type, 1), SHIFT(6138), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3177), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_type, 1), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 16), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 27), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 28), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 29), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2148), - [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3, .production_id = 30), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(3459), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [7060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(359), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_modifier_repeat1, 2), SHIFT_REPEAT(4046), - [7068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declarator, 1, .production_id = 1), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), SHIFT_REPEAT(3493), - [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(507), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 45), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 47), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 48), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 49), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(307), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_select_clause_repeat1, 2), - [7311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_select_clause_repeat1, 2), SHIFT_REPEAT(3935), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_select_clause, 6), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capability_list_repeat1, 2), SHIFT_REPEAT(3492), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capability_list_repeat1, 2), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_select_clause, 5), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3704), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2), SHIFT_REPEAT(313), - [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 74), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 75), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 76), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_enum_type_repeat1, 2), - [7505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_enum_type_repeat1, 2), SHIFT_REPEAT(5370), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(5475), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 99), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(6201), - [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__anonymous_function_use_clause_repeat1, 2), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2), - [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2), SHIFT_REPEAT(3465), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_attribute_declaration_repeat1, 2), - [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_attribute_declaration_repeat1, 2), SHIFT_REPEAT(2947), - [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 2), SHIFT_REPEAT(3087), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_category_declaration_repeat1, 2), - [7719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_category_declaration_repeat1, 2), SHIFT_REPEAT(6052), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 50), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 28), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 90), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_alias_clause, 3), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 3, .production_id = 16), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 100), - [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2, .production_id = 83), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 78), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 4, .production_id = 106), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_specifier, 4, .production_id = 95), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 122), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 2, .production_id = 57), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 5, .production_id = 126), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 136), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 116), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 14), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_specifier, 3), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2, .production_id = 70), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 4), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 10, .production_id = 152), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_modifier_repeat1, 3), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability, 2), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_modifier, 1), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 4), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_alias_clause, 4), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_parameter_parameters, 1, .production_id = 2), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9016] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 5), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 6), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [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), + [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), + [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), + [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), + [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), + [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), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 2fc815e..c958cdd 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -36,6 +36,26 @@ async ($x) ==> $x + 1; left: (variable) right: (integer))))) +========================== +Module attribute +========================== + +<> + +--- + +(script + (module_attribute + (identifier) + (qualified_identifier + (identifier)) + (arguments + (argument + (scoped_identifier + (qualified_identifier + (identifier)) + (identifier)))))) + ========================== Attribute ========================== diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 332322e..ca570e3 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -839,12 +839,17 @@ Collection Vector {}; HH\Vector {1, 2, 3}; +Vector {}; \HH\Map {}; Map {'foo' => 1}; Set {}; Set {'foo', 'bar'}; +Set {'foo', 'bar'}; +Set> { + SomeClass::class +}; --- @@ -864,6 +869,12 @@ Set {'foo', 'bar'}; (expression_statement (collection (qualified_identifier + (identifier)) + (type_arguments + (type_specifier)))) + (expression_statement + (collection + (qualified_identifier (identifier) (identifier)))) (expression_statement @@ -882,7 +893,31 @@ Set {'foo', 'bar'}; (qualified_identifier (identifier)) (string) - (string)))) + (string))) + (expression_statement + (collection + (qualified_identifier + (identifier)) + (type_arguments + (type_specifier)) + (string) + (string))) + (expression_statement + (collection + (qualified_identifier + (identifier)) + (type_arguments + (type_specifier + (qualified_identifier + (identifier)) + (type_arguments + (type_specifier + (qualified_identifier + (identifier)))))) + (scoped_identifier + (qualified_identifier + (identifier)) + (identifier))))) ========================== Comments @@ -1759,6 +1794,63 @@ C::class |> $$::CONST; (pipe_variable) (identifier))))) +========================== +Pipe include +========================== + +new Foo() |> $$->include(); +new Foo() |> $$->include_once(); +new Foo() |> $$->require(); +new Foo() |> $$->require_once(); + +--- + +(script + (expression_statement + (binary_expression + (new_expression + (qualified_identifier + (identifier)) + (arguments)) + (call_expression + (selection_expression + (pipe_variable) + (identifier)) + (arguments)))) + (expression_statement + (binary_expression + (new_expression + (qualified_identifier + (identifier)) + (arguments)) + (call_expression + (selection_expression + (pipe_variable) + (identifier)) + (arguments)))) + (expression_statement + (binary_expression + (new_expression + (qualified_identifier + (identifier)) + (arguments)) + (call_expression + (selection_expression + (pipe_variable) + (identifier)) + (arguments)))) + (expression_statement + (binary_expression + (new_expression + (qualified_identifier + (identifier)) + (arguments)) + (call_expression + (selection_expression + (pipe_variable) + (identifier)) + (arguments))))) + ========================== Prefix unary ========================== @@ -2958,8 +3050,8 @@ Xhp string not comment # ; - -# + +# ; // ; @@ -3039,3 +3131,28 @@ function func(): void { (element_initializer (integer) (string))))))) + +========================== +Expression tree +========================== + +function func(): int { + $result = calc`{ return 1; }`; + return $result; +} + +--- + +(script + (function_declaration + (identifier) + (parameters) + (type_specifier) + (compound_statement + (expression_statement + (binary_expression + (variable) + (expression_tree + (identifier)))) + (return_statement + (variable))))) diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 0e85fab..279a7f8 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -707,6 +707,34 @@ EOF; (expression_statement (heredoc))) +========================== +Expression tree strings +========================== + +VisitorClass`42`; +VisitorClass`{ return 1; }`; +VisitorClass`{ $x = 1; return $x; }`; +VisitorClass`{ + $x = 1; + return $x; +}`; + +--- + +(script + (expression_statement + (expression_tree + (identifier))) + (expression_statement + (expression_tree + (identifier))) + (expression_statement + (expression_tree + (identifier))) + (expression_statement + (expression_tree + (identifier)))) + ========================== Single quoted strings ==========================